forked from mojocn/base64Captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver_math_test.go
124 lines (117 loc) · 3 KB
/
driver_math_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
package base64Captcha
import (
"image/color"
"reflect"
"testing"
)
func TestDriverMath_DrawCaptcha(t *testing.T) {
type fields struct {
Height int
Width int
NoiseCount int
ShowLineOptions int
BgColor *color.RGBA
Fonts []string
}
type args struct {
question string
}
tests := []struct {
name string
fields fields
args args
wantItem Item
wantErr bool
}{
{"Math",
fields{80, 240, 5, OptionShowSineLine | OptionShowSlimeLine | OptionShowHollowLine, nil, []string{"3Dumb.ttf"}},
args{""},
nil, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
d := &DriverMath{
Height: tt.fields.Height,
Width: tt.fields.Width,
NoiseCount: tt.fields.NoiseCount,
ShowLineOptions: tt.fields.ShowLineOptions,
BgColor: tt.fields.BgColor,
fontsStorage: DefaultEmbeddedFonts,
Fonts: tt.fields.Fonts,
}
d.ConvertFonts()
_, q, a := d.GenerateIdQuestionAnswer()
gotItem, err := d.DrawCaptcha(q)
if (err != nil) != tt.wantErr {
t.Errorf("DriverMath.DrawCaptcha() error = %v, wantErr %v", err, tt.wantErr)
return
}
itemWriteFile(gotItem, "_builds", a, "png")
})
}
}
func TestNewDriverMath(t *testing.T) {
type args struct {
height int
width int
noiseCount int
showLineOptions int
bgColor *color.RGBA
fonts []string
}
tests := []struct {
name string
args args
want *DriverMath
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := NewDriverMath(tt.args.height, tt.args.width, tt.args.noiseCount, tt.args.showLineOptions, tt.args.bgColor, nil, tt.args.fonts); !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewDriverMath() = %v, want %v", got, tt.want)
}
})
}
}
func TestDriverMath_ConvertFonts(t *testing.T) {
tests := []struct {
name string
d *DriverMath
want *DriverMath
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.d.ConvertFonts(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("DriverMath.ConvertFonts() = %v, want %v", got, tt.want)
}
})
}
}
func TestDriverMath_GenerateIdQuestionAnswer(t *testing.T) {
tests := []struct {
name string
d *DriverMath
wantId string
wantQuestion string
wantAnswer string
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotId, gotQuestion, gotAnswer := tt.d.GenerateIdQuestionAnswer()
if gotId != tt.wantId {
t.Errorf("DriverMath.GenerateIdQuestionAnswer() gotId = %v, want %v", gotId, tt.wantId)
}
if gotQuestion != tt.wantQuestion {
t.Errorf("DriverMath.GenerateIdQuestionAnswer() gotQuestion = %v, want %v", gotQuestion, tt.wantQuestion)
}
if gotAnswer != tt.wantAnswer {
t.Errorf("DriverMath.GenerateIdQuestionAnswer() gotAnswer = %v, want %v", gotAnswer, tt.wantAnswer)
}
})
}
}