-
Notifications
You must be signed in to change notification settings - Fork 269
/
util_test.go
80 lines (68 loc) · 1.25 KB
/
util_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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package base64Captcha
import (
"os"
"path/filepath"
"reflect"
"testing"
)
func Test_parseDigitsToString(t *testing.T) {
for i := 1; i < 10; i++ {
digti := randomDigits(i)
s := parseDigitsToString(digti)
if len(s) != i {
t.Error("failed")
}
}
}
func Test_stringToFakeByte(t *testing.T) {
for i := 1; i < 10; i++ {
digti := randomDigits(i)
s := parseDigitsToString(digti)
if len(s) != i {
t.Error("failed")
}
fb := stringToFakeByte(s)
if !reflect.DeepEqual(fb, digti) {
t.Error("failed")
}
}
}
func Test_randomDigits(t *testing.T) {
for i := 1; i < 10; i++ {
digti := randomDigits(i)
if len(digti) != i {
t.Error("failed")
}
}
}
func Test_randomBytes(t *testing.T) {
for i := 1; i < 10; i++ {
digti := randomBytes(i)
if len(digti) != i {
t.Error("failed")
}
}
}
func Test_randomBytesMod(t *testing.T) {
for i := 1; i < 10; i++ {
digti := randomBytesMod(i, 'c')
if len(digti) != i {
t.Error("failed")
}
}
}
func Test_itemWriteFile(t *testing.T) {
//todo:::
}
func Test_pathExists(t *testing.T) {
td := os.TempDir()
defer os.RemoveAll(td)
p := filepath.Join(td, RandomId())
if pathExists(p) {
t.Error("failed")
}
_ = os.MkdirAll(p, os.ModePerm)
if !pathExists(p) {
t.Error("failed")
}
}