README.txt 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. The shell script run-sample-tests.sh runs selected Zephyr samples against
  2. the network test applications Docker container provided by the 'net-tools'
  3. Zephyr project, https://github.com/zephyrproject-rtos/net-tools.
  4. Installation
  5. ************
  6. As a prerequisite it is assumed that Docker is installed and that the
  7. 'net-tools' Docker container has been created, see the first bullet point
  8. at the net-tools Docker README file
  9. https://github.com/zephyrproject-rtos/net-tools/blob/master/README.docker.
  10. In essence, the following needs to be done:
  11. * Install Docker
  12. * Check out the net-tools project from github or update it with west
  13. * Change working directory to the net-tools repository
  14. * cd docker/
  15. * Run 'docker build -t net-tools .'
  16. This creates a Docker image called 'net-tools' which the script will need as
  17. its counterpart when testing various network sample applications.
  18. Using
  19. *****
  20. The scripts/net/run-sample-tests.sh shell script can be used in two ways:
  21. 1. From a Zephyr network sample test directory.
  22. Example:
  23. cd samples/net/gptp
  24. $ZEPHYR_BASE/scripts/net/run-sample-tests.sh
  25. 2. By giving the test directories as parameters to the runner script.
  26. Example:
  27. cd $ZEPHYR_BASE
  28. ./scripts/net/run-sample-tests.sh samples/net/gptp \
  29. samples/net/sockets/echo_server
  30. User can see what samples are supported like this:
  31. $ZEPHYR_BASE/scripts/net/run-sample-tests.sh --scan
  32. The Docker container and a corresponding 'net-tools0' Docker network is started
  33. by the script, as well as Zephyr using native_posix board. IP addresses are
  34. assigned to the Docker network, which is a Linux network bridge interface.
  35. The default IP addresses are:
  36. * Zephyr uses addresses 192.0.2.1 and 2001:db8::1
  37. * Docker net-tools image uses addresses 192.0.2.2 and 2001:db8::2
  38. * The Docker bridge interface uses addresses 192.0.2.254 and 2001:db8::254
  39. The default IP addresses are used by echo_client and mqtt_publisher, but
  40. with the echo_server the IP addresses are switched between Zephyr and Docker
  41. so that the echo_client application always uses addresses ending in .1 and
  42. the echo_server application uses those ending in .2. The script does the IP
  43. address setup for each sample test, be it the default ones or the switched
  44. ones.
  45. When completed, the return value, either from Zephyr or from the Docker
  46. container, is returned to the script on Zephyr or Docker application
  47. termination. The return value is used as a simple verdict whether the sample
  48. passed or failed.
  49. Directories
  50. ***********
  51. The sample test script tries to automatically figure out the Zephyr base
  52. directory, which is assumed to be set by the ZEPHYR_BASE environment variable.
  53. Should this not be the case, the directory can be set using '-Z' or
  54. '--zephyr-dir' command line arguments. The sample test script also assumes
  55. that the net-tools git repository containing the Docker networking setup file
  56. 'docker.conf' exists at the same directory level as the Zephyr base directory.
  57. If the net tools are found elsewhere, the net-tools directory can be set with
  58. the 'N' or '--net-tools-dir' command line argument.
  59. Help is also available using the 'h' or '--help' argument.