blob: 4bccd72050b787bd1c0802cc8ce7d50ceaf4fb7b [file] [log] [blame]
Stephen Warren10e50632016-01-15 11:15:24 -07001# Copyright (c) 2015 Stephen Warren
2# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
3#
4# SPDX-License-Identifier: GPL-2.0
5
6# Common logic to interact with U-Boot via the console. This class provides
7# the interface that tests use to execute U-Boot shell commands and wait for
8# their results. Sub-classes exist to perform board-type-specific setup
9# operations, such as spawning a sub-process for Sandbox, or attaching to the
10# serial console of real hardware.
11
12import multiplexed_log
13import os
14import pytest
15import re
16import sys
Stephen Warren97a54662016-01-22 12:30:09 -070017import u_boot_spawn
Stephen Warren10e50632016-01-15 11:15:24 -070018
19# Regexes for text we expect U-Boot to send to the console.
Stephen Warren5af83c42016-02-05 18:04:43 -070020pattern_u_boot_spl_signon = re.compile('(U-Boot SPL \\d{4}\\.\\d{2}[^\r\n]*\\))')
21pattern_u_boot_main_signon = re.compile('(U-Boot \\d{4}\\.\\d{2}[^\r\n]*\\))')
Stephen Warren10e50632016-01-15 11:15:24 -070022pattern_stop_autoboot_prompt = re.compile('Hit any key to stop autoboot: ')
23pattern_unknown_command = re.compile('Unknown command \'.*\' - try \'help\'')
24pattern_error_notification = re.compile('## Error: ')
Stephen Warren3bd79d32016-01-27 23:57:50 -070025pattern_error_please_reset = re.compile('### ERROR ### Please RESET the board ###')
Stephen Warren10e50632016-01-15 11:15:24 -070026
Stephen Warren1115a972016-01-27 23:57:48 -070027PAT_ID = 0
28PAT_RE = 1
29
30bad_pattern_defs = (
31 ('spl_signon', pattern_u_boot_spl_signon),
32 ('main_signon', pattern_u_boot_main_signon),
33 ('stop_autoboot_prompt', pattern_stop_autoboot_prompt),
34 ('unknown_command', pattern_unknown_command),
35 ('error_notification', pattern_error_notification),
Stephen Warren3bd79d32016-01-27 23:57:50 -070036 ('error_please_reset', pattern_error_please_reset),
Stephen Warren1115a972016-01-27 23:57:48 -070037)
38
Stephen Warren10e50632016-01-15 11:15:24 -070039class ConsoleDisableCheck(object):
Stephen Warren75e731e2016-01-26 13:41:30 -070040 """Context manager (for Python's with statement) that temporarily disables
Stephen Warren10e50632016-01-15 11:15:24 -070041 the specified console output error check. This is useful when deliberately
42 executing a command that is known to trigger one of the error checks, in
43 order to test that the error condition is actually raised. This class is
44 used internally by ConsoleBase::disable_check(); it is not intended for
Stephen Warren75e731e2016-01-26 13:41:30 -070045 direct usage."""
Stephen Warren10e50632016-01-15 11:15:24 -070046
47 def __init__(self, console, check_type):
48 self.console = console
49 self.check_type = check_type
50
51 def __enter__(self):
52 self.console.disable_check_count[self.check_type] += 1
Stephen Warren1115a972016-01-27 23:57:48 -070053 self.console.eval_bad_patterns()
Stephen Warren10e50632016-01-15 11:15:24 -070054
55 def __exit__(self, extype, value, traceback):
56 self.console.disable_check_count[self.check_type] -= 1
Stephen Warren1115a972016-01-27 23:57:48 -070057 self.console.eval_bad_patterns()
Stephen Warren10e50632016-01-15 11:15:24 -070058
Michal Simek6b463182016-05-19 07:57:41 +020059class ConsoleSetupTimeout(object):
60 """Context manager (for Python's with statement) that temporarily sets up
61 timeout for specific command. This is useful when execution time is greater
62 then default 30s."""
63
64 def __init__(self, console, timeout):
65 self.p = console.p
66 self.orig_timeout = self.p.timeout
67 self.p.timeout = timeout
68
69 def __enter__(self):
70 return self
71
72 def __exit__(self, extype, value, traceback):
73 self.p.timeout = self.orig_timeout
74
Stephen Warren10e50632016-01-15 11:15:24 -070075class ConsoleBase(object):
Stephen Warren75e731e2016-01-26 13:41:30 -070076 """The interface through which test functions interact with the U-Boot
Stephen Warren10e50632016-01-15 11:15:24 -070077 console. This primarily involves executing shell commands, capturing their
78 results, and checking for common error conditions. Some common utilities
Stephen Warren75e731e2016-01-26 13:41:30 -070079 are also provided too."""
Stephen Warren10e50632016-01-15 11:15:24 -070080
81 def __init__(self, log, config, max_fifo_fill):
Stephen Warren75e731e2016-01-26 13:41:30 -070082 """Initialize a U-Boot console connection.
Stephen Warren10e50632016-01-15 11:15:24 -070083
84 Can only usefully be called by sub-classes.
85
86 Args:
87 log: A mulptiplex_log.Logfile object, to which the U-Boot output
88 will be logged.
89 config: A configuration data structure, as built by conftest.py.
90 max_fifo_fill: The maximum number of characters to send to U-Boot
91 command-line before waiting for U-Boot to echo the characters
92 back. For UART-based HW without HW flow control, this value
93 should be set less than the UART RX FIFO size to avoid
94 overflow, assuming that U-Boot can't keep up with full-rate
95 traffic at the baud rate.
96
97 Returns:
98 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -070099 """
Stephen Warren10e50632016-01-15 11:15:24 -0700100
101 self.log = log
102 self.config = config
103 self.max_fifo_fill = max_fifo_fill
104
105 self.logstream = self.log.get_stream('console', sys.stdout)
106
107 # Array slice removes leading/trailing quotes
108 self.prompt = self.config.buildconfig['config_sys_prompt'][1:-1]
Stephen Warren6d083402016-08-16 19:58:59 -0600109 self.prompt_compiled = re.compile('^' + re.escape(self.prompt), re.MULTILINE)
Stephen Warren10e50632016-01-15 11:15:24 -0700110 self.p = None
Stephen Warren1115a972016-01-27 23:57:48 -0700111 self.disable_check_count = {pat[PAT_ID]: 0 for pat in bad_pattern_defs}
112 self.eval_bad_patterns()
Stephen Warren10e50632016-01-15 11:15:24 -0700113
114 self.at_prompt = False
115 self.at_prompt_logevt = None
Stephen Warren10e50632016-01-15 11:15:24 -0700116
Stephen Warren1115a972016-01-27 23:57:48 -0700117 def eval_bad_patterns(self):
118 self.bad_patterns = [pat[PAT_RE] for pat in bad_pattern_defs \
119 if self.disable_check_count[pat[PAT_ID]] == 0]
120 self.bad_pattern_ids = [pat[PAT_ID] for pat in bad_pattern_defs \
121 if self.disable_check_count[pat[PAT_ID]] == 0]
122
Stephen Warren10e50632016-01-15 11:15:24 -0700123 def close(self):
Stephen Warren75e731e2016-01-26 13:41:30 -0700124 """Terminate the connection to the U-Boot console.
Stephen Warren10e50632016-01-15 11:15:24 -0700125
126 This function is only useful once all interaction with U-Boot is
127 complete. Once this function is called, data cannot be sent to or
128 received from U-Boot.
129
130 Args:
131 None.
132
133 Returns:
134 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700135 """
Stephen Warren10e50632016-01-15 11:15:24 -0700136
137 if self.p:
138 self.p.close()
139 self.logstream.close()
140
141 def run_command(self, cmd, wait_for_echo=True, send_nl=True,
142 wait_for_prompt=True):
Stephen Warren75e731e2016-01-26 13:41:30 -0700143 """Execute a command via the U-Boot console.
Stephen Warren10e50632016-01-15 11:15:24 -0700144
145 The command is always sent to U-Boot.
146
147 U-Boot echoes any command back to its output, and this function
148 typically waits for that to occur. The wait can be disabled by setting
149 wait_for_echo=False, which is useful e.g. when sending CTRL-C to
150 interrupt a long-running command such as "ums".
151
152 Command execution is typically triggered by sending a newline
153 character. This can be disabled by setting send_nl=False, which is
154 also useful when sending CTRL-C.
155
156 This function typically waits for the command to finish executing, and
157 returns the console output that it generated. This can be disabled by
158 setting wait_for_prompt=False, which is useful when invoking a long-
159 running command such as "ums".
160
161 Args:
162 cmd: The command to send.
Heinrich Schuchardtbec160a2017-09-14 12:27:07 +0200163 wait_for_echo: Boolean indicating whether to wait for U-Boot to
Stephen Warren10e50632016-01-15 11:15:24 -0700164 echo the command text back to its output.
165 send_nl: Boolean indicating whether to send a newline character
166 after the command string.
167 wait_for_prompt: Boolean indicating whether to wait for the
168 command prompt to be sent by U-Boot. This typically occurs
169 immediately after the command has been executed.
170
171 Returns:
172 If wait_for_prompt == False:
173 Nothing.
174 Else:
175 The output from U-Boot during command execution. In other
176 words, the text U-Boot emitted between the point it echod the
177 command string and emitted the subsequent command prompts.
Stephen Warren75e731e2016-01-26 13:41:30 -0700178 """
Stephen Warren10e50632016-01-15 11:15:24 -0700179
Stephen Warren10e50632016-01-15 11:15:24 -0700180 if self.at_prompt and \
181 self.at_prompt_logevt != self.logstream.logfile.cur_evt:
182 self.logstream.write(self.prompt, implicit=True)
183
Stephen Warren10e50632016-01-15 11:15:24 -0700184 try:
185 self.at_prompt = False
186 if send_nl:
187 cmd += '\n'
188 while cmd:
189 # Limit max outstanding data, so UART FIFOs don't overflow
190 chunk = cmd[:self.max_fifo_fill]
191 cmd = cmd[self.max_fifo_fill:]
192 self.p.send(chunk)
193 if not wait_for_echo:
194 continue
195 chunk = re.escape(chunk)
196 chunk = chunk.replace('\\\n', '[\r\n]')
Stephen Warren1115a972016-01-27 23:57:48 -0700197 m = self.p.expect([chunk] + self.bad_patterns)
Stephen Warren10e50632016-01-15 11:15:24 -0700198 if m != 0:
199 self.at_prompt = False
200 raise Exception('Bad pattern found on console: ' +
Stephen Warren1115a972016-01-27 23:57:48 -0700201 self.bad_pattern_ids[m - 1])
Stephen Warren10e50632016-01-15 11:15:24 -0700202 if not wait_for_prompt:
203 return
Stephen Warren6d083402016-08-16 19:58:59 -0600204 m = self.p.expect([self.prompt_compiled] + self.bad_patterns)
Stephen Warren10e50632016-01-15 11:15:24 -0700205 if m != 0:
206 self.at_prompt = False
207 raise Exception('Bad pattern found on console: ' +
Stephen Warren1115a972016-01-27 23:57:48 -0700208 self.bad_pattern_ids[m - 1])
Stephen Warren10e50632016-01-15 11:15:24 -0700209 self.at_prompt = True
210 self.at_prompt_logevt = self.logstream.logfile.cur_evt
211 # Only strip \r\n; space/TAB might be significant if testing
212 # indentation.
213 return self.p.before.strip('\r\n')
214 except Exception as ex:
215 self.log.error(str(ex))
216 self.cleanup_spawn()
217 raise
Stephen Warrenb1c556a2017-10-27 11:04:08 -0600218 finally:
219 self.log.timestamp()
Stephen Warren10e50632016-01-15 11:15:24 -0700220
Simon Glass2436bb02016-07-03 09:40:42 -0600221 def run_command_list(self, cmds):
222 """Run a list of commands.
223
224 This is a helper function to call run_command() with default arguments
225 for each command in a list.
226
227 Args:
Simon Glassd5deca02016-07-31 17:35:04 -0600228 cmd: List of commands (each a string).
Simon Glass2436bb02016-07-03 09:40:42 -0600229 Returns:
Simon Glass2ca73112016-07-31 17:35:09 -0600230 A list of output strings from each command, one element for each
231 command.
Simon Glass2436bb02016-07-03 09:40:42 -0600232 """
Simon Glass2ca73112016-07-31 17:35:09 -0600233 output = []
Simon Glass2436bb02016-07-03 09:40:42 -0600234 for cmd in cmds:
Simon Glass2ca73112016-07-31 17:35:09 -0600235 output.append(self.run_command(cmd))
Simon Glass2436bb02016-07-03 09:40:42 -0600236 return output
237
Stephen Warren10e50632016-01-15 11:15:24 -0700238 def ctrlc(self):
Stephen Warren75e731e2016-01-26 13:41:30 -0700239 """Send a CTRL-C character to U-Boot.
Stephen Warren10e50632016-01-15 11:15:24 -0700240
241 This is useful in order to stop execution of long-running synchronous
242 commands such as "ums".
243
244 Args:
245 None.
246
247 Returns:
248 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700249 """
Stephen Warren10e50632016-01-15 11:15:24 -0700250
Stephen Warrena88c4172016-01-22 12:30:10 -0700251 self.log.action('Sending Ctrl-C')
Stephen Warren10e50632016-01-15 11:15:24 -0700252 self.run_command(chr(3), wait_for_echo=False, send_nl=False)
253
Stephen Warrenef824f52016-01-22 12:30:12 -0700254 def wait_for(self, text):
Stephen Warren75e731e2016-01-26 13:41:30 -0700255 """Wait for a pattern to be emitted by U-Boot.
Stephen Warrenef824f52016-01-22 12:30:12 -0700256
257 This is useful when a long-running command such as "dfu" is executing,
258 and it periodically emits some text that should show up at a specific
259 location in the log file.
260
261 Args:
262 text: The text to wait for; either a string (containing raw text,
263 not a regular expression) or an re object.
264
265 Returns:
266 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700267 """
Stephen Warrenef824f52016-01-22 12:30:12 -0700268
269 if type(text) == type(''):
270 text = re.escape(text)
Stephen Warren68a9bb62016-01-27 23:57:49 -0700271 m = self.p.expect([text] + self.bad_patterns)
272 if m != 0:
273 raise Exception('Bad pattern found on console: ' +
274 self.bad_pattern_ids[m - 1])
Stephen Warrenef824f52016-01-22 12:30:12 -0700275
Stephen Warren97a54662016-01-22 12:30:09 -0700276 def drain_console(self):
Stephen Warren75e731e2016-01-26 13:41:30 -0700277 """Read from and log the U-Boot console for a short time.
Stephen Warren97a54662016-01-22 12:30:09 -0700278
279 U-Boot's console output is only logged when the test code actively
280 waits for U-Boot to emit specific data. There are cases where tests
281 can fail without doing this. For example, if a test asks U-Boot to
282 enable USB device mode, then polls until a host-side device node
283 exists. In such a case, it is useful to log U-Boot's console output
284 in case U-Boot printed clues as to why the host-side even did not
285 occur. This function will do that.
286
287 Args:
288 None.
289
290 Returns:
291 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700292 """
Stephen Warren97a54662016-01-22 12:30:09 -0700293
294 # If we are already not connected to U-Boot, there's nothing to drain.
295 # This should only happen when a previous call to run_command() or
296 # wait_for() failed (and hence the output has already been logged), or
297 # the system is shutting down.
298 if not self.p:
299 return
300
301 orig_timeout = self.p.timeout
302 try:
303 # Drain the log for a relatively short time.
304 self.p.timeout = 1000
305 # Wait for something U-Boot will likely never send. This will
306 # cause the console output to be read and logged.
307 self.p.expect(['This should never match U-Boot output'])
308 except u_boot_spawn.Timeout:
309 pass
310 finally:
311 self.p.timeout = orig_timeout
312
Stephen Warren10e50632016-01-15 11:15:24 -0700313 def ensure_spawned(self):
Stephen Warren75e731e2016-01-26 13:41:30 -0700314 """Ensure a connection to a correctly running U-Boot instance.
Stephen Warren10e50632016-01-15 11:15:24 -0700315
316 This may require spawning a new Sandbox process or resetting target
317 hardware, as defined by the implementation sub-class.
318
319 This is an internal function and should not be called directly.
320
321 Args:
322 None.
323
324 Returns:
325 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700326 """
Stephen Warren10e50632016-01-15 11:15:24 -0700327
328 if self.p:
329 return
330 try:
Stephen Warren80eea632016-02-11 11:46:12 -0700331 self.log.start_section('Starting U-Boot')
Stephen Warren10e50632016-01-15 11:15:24 -0700332 self.at_prompt = False
Stephen Warren10e50632016-01-15 11:15:24 -0700333 self.p = self.get_spawn()
334 # Real targets can take a long time to scroll large amounts of
335 # text if LCD is enabled. This value may need tweaking in the
336 # future, possibly per-test to be optimal. This works for 'help'
337 # on board 'seaboard'.
Stephen Warren33db1ee2016-02-04 16:11:50 -0700338 if not self.config.gdbserver:
339 self.p.timeout = 30000
Stephen Warren10e50632016-01-15 11:15:24 -0700340 self.p.logfile_read = self.logstream
Heiko Schocher48d5a7e2016-02-17 18:32:51 +0100341 bcfg = self.config.buildconfig
342 config_spl = bcfg.get('config_spl', 'n') == 'y'
343 config_spl_serial_support = bcfg.get('config_spl_serial_support',
344 'n') == 'y'
Michal Simek777526a2016-02-25 14:58:24 +0100345 env_spl_skipped = self.config.env.get('env__spl_skipped',
346 False)
347 if config_spl and config_spl_serial_support and not env_spl_skipped:
Heiko Schocher48d5a7e2016-02-17 18:32:51 +0100348 m = self.p.expect([pattern_u_boot_spl_signon] +
349 self.bad_patterns)
Stephen Warren68a9bb62016-01-27 23:57:49 -0700350 if m != 0:
Simon Glassba83e942016-07-04 11:58:38 -0600351 raise Exception('Bad pattern found on SPL console: ' +
Stephen Warren68a9bb62016-01-27 23:57:49 -0700352 self.bad_pattern_ids[m - 1])
353 m = self.p.expect([pattern_u_boot_main_signon] + self.bad_patterns)
354 if m != 0:
355 raise Exception('Bad pattern found on console: ' +
356 self.bad_pattern_ids[m - 1])
Stephen Warren5af83c42016-02-05 18:04:43 -0700357 self.u_boot_version_string = self.p.after
Stephen Warren10e50632016-01-15 11:15:24 -0700358 while True:
Stephen Warren6d083402016-08-16 19:58:59 -0600359 m = self.p.expect([self.prompt_compiled,
Stephen Warren68a9bb62016-01-27 23:57:49 -0700360 pattern_stop_autoboot_prompt] + self.bad_patterns)
361 if m == 0:
362 break
363 if m == 1:
Stephen Warren850e3f72016-02-15 17:39:38 -0700364 self.p.send(' ')
Stephen Warren10e50632016-01-15 11:15:24 -0700365 continue
Stephen Warren68a9bb62016-01-27 23:57:49 -0700366 raise Exception('Bad pattern found on console: ' +
367 self.bad_pattern_ids[m - 2])
Stephen Warren10e50632016-01-15 11:15:24 -0700368 self.at_prompt = True
369 self.at_prompt_logevt = self.logstream.logfile.cur_evt
370 except Exception as ex:
371 self.log.error(str(ex))
372 self.cleanup_spawn()
373 raise
Stephen Warren80eea632016-02-11 11:46:12 -0700374 finally:
Stephen Warrenb1c556a2017-10-27 11:04:08 -0600375 self.log.timestamp()
Stephen Warren80eea632016-02-11 11:46:12 -0700376 self.log.end_section('Starting U-Boot')
Stephen Warren10e50632016-01-15 11:15:24 -0700377
378 def cleanup_spawn(self):
Stephen Warren75e731e2016-01-26 13:41:30 -0700379 """Shut down all interaction with the U-Boot instance.
Stephen Warren10e50632016-01-15 11:15:24 -0700380
381 This is used when an error is detected prior to re-establishing a
382 connection with a fresh U-Boot instance.
383
384 This is an internal function and should not be called directly.
385
386 Args:
387 None.
388
389 Returns:
390 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700391 """
Stephen Warren10e50632016-01-15 11:15:24 -0700392
393 try:
394 if self.p:
395 self.p.close()
396 except:
397 pass
398 self.p = None
399
Simon Glass37c2ce12016-07-31 17:35:08 -0600400 def restart_uboot(self):
401 """Shut down and restart U-Boot."""
402 self.cleanup_spawn()
403 self.ensure_spawned()
404
Simon Glass9bc20832016-07-04 11:58:39 -0600405 def get_spawn_output(self):
406 """Return the start-up output from U-Boot
407
408 Returns:
409 The output produced by ensure_spawed(), as a string.
410 """
411 if self.p:
412 return self.p.get_expect_output()
413 return None
414
Stephen Warren10e50632016-01-15 11:15:24 -0700415 def validate_version_string_in_text(self, text):
Stephen Warren75e731e2016-01-26 13:41:30 -0700416 """Assert that a command's output includes the U-Boot signon message.
Stephen Warren10e50632016-01-15 11:15:24 -0700417
418 This is primarily useful for validating the "version" command without
419 duplicating the signon text regex in a test function.
420
421 Args:
422 text: The command output text to check.
423
424 Returns:
425 Nothing. An exception is raised if the validation fails.
Stephen Warren75e731e2016-01-26 13:41:30 -0700426 """
Stephen Warren10e50632016-01-15 11:15:24 -0700427
428 assert(self.u_boot_version_string in text)
429
430 def disable_check(self, check_type):
Stephen Warren75e731e2016-01-26 13:41:30 -0700431 """Temporarily disable an error check of U-Boot's output.
Stephen Warren10e50632016-01-15 11:15:24 -0700432
433 Create a new context manager (for use with the "with" statement) which
434 temporarily disables a particular console output error check.
435
436 Args:
437 check_type: The type of error-check to disable. Valid values may
438 be found in self.disable_check_count above.
439
440 Returns:
441 A context manager object.
Stephen Warren75e731e2016-01-26 13:41:30 -0700442 """
Stephen Warren10e50632016-01-15 11:15:24 -0700443
444 return ConsoleDisableCheck(self, check_type)
Michal Simek6b463182016-05-19 07:57:41 +0200445
446 def temporary_timeout(self, timeout):
447 """Temporarily set up different timeout for commands.
448
449 Create a new context manager (for use with the "with" statement) which
450 temporarily change timeout.
451
452 Args:
453 timeout: Time in milliseconds.
454
455 Returns:
456 A context manager object.
457 """
458
459 return ConsoleSetupTimeout(self, timeout)