blob: 4f1e1f66e768cd9b64b2e5106c77a7505a5d8462 [file] [log] [blame]
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +01001U-Boot pytest suite
2===================
Stephen Warren10e50632016-01-15 11:15:24 -07003
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +01004Introduction
5------------
Stephen Warren10e50632016-01-15 11:15:24 -07006
7This tool aims to test U-Boot by executing U-Boot shell commands using the
8console interface. A single top-level script exists to execute or attach to the
9U-Boot console, run the entire script of tests against it, and summarize the
10results. Advantages of this approach are:
11
12- Testing is performed in the same way a user or script would interact with
13 U-Boot; there can be no disconnect.
14- There is no need to write or embed test-related code into U-Boot itself.
15 It is asserted that writing test-related code in Python is simpler and more
Simon Glass25404102021-03-07 17:35:17 -070016 flexible than writing it all in C. But see :doc:`tests_writing` for caveats
17 and more discussion / analysis.
Stephen Warren10e50632016-01-15 11:15:24 -070018- It is reasonably simple to interact with U-Boot in this way.
19
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010020Requirements
21------------
Stephen Warren10e50632016-01-15 11:15:24 -070022
23The test suite is implemented using pytest. Interaction with the U-Boot console
24involves executing some binary and interacting with its stdin/stdout. You will
25need to implement various "hook" scripts that are called by the test suite at
26the appropriate time.
27
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010028In order to run the test suite at a minimum we require that both Python 3 and
29pip for Python 3 are installed. All of the required python modules are
30described in the requirements.txt file in the /test/py/ directory and can be
31installed via the command
Stephen Warren10e50632016-01-15 11:15:24 -070032
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010033.. code-block:: bash
Tom Rinia39e81b2019-10-24 11:59:26 -040034
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010035 pip install -r requirements.txt
36
37In order to execute certain tests on their supported platforms other tools
38will be required. The following is an incomplete list:
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090039
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010040* gdisk
41* dfu-util
42* dtc
43* openssl
44* sudo OR guestmount
45* e2fsprogs
46* util-linux
47* coreutils
48* dosfstools
49* efitools
50* mount
51* mtools
52* sbsigntool
53* udisks2
Tom Rinia39e81b2019-10-24 11:59:26 -040054
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010055Please use the appropriate commands for your distribution to match these tools
Tom Rinia39e81b2019-10-24 11:59:26 -040056up with the package that provides them.
Stephen Warren10e50632016-01-15 11:15:24 -070057
58The test script supports either:
59
60- Executing a sandbox port of U-Boot on the local machine as a sub-process,
61 and interacting with it over stdin/stdout.
62- Executing an external "hook" scripts to flash a U-Boot binary onto a
63 physical board, attach to the board's console stream, and reset the board.
64 Further details are described later.
65
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010066Using `virtualenv` to provide requirements
67~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Stephen Warren10e50632016-01-15 11:15:24 -070068
Tom Rinia39e81b2019-10-24 11:59:26 -040069The recommended way to run the test suite, in order to ensure reproducibility
70is to use `virtualenv` to set up the necessary environment. This can be done
71via the following commands:
Stephen Warren10e50632016-01-15 11:15:24 -070072
Stephen Warren10e50632016-01-15 11:15:24 -070073
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010074.. code-block:: console
Stephen Warren10e50632016-01-15 11:15:24 -070075
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010076 $ cd /path/to/u-boot
77 $ sudo apt-get install python3 python3-virtualenv
78 $ virtualenv -p /usr/bin/python3 venv
79 $ . ./venv/bin/activate
80 $ pip install -r test/py/requirements.txt
81
82Testing sandbox
83---------------
84
85To run the test suite on the sandbox port (U-Boot built as a native user-space
Stephen Warren10e50632016-01-15 11:15:24 -070086application), simply execute:
87
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +010088.. code-block:: bash
89
90 ./test/py/test.py --bd sandbox --build
Stephen Warren10e50632016-01-15 11:15:24 -070091
92The `--bd` option tells the test suite which board type is being tested. This
93lets the test suite know which features the board has, and hence exactly what
94can be tested.
95
96The `--build` option tells U-Boot to compile U-Boot. Alternatively, you may
97omit this option and build U-Boot yourself, in whatever way you choose, before
98running the test script.
99
100The test script will attach to U-Boot, execute all valid tests for the board,
101then print a summary of the test process. A complete log of the test session
102will be written to `${build_dir}/test-log.html`. This is best viewed in a web
103browser, but may be read directly as plain text, perhaps with the aid of the
104`html2text` utility.
105
Simon Glass5c8b8842021-09-19 15:14:51 -0600106Running tests in parallel
107~~~~~~~~~~~~~~~~~~~~~~~~~
108
109Note: This does not fully work yet and is documented only so you can try to
110fix the problems.
111
112First install support for parallel tests::
113
114 pip3 install pytest-xdist
115
116Then build sandbox in a suitable build directory. It is not possible to use
117the --build flag with xdist.
118
119Finally, run the tests in parallel using the -n flag::
120
121 # build sandbox first, in a suitable build directory. It is not possible
122 # to use the --build flag with -n
123 test/py/test.py -B sandbox --build-dir /tmp/b/sandbox -q -k 'not slow' -n32
124
125At least the following non-slow tests are known to fail:
126
127- test_fit_ecdsa
128- test_bind_unbind_with_uclass
129- ut_dm_spi_flash
130- test_gpt_rename_partition
131- test_gpt_swap_partitions
132- test_pinmux_status
133- test_sqfs_load
134
135
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100136Testing under a debugger
137~~~~~~~~~~~~~~~~~~~~~~~~
Stephen Warrenc9afc502016-02-08 14:49:02 -0700138
139If you need to run sandbox under a debugger, you may pass the command-line
140option `--gdbserver COMM`. This causes two things to happens:
141
142- Instead of running U-Boot directly, it will be run under gdbserver, with
143 debug communication via the channel `COMM`. You can attach a debugger to the
144 sandbox process in order to debug it. See `man gdbserver` and the example
145 below for details of valid values for `COMM`.
146- All timeouts in tests are disabled, allowing U-Boot an arbitrary amount of
147 time to execute commands. This is useful if U-Boot is stopped at a breakpoint
148 during debugging.
149
150A usage example is:
151
152Window 1:
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100153
154.. code-block:: bash
155
156 ./test/py/test.py --bd sandbox --gdbserver localhost:1234
Stephen Warrenc9afc502016-02-08 14:49:02 -0700157
158Window 2:
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100159
160.. code-block:: bash
161
162 gdb ./build-sandbox/u-boot -ex 'target remote localhost:1234'
Stephen Warrenc9afc502016-02-08 14:49:02 -0700163
164Alternatively, you could leave off the `-ex` option and type the command
165manually into gdb once it starts.
166
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100167You can use any debugger you wish, as long as it speaks the gdb remote
Stephen Warrenc9afc502016-02-08 14:49:02 -0700168protocol, or any graphical wrapper around gdb.
169
170Some tests deliberately cause the sandbox process to exit, e.g. to test the
171reset command, or sandbox's CTRL-C handling. When this happens, you will need
172to attach the debugger to the new sandbox instance. If these tests are not
173relevant to your debugging session, you can skip them using pytest's -k
174command-line option; see the next section.
175
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100176Command-line options
177--------------------
178
179--board-type, --bd, -B
180 set the type of the board to be tested. For example, `sandbox` or `seaboard`.
Stephen Warren10e50632016-01-15 11:15:24 -0700181
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100182--board-identity`, --id
183 sets the identity of the board to be tested. This allows differentiation
184 between multiple instances of the same type of physical board that are
185 attached to the same host machine. This parameter is not interpreted by th
186 test script in any way, but rather is simply passed to the hook scripts
187 described below, and may be used in any site-specific way deemed necessary.
188
189--build
190 indicates that the test script should compile U-Boot itself before running
191 the tests. If using this option, make sure that any environment variables
192 required by the build process are already set, such as `$CROSS_COMPILE`.
193
194--buildman
195 indicates that `--build` should use buildman to build U-Boot. There is no need
196 to set $CROSS_COMPILE` in this case since buildman handles it.
197
198--build-dir
199 sets the directory containing the compiled U-Boot binaries. If omitted, this
200 is `${source_dir}/build-${board_type}`.
201
202--result-dir
203 sets the directory to write results, such as log files, into.
204 If omitted, the build directory is used.
205
206--persistent-data-dir
207 sets the directory used to store persistent test data. This is test data that
208 may be re-used across test runs, such as file-system images.
Stephen Warren10e50632016-01-15 11:15:24 -0700209
Stephen Warrenc9afc502016-02-08 14:49:02 -0700210`pytest` also implements a number of its own command-line options. Commonly used
211options are mentioned below. Please see `pytest` documentation for complete
212details. Execute `py.test --version` for a brief summary. Note that U-Boot's
213test.py script passes all command-line arguments directly to `pytest` for
214processing.
215
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100216-k
217 selects which tests to run. The default is to run all known tests. This
Stephen Warrenc9afc502016-02-08 14:49:02 -0700218 option takes a single argument which is used to filter test names. Simple
219 logical operators are supported. For example:
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100220
221 - `'-k ums'` runs only tests with "ums" in their name.
222 - `'-k ut_dm'` runs only tests with "ut_dm" in their name. Note that in this
Stephen Warrenc9afc502016-02-08 14:49:02 -0700223 case, "ut_dm" is a parameter to a test rather than the test name. The full
224 test name is e.g. "test_ut[ut_dm_leak]".
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100225 - `'-k not reset'` runs everything except tests with "reset" in their name.
226 - `'-k ut or hush'` runs only tests with "ut" or "hush" in their name.
227 - `'-k not (ut or hush)'` runs everything except tests with "ut" or "hush" in
Stephen Warrenc9afc502016-02-08 14:49:02 -0700228 their name.
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100229
230-s
231 prevents pytest from hiding a test's stdout. This allows you to see
Stephen Warrenc9afc502016-02-08 14:49:02 -0700232 U-Boot's console log in real time on pytest's stdout.
Stephen Warren10e50632016-01-15 11:15:24 -0700233
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100234Testing real hardware
235---------------------
Stephen Warren10e50632016-01-15 11:15:24 -0700236
237The tools and techniques used to interact with real hardware will vary
238radically between different host and target systems, and the whims of the user.
239For this reason, the test suite does not attempt to directly interact with real
240hardware in any way. Rather, it executes a standardized set of "hook" scripts
241via `$PATH`. These scripts implement certain actions on behalf of the test
242suite. This keeps the test suite simple and isolated from system variances
243unrelated to U-Boot features.
244
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100245Hook scripts
246~~~~~~~~~~~~
Stephen Warren10e50632016-01-15 11:15:24 -0700247
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100248Environment variables
249'''''''''''''''''''''
Stephen Warren10e50632016-01-15 11:15:24 -0700250
251The following environment variables are set when running hook scripts:
252
253- `UBOOT_BOARD_TYPE` the board type being tested.
254- `UBOOT_BOARD_IDENTITY` the board identity being tested, or `na` if none was
255 specified.
256- `UBOOT_SOURCE_DIR` the U-Boot source directory.
257- `UBOOT_TEST_PY_DIR` the full path to `test/py/` in the source directory.
258- `UBOOT_BUILD_DIR` the U-Boot build directory.
259- `UBOOT_RESULT_DIR` the test result directory.
Masahiro Yamadac9018912017-10-19 19:08:52 +0900260- `UBOOT_PERSISTENT_DATA_DIR` the test persistent data directory.
Stephen Warren10e50632016-01-15 11:15:24 -0700261
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100262u-boot-test-console
263'''''''''''''''''''
Stephen Warren10e50632016-01-15 11:15:24 -0700264
265This script provides access to the U-Boot console. The script's stdin/stdout
266should be connected to the board's console. This process should continue to run
267indefinitely, until killed. The test suite will run this script in parallel
268with all other hooks.
269
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100270This script may be implemented e.g. by executing `cu`, `kermit`, `conmux`, etc.
271via exec().
Stephen Warren10e50632016-01-15 11:15:24 -0700272
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100273If you are able to run U-Boot under a hardware simulator such as QEMU, then
Stephen Warren10e50632016-01-15 11:15:24 -0700274you would likely spawn that simulator from this script. However, note that
275`u-boot-test-reset` may be called multiple times per test script run, and must
276cause U-Boot to start execution from scratch each time. Hopefully your
277simulator includes a virtual reset button! If not, you can launch the
278simulator from `u-boot-test-reset` instead, while arranging for this console
279process to always communicate with the current simulator instance.
280
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100281u-boot-test-flash
282'''''''''''''''''
Stephen Warren10e50632016-01-15 11:15:24 -0700283
284Prior to running the test suite against a board, some arrangement must be made
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100285so that the board executes the particular U-Boot binary to be tested. Often
Stephen Warren10e50632016-01-15 11:15:24 -0700286this involves writing the U-Boot binary to the board's flash ROM. The test
287suite calls this hook script for that purpose.
288
289This script should perform the entire flashing process synchronously; the
290script should only exit once flashing is complete, and a board reset will
291cause the newly flashed U-Boot binary to be executed.
292
293It is conceivable that this script will do nothing. This might be useful in
294the following cases:
295
296- Some other process has already written the desired U-Boot binary into the
297 board's flash prior to running the test suite.
298- The board allows U-Boot to be downloaded directly into RAM, and executed
299 from there. Use of this feature will reduce wear on the board's flash, so
300 may be preferable if available, and if cold boot testing of U-Boot is not
301 required. If this feature is used, the `u-boot-test-reset` script should
Masahiro Yamadac9018912017-10-19 19:08:52 +0900302 perform this download, since the board could conceivably be reset multiple
Stephen Warren10e50632016-01-15 11:15:24 -0700303 times in a single test run.
304
305It is up to the user to determine if those situations exist, and to code this
306hook script appropriately.
307
308This script will typically be implemented by calling out to some SoC- or
309board-specific vendor flashing utility.
310
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100311u-boot-test-reset
312'''''''''''''''''
Stephen Warren10e50632016-01-15 11:15:24 -0700313
314Whenever the test suite needs to reset the target board, this script is
315executed. This is guaranteed to happen at least once, prior to executing the
316first test function. If any test fails, the test infra-structure will execute
317this script again to restore U-Boot to an operational state before running the
318next test function.
319
320This script will likely be implemented by communicating with some form of
321relay or electronic switch attached to the board's reset signal.
322
323The semantics of this script require that when it is executed, U-Boot will
324start running from scratch. If the U-Boot binary to be tested has been written
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100325to flash, pulsing the board's reset signal is likely all this script needs to
326do. However, in some scenarios, this script may perform other actions. For
Stephen Warren10e50632016-01-15 11:15:24 -0700327example, it may call out to some SoC- or board-specific vendor utility in order
328to download the U-Boot binary directly into RAM and execute it. This would
329avoid the need for `u-boot-test-flash` to actually write U-Boot to flash, thus
330saving wear on the flash chip(s).
331
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100332Examples
333''''''''
Stephen Warren140d04d2016-04-06 11:46:59 -0600334
Tom Rini2a1df582021-02-24 17:05:04 -0500335https://source.denx.de/u-boot/u-boot-test-hooks contains some working example hook
Stephen Warren140d04d2016-04-06 11:46:59 -0600336scripts, and may be useful as a reference when implementing hook scripts for
337your platform. These scripts are not considered part of U-Boot itself.
338
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100339Board-type-specific configuration
340~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Stephen Warren10e50632016-01-15 11:15:24 -0700341
342Each board has a different configuration and behaviour. Many of these
343differences can be automatically detected by parsing the `.config` file in the
344build directory. However, some differences can't yet be handled automatically.
345
346For each board, an optional Python module `u_boot_board_${board_type}` may exist
347to provide board-specific information to the test script. Any global value
348defined in these modules is available for use by any test function. The data
349contained in these scripts must be purely derived from U-Boot source code.
350Hence, these configuration files are part of the U-Boot source tree too.
351
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100352Execution environment configuration
353~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Stephen Warren10e50632016-01-15 11:15:24 -0700354
355Each user's hardware setup may enable testing different subsets of the features
356implemented by a particular board's configuration of U-Boot. For example, a
357U-Boot configuration may support USB device mode and USB Mass Storage, but this
358can only be tested if a USB cable is connected between the board and the host
359machine running the test script.
360
361For each board, optional Python modules `u_boot_boardenv_${board_type}` and
362`u_boot_boardenv_${board_type}_${board_identity}` may exist to provide
363board-specific and board-identity-specific information to the test script. Any
364global value defined in these modules is available for use by any test
365function. The data contained in these is specific to a particular user's
366hardware configuration. Hence, these configuration files are not part of the
367U-Boot source tree, and should be installed outside of the source tree. Users
368should set `$PYTHONPATH` prior to running the test script to allow these
369modules to be loaded.
370
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100371Board module parameter usage
372~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Stephen Warren10e50632016-01-15 11:15:24 -0700373
374The test scripts rely on the following variables being defined by the board
375module:
376
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100377- none at present
Stephen Warren10e50632016-01-15 11:15:24 -0700378
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100379U-Boot `.config` feature usage
380~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Stephen Warren10e50632016-01-15 11:15:24 -0700381
382The test scripts rely on various U-Boot `.config` features, either directly in
383order to test those features, or indirectly in order to query information from
384the running U-Boot instance in order to test other features.
385
386One example is that testing of the `md` command requires knowledge of a RAM
387address to use for the test. This data is parsed from the output of the
388`bdinfo` command, and hence relies on CONFIG_CMD_BDI being enabled.
389
390For a complete list of dependencies, please search the test scripts for
391instances of:
392
393- `buildconfig.get(...`
394- `@pytest.mark.buildconfigspec(...`
Heinrich Schuchardt59264ae2019-04-22 09:18:55 +0200395- `@pytest.mark.notbuildconfigspec(...`
Stephen Warren10e50632016-01-15 11:15:24 -0700396
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100397Complete invocation example
398~~~~~~~~~~~~~~~~~~~~~~~~~~~
Stephen Warren10e50632016-01-15 11:15:24 -0700399
400Assuming that you have installed the hook scripts into $HOME/ubtest/bin, and
401any required environment configuration Python modules into $HOME/ubtest/py,
402then you would likely invoke the test script as follows:
403
404If U-Boot has already been built:
405
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100406.. code-block:: bash
407
408 PATH=$HOME/ubtest/bin:$PATH \
Liam Beguince3f90e2018-03-14 19:15:13 -0400409 PYTHONPATH=${HOME}/ubtest/py/${HOSTNAME}:${PYTHONPATH} \
Stephen Warren10e50632016-01-15 11:15:24 -0700410 ./test/py/test.py --bd seaboard
Stephen Warren10e50632016-01-15 11:15:24 -0700411
412If you want the test script to compile U-Boot for you too, then you likely
413need to set `$CROSS_COMPILE` to allow this, and invoke the test script as
Simon Glass6e094842020-03-18 09:43:01 -0600414follows:
Stephen Warren10e50632016-01-15 11:15:24 -0700415
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100416.. code-block:: bash
417
418 CROSS_COMPILE=arm-none-eabi- \
Stephen Warren10e50632016-01-15 11:15:24 -0700419 PATH=$HOME/ubtest/bin:$PATH \
Liam Beguince3f90e2018-03-14 19:15:13 -0400420 PYTHONPATH=${HOME}/ubtest/py/${HOSTNAME}:${PYTHONPATH} \
Stephen Warren10e50632016-01-15 11:15:24 -0700421 ./test/py/test.py --bd seaboard --build
Stephen Warren10e50632016-01-15 11:15:24 -0700422
Simon Glass6e094842020-03-18 09:43:01 -0600423or, using buildman to handle it:
424
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100425.. code-block:: bash
426
Simon Glass6e094842020-03-18 09:43:01 -0600427 PATH=$HOME/ubtest/bin:$PATH \
428 PYTHONPATH=${HOME}/ubtest/py/${HOSTNAME}:${PYTHONPATH} \
429 ./test/py/test.py --bd seaboard --build --buildman
Simon Glass6e094842020-03-18 09:43:01 -0600430
Heinrich Schuchardt79c9f0e2021-01-18 20:24:03 +0100431Writing tests
432-------------
Stephen Warren10e50632016-01-15 11:15:24 -0700433
434Please refer to the pytest documentation for details of writing pytest tests.
435Details specific to the U-Boot test suite are described below.
436
437A test fixture named `u_boot_console` should be used by each test function. This
438provides the means to interact with the U-Boot console, and retrieve board and
439environment configuration information.
440
441The function `u_boot_console.run_command()` executes a shell command on the
442U-Boot console, and returns all output from that command. This allows
443validation or interpretation of the command output. This function validates
444that certain strings are not seen on the U-Boot console. These include shell
445error messages and the U-Boot sign-on message (in order to detect unexpected
446board resets). See the source of `u_boot_console_base.py` for a complete list of
447"bad" strings. Some test scenarios are expected to trigger these strings. Use
448`u_boot_console.disable_check()` to temporarily disable checking for specific
449strings. See `test_unknown_cmd.py` for an example.
450
451Board- and board-environment configuration values may be accessed as sub-fields
452of the `u_boot_console.config` object, for example
453`u_boot_console.config.ram_base`.
454
455Build configuration values (from `.config`) may be accessed via the dictionary
456`u_boot_console.config.buildconfig`, with keys equal to the Kconfig variable
457names.