Files
Gogs/internal/cryptox/md5_test.go
ᴊᴏᴇ ᴄʜᴇɴ 36d56d5525 all: rename packages ending with "util" to end with "x" (#8182)
Co-authored-by: JSS <jss@unknwon.dev>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 13:25:19 -05:00

24 lines
562 B
Go

package cryptox
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestMD5(t *testing.T) {
tests := []struct {
input string
output string
}{
{input: "", output: "d41d8cd98f00b204e9800998ecf8427e"},
{input: "The quick brown fox jumps over the lazy dog", output: "9e107d9d372bb6826bd81d3542a419d6"},
{input: "The quick brown fox jumps over the lazy dog.", output: "e4d909c290d0fb1ca068ffaddf22cbd0"},
}
for _, test := range tests {
t.Run(test.input, func(t *testing.T) {
assert.Equal(t, test.output, MD5(test.input))
})
}
}