forked from megaease/easeprobe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon_test.go
156 lines (131 loc) · 3.95 KB
/
common_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
/*
* Copyright (c) 2022, MegaEase
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package probe
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCheckText(t *testing.T) {
tc := TextChecker{}
tc.Contain = "hello"
tc.NotContain = "bad"
err := tc.Check("easeprobe hello world")
assert.Nil(t, err)
tc.Contain = "hello"
tc.NotContain = "world"
err = tc.Check("easeprobe hello world")
assert.NotNil(t, err)
tc.Contain = ""
tc.NotContain = "world"
err = tc.Check("easeprobe hello world")
assert.NotNil(t, err)
tc.Contain = "hello"
tc.NotContain = ""
err = tc.Check("easeprobe hello world")
assert.Nil(t, err)
tc.Contain = "good"
tc.NotContain = ""
err = tc.Check("easeprobe hello world")
assert.NotNil(t, err)
tc.Contain = ""
tc.NotContain = "bad"
err = tc.Check("easeprobe hello world")
assert.Nil(t, err)
tc.Contain = "good"
tc.NotContain = "bad"
err = tc.Check("easeprobe hello world")
assert.NotNil(t, err)
}
func testRegExpHelper(t *testing.T, regExp string, str string, match bool) {
tc := TextChecker{RegExp: true}
tc.Contain = regExp
tc.Config()
if match {
assert.Nil(t, tc.CheckRegExp(str))
} else {
assert.NotNil(t, tc.CheckRegExp(str))
}
tc.Contain = ""
tc.NotContain = regExp
tc.Config()
if match {
assert.NotNil(t, tc.CheckRegExp(str))
} else {
assert.Nil(t, tc.CheckRegExp(str))
}
}
func TestCheckRegExp(t *testing.T) {
word := `word[0-9]+`
testRegExpHelper(t, word, "word word10 word", true)
testRegExpHelper(t, word, "word word word", false)
time := "[0-9]?[0-9]:[0-9][0-9]"
testRegExpHelper(t, time, "easeprobe hello world 12:34", true)
testRegExpHelper(t, time, "easeprobe hello world 1234", false)
html := `<\/?[\w\s]*>|<.+[\W]>`
testRegExpHelper(t, html, "<p>test hello world </p>", true)
testRegExpHelper(t, html, "test hello world", false)
or := `word1|word2`
testRegExpHelper(t, or, "word1 easeprobe word2", true)
testRegExpHelper(t, or, "word2 easeprobe word1", true)
testRegExpHelper(t, or, "word3 easeprobe word1", true)
testRegExpHelper(t, or, "word2 easeprobe word3", true)
testRegExpHelper(t, or, "word easeprobe word3", false)
testRegExpHelper(t, or, "word easeprobe hello world", false)
unsupported := "(?=.*word1)(?=.*word2)"
tc := TextChecker{RegExp: true}
tc.Contain = unsupported
err := tc.Config()
assert.NotNil(t, err)
assert.Contains(t, err.Error(), "invalid or unsupported Perl syntax")
tc.Contain = ""
tc.NotContain = unsupported
err = tc.Config()
assert.NotNil(t, err)
assert.Contains(t, err.Error(), "invalid or unsupported Perl syntax")
}
func TestTextChecker(t *testing.T) {
checker := TextChecker{
Contain: "hello",
NotContain: "",
RegExp: false,
}
checker.Config()
assert.Nil(t, checker.Check("hello world"))
assert.Contains(t, checker.String(), "Text Mode")
checker = TextChecker{
Contain: "[0-9]+$",
NotContain: "",
RegExp: true,
}
checker.Config()
assert.Nil(t, checker.Check("hello world 2022"))
assert.Contains(t, checker.String(), "RegExp Mode")
checker = TextChecker{
Contain: "",
NotContain: `<\/?[\w\s]*>|<.+[\W]>`,
RegExp: true,
}
checker.Config()
assert.NotNil(t, checker.Check("<p>test hello world </p>"))
}
func TestCheckEmpty(t *testing.T) {
assert.Equal(t, "a", CheckEmpty("a"))
assert.Equal(t, "empty", CheckEmpty(" "))
assert.Equal(t, "empty", CheckEmpty(" \t"))
assert.Equal(t, "empty", CheckEmpty("\n\r\t"))
assert.Equal(t, "empty", CheckEmpty(" \n\r\t "))
}