forked from bxcodec/faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
person_test.go
167 lines (148 loc) · 4.4 KB
/
person_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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package faker
import (
"reflect"
"testing"
"github.com/bxcodec/faker/v3/support/slice"
)
func TestSetDowser(t *testing.T) {
SetDowser(Person{})
}
func TestTitleMale(t *testing.T) {
male, err := GetPerson().TitleMale(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
if !slice.Contains(titlesMale, male.(string)) {
t.Error("Expected value from variable titleMales in function TitleMale")
}
}
func TestTitleFemale(t *testing.T) {
female, err := GetPerson().TitleFeMale(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
if !slice.Contains(titlesFemale, female.(string)) {
t.Error("Expected value from variable titleFemales in function TitleFeMale")
}
}
func TestFirstNameMale(t *testing.T) {
firstName, err := GetPerson().FirstNameMale(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
if !slice.Contains(firstNamesMale, firstName.(string)) {
t.Error("Expected value from variable firstNamesMale in function FirstNameMale")
}
}
func TestFirstNameFemale(t *testing.T) {
firstName, err := GetPerson().FirstNameFemale(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
if !slice.Contains(firstNamesFemale, firstName.(string)) {
t.Error("Expected value from variable firstNamesFemale in function FirstNameFemale")
}
}
func TestFirstName(t *testing.T) {
firstname, err := GetPerson().FirstName(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
if !slice.Contains(firstNames, firstname.(string)) {
t.Error("Expected value from either firstNamesMale or firstNamesFemale in function FirstName")
}
}
func TestLastName(t *testing.T) {
lastname, err := GetPerson().LastName(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
if !slice.Contains(lastNames, lastname.(string)) {
t.Error("Expected value from variable lastNames in function LastName")
}
}
func TestNameMale(t *testing.T) {
name, err := GetPerson().Name(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
randNameFlag = 51
if name.(string) == "" {
t.Error("Expected from function name string get empty string")
}
}
func TestNameFemale(t *testing.T) {
name, err := GetPerson().Name(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
randNameFlag = 20
if name.(string) == "" {
t.Error("Expected from function name string get empty string")
}
}
func TestFakeTitleMale(t *testing.T) {
male := TitleMale()
if !slice.Contains(titlesMale, male) {
t.Error("Expected value from variable titleMales in function TitleMale")
}
}
func TestFakeTitleFemale(t *testing.T) {
female := TitleFemale()
if !slice.Contains(titlesFemale, female) {
t.Error("Expected value from variable titleFemales in function TitleFeMale")
}
}
func TestFakeFirstNameMale(t *testing.T) {
firstName := FirstNameMale()
if !slice.Contains(firstNamesMale, firstName) {
t.Error("Expected value from variable firstNamesMale in function FirstNameMale")
}
}
func TestFakeFirstNameFemale(t *testing.T) {
firstName := FirstNameFemale()
if !slice.Contains(firstNamesFemale, firstName) {
t.Error("Expected value from variable firstNamesFemale in function FirstNameFemale")
}
}
func TestFakeFirstName(t *testing.T) {
firstname := FirstName()
if !slice.Contains(firstNames, firstname) {
t.Error("Expected value from either firstNamesMale or firstNamesFemale in function FirstName")
}
}
func TestFakeLastName(t *testing.T) {
lastname := LastName()
if !slice.Contains(lastNames, lastname) {
t.Error("Expected value from variable lastNames in function LastName")
}
}
func TestFakeNameMale(t *testing.T) {
name := Name()
randNameFlag = 51
if name == "" {
t.Error("Expected from function name string get empty string")
}
}
func TestFakeNameFemale(t *testing.T) {
name := Name()
randNameFlag = 20
if name == "" {
t.Error("Expected from function name string get empty string")
}
}
func TestFakeGender(t *testing.T) {
gender, err := GetPerson().Gender(reflect.Value{})
if err != nil {
t.Error("Expected not error, got err", err)
}
if !slice.Contains(genders, gender.(string)) {
t.Error("Expected value from variable genders in function Gender")
}
}
func TestFakeGenderPublicFunction(t *testing.T) {
gender := Gender()
if !slice.Contains(genders, gender) {
t.Error("Expected value from variable genders in function Gender")
}
}