d6b3a47da693b3f9a96437be18123e9c13b015c3
[nit.git] / src / testing / testing_base.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Base options for testing tools.
16 module testing_base
17
18 import modelize
19 private import parser_util
20 import html
21 import console
22
23 redef class ToolContext
24 # opt --full
25 var opt_full = new OptionBool("Process also imported modules", "--full")
26 # opt --output
27 var opt_output = new OptionString("Output name (default is 'nitunit.xml')", "-o", "--output")
28 # opt --dirr
29 var opt_dir = new OptionString("Working directory (default is '.nitunit')", "--dir")
30 # opt --no-act
31 var opt_noact = new OptionBool("Does not compile and run tests", "--no-act")
32 # opt --nitc
33 var opt_nitc = new OptionString("nitc compiler to use", "--nitc")
34 # opt --no-time
35 var opt_no_time = new OptionBool("Disable time information in XML", "--no-time")
36
37 # Working directory for testing.
38 fun test_dir: String do
39 var dir = opt_dir.value
40 if dir == null then return "nitunit.out"
41 return dir
42 end
43
44 # Search the `nitc` compiler to use
45 #
46 # If not `nitc` is suitable, then prints an error and quit.
47 fun find_nitc: String
48 do
49 var nitc = opt_nitc.value
50 if nitc != null then
51 if not nitc.file_exists then
52 fatal_error(null, "error: cannot find `{nitc}` given by --nitc.")
53 abort
54 end
55 return nitc
56 end
57
58 nitc = "NITC".environ
59 if nitc != "" then
60 if not nitc.file_exists then
61 fatal_error(null, "error: cannot find `{nitc}` given by NITC.")
62 abort
63 end
64 return nitc
65 end
66
67 var nit_dir = nit_dir or else "."
68 nitc = nit_dir / "bin/nitc"
69 if not nitc.file_exists then
70 fatal_error(null, "Error: cannot find nitc. Set envvar NIT_DIR or NITC or use the --nitc option.")
71 abort
72 end
73 return nitc
74 end
75
76 # Execute a system command in a more safe context than `Sys::system`.
77 fun safe_exec(command: String): Int
78 do
79 info(command, 2)
80 var real_command = """
81 bash -c "
82 ulimit -f {{{ulimit_file}}} 2> /dev/null
83 ulimit -t {{{ulimit_usertime}}} 2> /dev/null
84 {{{command}}}
85 "
86 """
87 return system(real_command)
88 end
89
90 # The maximum size (in KB) of files written by a command executed trough `safe_exec`
91 #
92 # Default: 64MB
93 var ulimit_file = 65536 is writable
94
95 # The maximum amount of cpu time (in seconds) for a command executed trough `safe_exec`
96 #
97 # Default: 10 CPU minute
98 var ulimit_usertime = 600 is writable
99
100 # Show a single-line status to use as a progression.
101 #
102 # If `has_progress_bar` is true, then the output is a progress bar.
103 # The printed the line starts with `'\r'` and is not ended by a `'\n'`.
104 # So it is expected that:
105 # * no other output is printed between two calls
106 # * the last `show_unit_status` is followed by a new-line
107 #
108 # If `has_progress_bar` is false, then only the first and last state is shown
109 fun show_unit_status(name: String, tests: SequenceRead[UnitTest])
110 do
111 var line = "\r\x1B[K==== {name} ["
112 var done = tests.length
113 var fails = 0
114 for t in tests do
115 if not t.is_done then
116 line += " "
117 done -= 1
118 else if t.error == null then
119 line += ".".green.bold
120 else
121 line += "X".red.bold
122 fails += 1
123 end
124 end
125
126 if not has_progress_bar then
127 if done == 0 then
128 print "==== {name} | tests: {tests.length}"
129 end
130 return
131 end
132
133 if done < tests.length then
134 line += "] {done}/{tests.length}"
135 else
136 line += "] tests: {tests.length} "
137 if fails == 0 then
138 line += "OK".green.bold
139 else
140 line += "KO: {fails}".red.bold
141 end
142 end
143 printn "{line}"
144 end
145
146 # Is a progress bar printed?
147 #
148 # true if color (because and non-verbose mode
149 # (because verbose mode messes up with the progress bar).
150 fun has_progress_bar: Bool
151 do
152 return not opt_no_color.value and opt_verbose.value <= 0
153 end
154
155 # Clear the line if `has_progress_bar` (no-op else)
156 fun clear_progress_bar
157 do
158 if has_progress_bar then printn "\r\x1B[K"
159 end
160
161 # Show the full description of the test-case.
162 #
163 # The output honors `--no-color`.
164 #
165 # `more message`, if any, is added after the error message.
166 fun show_unit(test: UnitTest, more_message: nullable String) do
167 print test.to_screen(more_message, not opt_no_color.value)
168 end
169 end
170
171 # A unit test is an elementary test discovered, run and reported by nitunit.
172 #
173 # This class factorizes `DocUnit` and `TestCase`.
174 abstract class UnitTest
175 # The name of the unit to show in messages
176 fun full_name: String is abstract
177
178 # The location of the unit test to show in messages.
179 fun location: Location is abstract
180
181 # Flag that indicates if the unit test was compiled/run.
182 var is_done: Bool = false is writable
183
184 # Error message occurred during test-case execution (or compilation).
185 #
186 # e.g.: `Runtime Error`
187 var error: nullable String = null is writable
188
189 # Was the test case executed at least once?
190 #
191 # This will indicate the status of the test (failture or error)
192 var was_exec = false is writable
193
194 # The raw output of the execution (or compilation)
195 #
196 # It merges the standard output and error output
197 var raw_output: nullable String = null is writable
198
199 # The location where the error occurred, if it makes sense.
200 var error_location: nullable Location = null is writable
201
202 # Additional noteworthy information when a test success.
203 var info: nullable String = null
204
205 # Time for the execution, in seconds
206 var real_time: Float = 0.0 is writable
207
208 # A colorful `[OK]` or `[KO]`.
209 fun status_tag(color: nullable Bool): String do
210 color = color or else true
211 if not is_done then
212 return "[ ]"
213 else if error != null then
214 var res = "[KO]"
215 if color then res = res.red.bold
216 return res
217 else
218 var res = "[OK]"
219 if color then res = res.green.bold
220 return res
221 end
222 end
223
224 # The full (color) description of the test-case.
225 #
226 # `more message`, if any, is added after the error message.
227 fun to_screen(more_message: nullable String, color: nullable Bool): String do
228 color = color or else true
229 var res
230 var error = self.error
231 if error != null then
232 if more_message != null then error += " " + more_message
233 var loc = error_location or else location
234 if color then
235 res = "{status_tag(color)} {full_name}\n {loc.to_s.yellow}: {error}\n{loc.colored_line("1;31")}"
236 else
237 res = "{status_tag(color)} {full_name}\n {loc}: {error}"
238 end
239 var output = self.raw_output
240 if output != null then
241 res += "\n Output\n\t{output.chomp.replace("\n", "\n\t")}\n"
242 end
243 else
244 res = "{status_tag(color)} {full_name}"
245 if more_message != null then res += more_message
246 var info = self.info
247 if info != null then
248 res += "\n {info}"
249 end
250 end
251 return res
252 end
253
254 # Return a `<testcase>` XML node in format compatible with Jenkins unit tests.
255 fun to_xml: HTMLTag do
256 var tc = new HTMLTag("testcase")
257 tc.attr("classname", xml_classname)
258 tc.attr("name", xml_name)
259 tc.attr("time", real_time.to_s)
260
261 var output = self.raw_output
262 if output != null then output = output.trunc(8192).filter_nonprintable
263 var error = self.error
264 if error != null then
265 var node
266 if was_exec then
267 node = tc.open("error").attr("message", error)
268 else
269 node = tc.open("failure").attr("message", error)
270 end
271 if output != null then
272 node.append(output)
273 end
274 else if output != null then
275 tc.open("system-err").append(output)
276 end
277 return tc
278 end
279
280 # The `classname` attribute of the XML format.
281 #
282 # NOTE: jenkins expects a '.' in the classname attr
283 #
284 # See to_xml
285 fun xml_classname: String is abstract
286
287 # The `name` attribute of the XML format.
288 #
289 # See to_xml
290 fun xml_name: String is abstract
291 end
292
293 redef class String
294 # If needed, truncate `self` at `max_length` characters and append an informative `message`.
295 #
296 # ~~~
297 # assert "hello".trunc(10) == "hello"
298 # assert "hello".trunc(2) == "he[truncated. Full size is 5]"
299 # assert "hello".trunc(2, "...") == "he..."
300 # ~~~
301 fun trunc(max_length: Int, message: nullable String): String
302 do
303 if length <= max_length then return self
304 if message == null then message = "[truncated. Full size is {length}]"
305 return substring(0, max_length) + message
306 end
307
308 # Use a special notation for whitespace characters that are not `'\n'` (LFD) or `' '` (space).
309 #
310 # ~~~
311 # assert "hello".filter_nonprintable == "hello"
312 # assert "\r\n\t".filter_nonprintable == "^13\n^9"
313 # ~~~
314 fun filter_nonprintable: String
315 do
316 var buf = new Buffer
317 for c in self do
318 var cp = c.code_point
319 if cp < 32 and c != '\n' then
320 buf.append "^{cp}"
321 else
322 buf.add c
323 end
324 end
325 return buf.to_s
326 end
327 end