-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathSubstructureTests.ql
More file actions
75 lines (63 loc) · 2.61 KB
/
SubstructureTests.ql
File metadata and controls
75 lines (63 loc) · 2.61 KB
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
import python
import TestUtilities.InlineExpectationsTest
private import semmle.python.regex
class CharacterSetTest extends InlineExpectationsTest {
CharacterSetTest() { this = "CharacterSetTest" }
override string getARelevantTag() { result = "charSet" }
override predicate hasActualResult(Location location, string element, string tag, string value) {
exists(location.getFile().getRelativePath()) and
location.getFile().getBaseName() = "charSetTest.py" and
exists(Regex re, int start, int end |
re.charSet(start, end) and
location = re.getLocation() and
element = re.getText().substring(start, end) and
value = start + ":" + end and
tag = "charSet"
)
}
}
class CharacterRangeTest extends InlineExpectationsTest {
CharacterRangeTest() { this = "CharacterRangeTest" }
override string getARelevantTag() { result = "charRange" }
override predicate hasActualResult(Location location, string element, string tag, string value) {
exists(location.getFile().getRelativePath()) and
location.getFile().getBaseName() = "charRangeTest.py" and
exists(Regex re, int start, int lower_end, int upper_start, int end |
re.charRange(_, start, lower_end, upper_start, end) and
location = re.getLocation() and
element = re.getText().substring(start, end) and
value = start + ":" + lower_end + "-" + upper_start + ":" + end and
tag = "charRange"
)
}
}
class EscapeTest extends InlineExpectationsTest {
EscapeTest() { this = "EscapeTest" }
override string getARelevantTag() { result = "escapedCharacter" }
override predicate hasActualResult(Location location, string element, string tag, string value) {
exists(location.getFile().getRelativePath()) and
location.getFile().getBaseName() = "escapedCharacterTest.py" and
exists(Regex re, int start, int end |
re.escapedCharacter(start, end) and
location = re.getLocation() and
element = re.getText().substring(start, end) and
value = start + ":" + end and
tag = "escapedCharacter"
)
}
}
class GroupTest extends InlineExpectationsTest {
GroupTest() { this = "GroupTest" }
override string getARelevantTag() { result = "group" }
override predicate hasActualResult(Location location, string element, string tag, string value) {
exists(location.getFile().getRelativePath()) and
location.getFile().getBaseName() = "groupTest.py" and
exists(Regex re, int start, int end |
re.group(start, end) and
location = re.getLocation() and
element = re.getText().substring(start, end) and
value = start + ":" + end and
tag = "group"
)
}
}