-
Notifications
You must be signed in to change notification settings - Fork 269
/
driver_chinese_test.go
104 lines (99 loc) · 2.55 KB
/
driver_chinese_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
package base64Captcha
import (
"image/color"
"reflect"
"testing"
)
func TestNewDriverChinese(t *testing.T) {
type args struct {
height int
width int
noiseCount int
showLineOptions int
length int
source string
bgColor *color.RGBA
fonts []string
}
tests := []struct {
name string
args args
want *DriverChinese
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := NewDriverChinese(tt.args.height, tt.args.width, tt.args.noiseCount, tt.args.showLineOptions, tt.args.length, tt.args.source, tt.args.bgColor, nil, tt.args.fonts); !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewDriverChinese() = %v, want %v", got, tt.want)
}
})
}
}
func TestDriverChinese_ConvertFonts(t *testing.T) {
tests := []struct {
name string
d *DriverChinese
want *DriverChinese
}{
// 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("DriverChinese.ConvertFonts() = %v, want %v", got, tt.want)
}
})
}
}
func TestDriverChinese_GenerateIdQuestionAnswer(t *testing.T) {
tests := []struct {
name string
d *DriverChinese
wantId string
wantContent string
wantAnswer string
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotId, gotContent, gotAnswer := tt.d.GenerateIdQuestionAnswer()
if gotId != tt.wantId {
t.Errorf("DriverChinese.GenerateIdQuestionAnswer() gotId = %v, want %v", gotId, tt.wantId)
}
if gotContent != tt.wantContent {
t.Errorf("DriverChinese.GenerateIdQuestionAnswer() gotContent = %v, want %v", gotContent, tt.wantContent)
}
if gotAnswer != tt.wantAnswer {
t.Errorf("DriverChinese.GenerateIdQuestionAnswer() gotAnswer = %v, want %v", gotAnswer, tt.wantAnswer)
}
})
}
}
func TestDriverChinese_DrawCaptcha(t *testing.T) {
type args struct {
content string
}
tests := []struct {
name string
d *DriverChinese
args args
wantItem Item
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotItem, err := tt.d.DrawCaptcha(tt.args.content)
if (err != nil) != tt.wantErr {
t.Errorf("DriverChinese.DrawCaptcha() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotItem, tt.wantItem) {
t.Errorf("DriverChinese.DrawCaptcha() = %v, want %v", gotItem, tt.wantItem)
}
})
}
}