This repository was archived by the owner on Feb 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMiniTest.livecode
221 lines (195 loc) · 5.48 KB
/
MiniTest.livecode
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
script "MiniTest"
## A minimal LiveCode test framework
##
## Author: Peter W A Wood
##
## © Copyright 2015 Peter W A Wood
##
## Licence: BSD - https://github.com/PeterWAWood/LiveCode-MiniTest/blob/master/LICENSE
##
## global variables
##
global gTestingOutput ## only used during testing of MiniTest itself
##
## script local variables
##
local tAssertsPassed
local tAssertsFailed
local tCard
local tFailed
local tFileFailed
local tFilePassed
local tNewlineIfNeeded
local tPassed
local tReporter
local tStack
local tTestName
local tTestFileName
local tTestReport
##
## startup
##
on libraryStack
if the environment is server then
put "MT.scriptReporter" into tReporter
else
put "MT.stackReporter" into tReporter
end if
end libraryStack
##
## internal commands
##
command MT.assertionFailed pExpected, pActual
add 1 to tAssertsFailed
Mt.report tNewlineIfNeeded
MT.report "Assert #" & (tAssertsPassed + tAssertsFailed) & return
MT.report "Expected" && pExpected & return
MT.report "Actual" && pActual & return
end MT.assertionFailed
command MT.clearSuccessfulTestName
local tSpaces = " "
if tReporter is "MT.stackReporter" then
delete line -1 of Field tTestReport of Card tCard of Stack tStack
end if
if tReporter is "MT.scriptReporter" then
MT.Report numToCodepoint(0x0D) & tSpaces & numToCodepoint(0x0D)
end if
end MT.clearSuccessfulTestName
command MT.displayTestName pTestName
MT.report "Test" && pTestName
put return into tNewlineIfNeeded
if tReporter is "MT.stackReporter" then
MT.report return
put empty into tNewlineIfNeeded
end if
end MT.displayTestName
command MT.highlightError
if tReporter is "MT.stackReporter" then
set the foregroundColor of line -1 of Field tTestReport of Card tCard of Stack tStack to "red"
end if
end MT.highlightError
command MT.report pResult
dispatch tReporter with pResult
end MT.report
command MT.scriptReporter pResult
put pResult
end MT.scriptReporter
command MT.stackReporter pResult
put pResult after Field tTestReport of Card tCard of Stack tStack
end Mt.stackReporter
command MT.testInit ## only for testing MiniTest itself
put "MT.testReporter" into tReporter
put empty into gTestingOutput
end MT.testInit
command MT.testReporter pResult ## only for testing MiniTest itself
put pResult after gTestingOutput
end MT.testReporter
##
## published commands
##
command MT.assert pActual
if pActual = true then
add 1 to tAssertsPassed
else
MT.assertionFailed "True", pActual
end if
end MT.assert
command MT.assertEqual pExpected, pActual
if pActual = pExpected then
add 1 to tAssertsPassed
else
MT.assertionFailed pExpected, pActual
end if
end MT.assertEqual
command MT.assertStrictEqual pExpected, pActual
set the caseSensitive to true
if pActual = pExpected then
add 1 to tAssertsPassed
else
MT.assertionFailed pExpected, pActual
end if
set the caseSensitive to false
end MT.assertStrictEqual
command MT.endTest
local tAsserts
put tAssertsPassed + tAssertsFailed into tAsserts
if (tAssertsFailed > 0) or (tAsserts = 0) then
add 1 to tFailed
add 1 to tFileFailed
MT.report tTestName && "Failed" & return
MT.highlightError
else
add 1 to tPassed
add 1 to tFilePassed
MT.clearSuccessfulTestName
end if
end MT.endTest
command MT.endTestFile
local tFileNumTests
put tFilePassed + tFileFailed into tFileNumTests
MT.report return & "Test Results for File" && tTestFileName & return
MT.report "Number of Tests" & tab & tFileNumTests & return
MT.report "Number Passed" & tab & tFilePassed & return
MT.report "Number Failed" & tab & tFileFailed & return
if tFileFailed > 0 then
MT.report "TEST FAILURES!!" & return
MT.highlightError
end if
end MT.endTestFile
command MT.endTestRun
local tNumTests
put tPassed + tFailed into tNumTests
MT.report return & "Summary Test Results" & return
MT.report "Number of Tests" & tab & tNumTests & return
MT.report "Number Passed" & tab & tPassed & return
MT.report "Number Failed" & tab & tFailed & return
if tFailed > 0 then
MT.report "TEST FAILURES!!" & return
MT.highlightError
end if
end MT.endTestRun
command MT.refute pActual
if pActual <> true then
add 1 to tAssertsPassed
else
MT.assertionFailed "Not true", pActual
end if
end MT.refute
command MT.refuteEqual pExpected, pActual
if pActual <> pExpected then
add 1 to tAssertsPassed
else
MT.assertionFailed pExpected, pActual
end if
end MT.refuteEqual
command MT.refuteStrictEqual pExpected, pActual
set the caseSensitive to true
if pActual <> pExpected then
add 1 to tAssertsPassed
else
MT.assertionFailed pExpected, pActual
end if
set the caseSensitive to false
end MT.refuteStrictEqual
command MT.setTestReport pStack, pCard, pTestReport
put pStack into tStack
put pCard into tCard
put pTestReport into tTestReport
put empty into Field tTestReport of Card tCard of Stack tStack
end MT.setTestReport
command MT.startTest pTestName
put pTestName into tTestName
put 0 into tAssertsPassed
put 0 into tAssertsFailed
MT.displayTestName tTestName
end MT.startTest
command MT.startTestFile pTestFileName
put pTestFileName into tTestFileName
put 0 into tFilePassed
put 0 into tFileFailed
MT.report return & "Test File" && tTestFileName & return
end MT.startTestFile
command MT.startTestRun
put 0 into tPassed
put 0 into tFailed
end MT.startTestRun