-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.ahk
157 lines (130 loc) · 4.42 KB
/
test.ahk
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
157
#Include <Yunit\Yunit>
#Include <Yunit\Window>
#Include <Yunit\StdOut>
#Include <Phrase>
#NoEnv
Yunit.Use(YunitStdOut, YunitWindow).Test(StringPhraseTestSuite, StringTestSuite)
class StringPhraseTestSuite {
Empty() {
this.ExpectedException := Exception("EmptyTemplate")
template := ""
Phrase.from(template).format()
}
Plaintext() {
template := "hello world"
expectation := "hello world"
assertStringEquals(expectation, Phrase.from(template).format())
}
OneKeyAtEnd() {
template := "hello {name}"
expectation := "hello someone"
assertStringEquals(expectation, Phrase.from(template).put("name", "someone").format())
}
OneKeyAtBeginning() {
template := "{name} is here"
expectation := "someone is here"
assertStringEquals(expectation, Phrase.from(template).put("name", "someone").format())
}
OneKeyInMiddle() {
template := "is it {name}?"
expectation := "is it someone?"
assertStringEquals(expectation, Phrase.from(template).put("name", "someone").format())
}
TwoKeys() {
template := "hello {first} {second}"
expectation := "hello some one"
assertStringEquals(expectation, Phrase.from(template).put("first", "some").put("second", "one").format())
}
EmptyKey() {
this.ExpectedException := Exception("EmptyKey")
template := "{}"
Phrase.from(template).format()
}
EmptyKeyAtBeginning() {
this.ExpectedException := Exception("EmptyKey")
template := "hello {}"
Phrase.from(template).format()
}
EmptyKeyAtEnd() {
this.ExpectedException := Exception("EmptyKey")
template := "{} is gone"
Phrase.from(template).format()
}
EmptyKeyInMiddle() {
this.ExpectedException := Exception("EmptyKey")
template := "hello {} foo"
Phrase.from(template).format()
}
MissingKey() {
this.ExpectedException := Exception("KeyNotSet")
template := "hello {name}"
Phrase.from(template).format()
}
EscapingAtBeginning() {
template := "{{hello mr. {name}"
expectation := "{hello mr. someone"
assertStringEquals(expectation, Phrase.from(template).put("name", "someone").format())
}
EscapingAtEnd() {
template := "hello mr. {name}{{"
expectation := "hello mr. someone{"
assertStringEquals(expectation, Phrase.from(template).put("name", "someone").format())
}
EscapingInMiddle() {
template := "hello {{mr. {name}"
expectation := "hello {mr. someone"
assertStringEquals(expectation, Phrase.from(template).put("name", "someone").format())
}
EscapingNotNecessaryForKeyEndChar() {
template := "hello mr.} {name}"
expectation := "hello mr.} someone"
assertStringEquals(expectation, Phrase.from(template).put("name", "someone").format())
}
IllegalKeyCharacter() {
keyId := "na|me"
this.ExpectedException := Exception("IllegalKeyCharacter")
template := "hello {" . keyId . "}"
Phrase.from(template).put(keyId, "foo").format()
}
KeysInsideBraces() {
template := "Something or {{{name}} is inside {{}"
expectation := "Something or {someone} is inside {}"
assertStringEquals(expectation, Phrase.from(template).put("name", "someone").format())
}
PutMultipleKeys() {
template := "hello {first} {second}"
expectation := "hello some one"
keyMap := {first: "some", second: "one"}
assertStringEquals(expectation, Phrase.from(template).putAll(keyMap).format())
}
CustomDelimitersArray() {
template := "hello [name]"
expectation := "hello someone"
assertStringEquals(expectation, Phrase.from(template, ["[", "]"]).put("name", "someone").format())
}
CustomDelimitersString() {
template := "hello [name]"
expectation := "hello someone"
assertStringEquals(expectation, Phrase.from(template, "[]").put("name", "someone").format())
}
DelimitersInvalidIfEqual() {
this.ExpectedException := Exception("IllegalKeyDelimiters")
template := "hello [name]"
Phrase.from(template, ["'", "'"]).put(keyId, "foo").format()
}
DelimitersInvalidIfTooLong() {
this.ExpectedException := Exception("IllegalKeyDelimiters")
template := "hello [name]"
Phrase.from(template, ["ab", "c"]).put(keyId, "foo").format()
}
DelimitersInvalidIfTooMany() {
this.ExpectedException := Exception("IllegalKeyDelimiters")
template := "hello [name]"
Phrase.from(template, ["{", "}", "}"]).put(keyId, "foo").format()
}
}
assertStringEquals(expected, actual) {
if (expected != actual) {
throw Exception("Expected: " . expected . ", Got: " . actual)
}
}