forked from neotoolkit/faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaker_test.go
135 lines (130 loc) · 2.12 KB
/
faker_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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package faker_test
import (
"fmt"
"regexp"
"testing"
"github.com/neotoolkit/faker"
)
func TestInteger(t *testing.T) {
t.Parallel()
for _, tc := range []struct {
name string
min int
max int
}{
{
name: "min 1, max 100",
min: 1,
max: 100,
},
{
name: "min 1, max 1",
min: 1,
max: 1,
},
{
name: "min -2, max -1",
min: -2,
max: -1,
},
} {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
value := faker.Integer(tc.min, tc.max)
valueType := fmt.Sprintf("%T", value)
if valueType != "int" {
t.Fatalf("value type want int, got %T", value)
}
if value < tc.min {
t.Fatalf("value must be less %d", tc.min)
}
if value > tc.max {
t.Fatalf("value must be greater %d", tc.max)
}
})
}
}
func TestNumerify(t *testing.T) {
t.Parallel()
for _, tc := range []struct {
name string
expr string
in string
}{
{
name: "",
expr: "",
in: "",
},
{
name: "",
expr: "[0-9][A-Z][0-9]",
in: "#A#",
},
{
name: "",
expr: "[A-Z][A-Z][A-Z]",
in: "AAA",
},
{
name: "",
expr: "[0-9][0-9][0-9][0-9][0-9]",
in: "#####",
},
} {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
r, err := regexp.Compile(tc.expr)
if err != nil {
t.Error(err)
}
n := faker.Numerify(tc.in)
if !r.MatchString(n) {
t.Errorf("%s not match %s", n, tc.expr)
}
})
}
}
func TestAsciify(t *testing.T) {
t.Parallel()
for _, tc := range []struct {
name string
expr string
in string
opt faker.Option
}{
{
name: "",
expr: "",
in: "",
opt: func(opts *faker.Config) {},
},
{
name: "",
expr: "[0-9][0-9][0-9]",
in: "111",
opt: func(opts *faker.Config) {},
},
{
name: "",
expr: "[a-zA-Z][a-zA-Z][a-zA-Z][a-zA-Z][a-zA-Z]",
in: "*****",
opt: func(opts *faker.Config) {},
},
} {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
r, err := regexp.Compile(tc.expr)
if err != nil {
t.Error(err)
}
a := faker.Asciify(tc.in, tc.opt)
if !r.MatchString(a) {
t.Errorf("%s not match %s", a, tc.expr)
}
})
}
}