-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmisc_test.go
45 lines (38 loc) · 843 Bytes
/
misc_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package utils
import (
"fmt"
"testing"
"github.com/stretchr/testify/require"
"github.com/akfaew/utils/fixture"
)
func TestSlash(t *testing.T) {
tests := []struct {
input string
ret1 string
ret2 string
}{
{"", "", ""},
{"test", "test", ""},
{"test/", "test", ""},
{"test///", "test", "//"},
{"test/case", "test", "case"},
{"test/case/a/b/c", "test", "case/a/b/c"},
{"/case/a/b/c", "", "case/a/b/c"},
}
for _, tc := range tests {
ret1, ret2 := Slash(tc.input)
require.Equal(t, ret1, tc.ret1)
require.Equal(t, ret2, tc.ret2)
}
}
func TestRandEmail(t *testing.T) {
val := RandEmail()
require.Len(t, val, 16)
}
func TestCrc32(t *testing.T) {
for _, s := range []string{"a", "", "://!%$"} {
t.Run(Crc32(s), func(t *testing.T) {
fixture.Fixture(t, fmt.Sprintf("%s -> %s\n", s, Crc32(s)))
})
}
}