-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathbuiltins_test.go
59 lines (56 loc) · 2.29 KB
/
builtins_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
package plugins
import (
"testing"
)
func TestBuiltInMap(t *testing.T) {
testCases := map[string]string{
"apache": "apacheHttpd",
"apacheHttpd": "apacheHttpd",
"php": "php",
"php81": "php",
"php82": "php",
"gradle": "gradle",
"gradle_7": "gradle",
"ghc": "haskell",
"haskell.compiler.abc": "haskell",
"haskell.compiler.native-bignum.ghcHEAD": "haskell",
"haskell.compiler.native-bignum.ghc962": "haskell",
"mariadb": "mariadb",
"mariadb_1011": "mariadb",
"mariadb-embedded": "mariadb",
"mysql": "mariadb",
"mysql80": "mysql",
"python3Packages.pip": "pip",
"python": "python",
"python3": "python",
"python3Full": "python",
"python2Minimal": "python",
"python-full": "python",
"python-minimal": "python",
"redis": "redis",
"ruby": "ruby",
"ruby_21": "ruby",
"ruby_2_6": "ruby",
"ruby_2_6_5": "ruby",
"ruby_2_6_5_1": "ruby",
"ruby_2_6_5_1_2": "ruby",
"jruby": "ruby",
"ruby_": "",
"ruby_abc": "",
"ruby_2_": "",
}
for input, expected := range testCases {
matched := false
for re, value := range builtInMap {
if re.MatchString(input) {
matched = true
if value != expected {
t.Errorf("Regex match failed for input: %s. Expected: %s, Got: %s", input, expected, value)
}
}
}
if !matched && expected != "" {
t.Errorf("Regex match failed for input: %s. Expected: %s, Got: %s", input, expected, "")
}
}
}