-
Notifications
You must be signed in to change notification settings - Fork 1
/
string-regexp-matcher_test.go
124 lines (120 loc) · 2.14 KB
/
string-regexp-matcher_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 extra
import (
"reflect"
"regexp"
"testing"
)
func Test_stringRegexp_String(t *testing.T) {
type fields struct {
reg *regexp.Regexp
}
tests := []struct {
name string
fields fields
want string
}{
{
name: "should display regex",
fields: fields{
reg: regexp.MustCompile(`^[a-z]+\[[0-9]+\]$`),
},
want: `input matching regexp ^[a-z]+\[[0-9]+\]$`,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := &stringRegexpMatcher{
reg: tt.fields.reg,
}
if got := s.String(); got != tt.want {
t.Errorf("stringRegexp.String() = %v, want %v", got, tt.want)
}
})
}
}
func Test_stringRegexp_Matches(t *testing.T) {
starStrFunc := func(s string) *string { return &s }
type fields struct {
reg *regexp.Regexp
}
type args struct {
x interface{}
}
tests := []struct {
name string
fields fields
args args
want bool
}{
{
name: "not a string",
args: args{
x: 1,
},
want: false,
},
{
name: "not a string 2",
args: args{
x: starStrFunc("fake"),
},
want: false,
},
{
name: "not matching regexp",
fields: fields{
reg: regexp.MustCompile("^a$"),
},
args: args{
x: "0",
},
},
{
name: "matching regexp",
fields: fields{
reg: regexp.MustCompile("^a$"),
},
args: args{
x: "a",
},
want: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := &stringRegexpMatcher{
reg: tt.fields.reg,
}
if got := s.Matches(tt.args.x); got != tt.want {
t.Errorf("stringRegexp.Matches() = %v, want %v", got, tt.want)
}
})
}
}
func TestStringRegexpMatcher(t *testing.T) {
type args struct {
regexSt string
}
tests := []struct {
name string
args args
want *stringRegexpMatcher
}{
{
name: "constructor",
args: args{
regexSt: "^a$",
},
want: &stringRegexpMatcher{
reg: regexp.MustCompile("^a$"),
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := StringRegexpMatcher(tt.args.regexSt); !reflect.DeepEqual(got, tt.want) {
t.Errorf("StringRegexpMatcher() = %v, want %v", got, tt.want)
}
})
}
}