Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 1 | Host stack test framework |
| 2 | ========================= |
| 3 | |
| 4 | Overview |
| 5 | -------- |
| 6 | |
| 7 | The goal of the Host stack test framework (**hs-test**) is to ease writing and running end-to-end tests for VPP's Host Stack. |
| 8 | End-to-end tests often want multiple VPP instances, network namespaces, different types of interfaces |
| 9 | and to execute external tools or commands. With such requirements the existing VPP test framework is not sufficient. |
| 10 | For this, ``Go`` was chosen as a high level language, allowing rapid development, with ``Docker`` and ``ip`` being the tools for creating required topology. |
| 11 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 12 | `Ginkgo`_ forms the base framework upon which the *hs-test* is built and run. |
| 13 | All tests are technically in a single suite because we are only using ``package main``. We simulate suite behavior by grouping tests by the topology they require. |
| 14 | This allows us to run those mentioned groups in parallel, but not individual tests in parallel. |
| 15 | |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 16 | |
| 17 | Anatomy of a test case |
| 18 | ---------------------- |
| 19 | |
| 20 | **Prerequisites**: |
| 21 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 22 | * Install hs-test dependencies with ``make install-deps`` |
| 23 | * Tests use *hs-test*'s own docker image, so building it before starting tests is a prerequisite. Run ``make build[-debug]`` to do so |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 24 | * Docker has to be installed and Go has to be in path of both the running user and root |
| 25 | * Root privileges are required to run tests as it uses Linux ``ip`` command for configuring topology |
| 26 | |
| 27 | **Action flow when running a test case**: |
| 28 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 29 | #. It starts with running ``make test``. Optional arguments are VERBOSE, PERSIST (topology configuration isn't cleaned up after test run, use ``make cleanup-hst`` to clean up), |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 30 | TEST=<test-name> to run a specific test and PARALLEL=[n-cpus]. |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 31 | #. ``make list-tests`` (or ``make help``) shows all tests. |
| 32 | #. ``Ginkgo`` looks for a spec suite in the current directory and then compiles it to a .test binary. |
| 33 | #. The Ginkgo test framework runs each function that was registered manually using ``Register[SuiteName]Test()``. Each of these functions correspond to a suite. |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 34 | #. Ginkgo's ``RunSpecs(t, "Suite description")`` function is the entry point and does the following: |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 35 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 36 | #. Ginkgo compiles the spec, builds a spec tree |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 37 | #. ``Describe`` container nodes in suite\_\*.go files are run (in series by default, or in parallel with the argument PARALLEL=[n-cpus]) |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 38 | #. Suite is initialized. The topology is loaded and configured in this step |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 39 | #. Registered tests are run in generated ``It`` subject nodes |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 40 | #. Execute tear-down functions, which currently consists of stopping running containers |
| 41 | and clean-up of test topology |
| 42 | |
| 43 | Adding a test case |
| 44 | ------------------ |
| 45 | |
| 46 | This describes adding a new test case to an existing suite. |
| 47 | For adding a new suite, please see `Modifying the framework`_ below. |
| 48 | |
| 49 | #. To write a new test case, create a file whose name ends with ``_test.go`` or pick one that already exists |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 50 | #. Declare method whose name ends with ``Test`` and specifies its parameter as a pointer to the suite's struct (defined in ``infra/suite_*.go``) |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 51 | #. Implement test behaviour inside the test method. This typically includes the following: |
| 52 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 53 | #. Import ``. "fd.io/hs-test/infra"`` |
| 54 | #. Retrieve a running container in which to run some action. Method ``GetContainerByName`` |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 55 | from ``HstSuite`` struct serves this purpose |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 56 | #. Interact with VPP through the ``VppInstance`` struct embedded in container. It provides ``Vppctl`` method to access debug CLI |
| 57 | #. Run arbitrary commands inside the containers with ``Exec`` method |
| 58 | #. Run other external tool with one of the preexisting functions in the ``infra/utils.go`` file. |
| 59 | For example, use ``wget`` with ``StartWget`` function |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 60 | #. Use ``exechelper`` or just plain ``exec`` packages to run whatever else |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 61 | #. Verify results of your tests using ``Assert`` methods provided by the test suite. |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 62 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 63 | #. Create an ``init()`` function and register the test using ``Register[SuiteName]Tests(testCaseFunction)`` |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 64 | |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 65 | |
| 66 | **Example test case** |
| 67 | |
Maros Ondrejicka | 56bfc63 | 2023-02-21 13:42:35 +0100 | [diff] [blame] | 68 | Assumed are two docker containers, each with its own VPP instance running. One VPP then pings the other. |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 69 | This can be put in file ``extras/hs-test/my_test.go`` and run with command ``make test TEST=MyTest``. |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 70 | |
| 71 | :: |
| 72 | |
| 73 | package main |
| 74 | |
| 75 | import ( |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 76 | . "fd.io/hs-test/infra" |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 77 | ) |
| 78 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 79 | func init(){ |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 80 | RegisterMySuiteTest(MyTest) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | func MyTest(s *MySuite) { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 84 | clientVpp := s.GetContainerByName("client-vpp").VppInstance |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 85 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 86 | serverVethAddress := s.NetInterfaces["server-iface"].Ip4AddressString() |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 87 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 88 | result := clientVpp.Vppctl("ping " + serverVethAddress) |
| 89 | s.Log(result) |
| 90 | s.AssertNotNil(result) |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 91 | } |
| 92 | |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 93 | |
| 94 | Filtering test cases |
| 95 | -------------------- |
| 96 | |
| 97 | The framework allows us to filter test cases in a few different ways, using ``make test TEST=``: |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 98 | |
| 99 | * Suite name |
| 100 | * File name |
| 101 | * Test name |
| 102 | * All of the above as long as they are ordered properly, e.g. ``make test TEST=VethsSuite.http_test.go.HeaderServerTest`` |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 103 | |
| 104 | **Names are case sensitive!** |
| 105 | |
| 106 | Names don't have to be complete, as long as they are last: |
| 107 | This is valid and will run all tests in every ``http`` file (if there is more than one): |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 108 | |
| 109 | * ``make test TEST=VethsSuite.http`` |
| 110 | |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 111 | This is not valid: |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 112 | |
| 113 | * ``make test TEST=Veths.http`` |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 114 | |
| 115 | They can also be left out: |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 116 | |
| 117 | * ``make test TEST=http_test.go`` will run every test in ``http_test.go`` |
| 118 | * ``make test TEST=Nginx`` will run everything that has 'Nginx' in its name - suites, files and tests. |
| 119 | * ``make test TEST=HeaderServerTest`` will only run the header server test |
Adrian Villin | 681ff3a | 2024-06-07 06:45:48 -0400 | [diff] [blame] | 120 | |
| 121 | |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 122 | Modifying the framework |
| 123 | ----------------------- |
| 124 | |
| 125 | **Adding a test suite** |
| 126 | |
| 127 | .. _test-convention: |
| 128 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 129 | #. To add a new suite, create a new file in the ``infra/`` folder. Naming convention for the suite files is ``suite_[name].go``. |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 130 | |
Maros Ondrejicka | 56bfc63 | 2023-02-21 13:42:35 +0100 | [diff] [blame] | 131 | #. Make a ``struct``, in the suite file, with at least ``HstSuite`` struct as its member. |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 132 | HstSuite provides functionality that can be shared for all suites, like starting containers |
| 133 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 134 | #. Create a new map that will contain a file name where a test is located and test functions with a pointer to the suite's struct: ``var myTests = map[string][]func(s *MySuite){}`` |
| 135 | |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 136 | :: |
| 137 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 138 | var myTests = map[string][]func(s *MySuite){} |
| 139 | |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 140 | type MySuite struct { |
| 141 | HstSuite |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 142 | } |
| 143 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 144 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 145 | #. Then create a new function that will add tests to that map: |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 146 | |
| 147 | :: |
| 148 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 149 | func RegisterMyTests(tests ...func(s *MySuite)) { |
| 150 | myTests[getTestFilename()] = tests |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 151 | } |
| 152 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 153 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 154 | #. In suite file, implement ``SetupSuite`` method which Ginkgo runs once before starting any of the tests. |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 155 | It's important here to call ``ConfigureNetworkTopology()`` method, |
Maros Ondrejicka | 56bfc63 | 2023-02-21 13:42:35 +0100 | [diff] [blame] | 156 | pass the topology name to the function in a form of file name of one of the *yaml* files in ``topo-network`` folder. |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 157 | Without the extension. In this example, *myTopology* corresponds to file ``extras/hs-test/topo-network/myTopology.yaml`` |
| 158 | This will ensure network topology, such as network interfaces and namespaces, will be created. |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 159 | Another important method to call is ``LoadContainerTopology()`` which will load |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 160 | containers and shared volumes used by the suite. This time the name passed to method corresponds |
| 161 | to file in ``extras/hs-test/topo-containers`` folder |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 162 | |
| 163 | :: |
| 164 | |
| 165 | func (s *MySuite) SetupSuite() { |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 166 | s.HstSuite.SetupSuite() |
| 167 | |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 168 | // Add custom setup code here |
| 169 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 170 | s.ConfigureNetworkTopology("myTopology") |
| 171 | s.LoadContainerTopology("2peerVeth") |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 172 | } |
| 173 | |
Maros Ondrejicka | 56bfc63 | 2023-02-21 13:42:35 +0100 | [diff] [blame] | 174 | #. In suite file, implement ``SetupTest`` method which gets executed before each test. Starting containers and |
| 175 | configuring VPP is usually placed here |
| 176 | |
| 177 | :: |
| 178 | |
| 179 | func (s *MySuite) SetupTest() { |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 180 | s.HstSuite.setupTest() |
Maros Ondrejicka | 56bfc63 | 2023-02-21 13:42:35 +0100 | [diff] [blame] | 181 | s.SetupVolumes() |
| 182 | s.SetupContainers() |
| 183 | } |
| 184 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 185 | #. In order for ``Ginkgo`` to run this suite, we need to create a ``Describe`` container node with setup nodes and an ``It`` subject node. |
| 186 | Place them at the end of the suite file |
| 187 | |
| 188 | * Declare a suite struct variable before anything else |
| 189 | * To use ``BeforeAll()`` and ``AfterAll()``, the container has to be marked as ``Ordered`` |
| 190 | * Because the container is now marked as Ordered, if a test fails, all the subsequent tests are skipped. |
| 191 | To override this behavior, decorate the container node with ``ContinueOnFailure`` |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 192 | |
| 193 | :: |
| 194 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 195 | var _ = Describe("MySuite", Ordered, ContinueOnFailure, func() { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 196 | var s MySuite |
| 197 | BeforeAll(func() { |
| 198 | s.SetupSuite() |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 199 | }) |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 200 | BeforeEach(func() { |
| 201 | s.SetupTest() |
| 202 | }) |
| 203 | AfterAll(func() { |
| 204 | s.TearDownSuite() |
| 205 | }) |
| 206 | AfterEach(func() { |
| 207 | s.TearDownTest() |
| 208 | }) |
| 209 | |
| 210 | for filename, tests := range myTests { |
| 211 | for _, test := range tests { |
| 212 | test := test |
| 213 | pc := reflect.ValueOf(test).Pointer() |
| 214 | funcValue := runtime.FuncForPC(pc) |
| 215 | testName := filename + "/" + strings.Split(funcValue.Name(), ".")[2] |
| 216 | It(testName, func(ctx SpecContext) { |
| 217 | s.Log(testName + ": BEGIN") |
| 218 | test(&s) |
| 219 | }, SpecTimeout(SuiteTimeout)) |
| 220 | } |
| 221 | } |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 222 | }) |
| 223 | |
| 224 | #. Notice the loop - it will generate multiple ``It`` nodes, each running a different test. |
| 225 | ``test := test`` is necessary, otherwise only the last test in a suite will run. |
| 226 | For a more detailed description, check Ginkgo's documentation: https://onsi.github.io/ginkgo/#dynamically-generating-specs\. |
| 227 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 228 | #. ``testName`` contains the test name in the following format: ``[name]_test.go/MyTest``. |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 229 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 230 | #. To run certain tests solo, create a register function and a map that will only contain tests that have to run solo. |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 231 | Add a ``Serial`` decorator to the container node and ``Label("SOLO")`` to the ``It`` subject node: |
| 232 | |
| 233 | :: |
| 234 | |
| 235 | var _ = Describe("MySuiteSolo", Ordered, ContinueOnFailure, Serial, func() { |
| 236 | ... |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 237 | It(testName, Label("SOLO"), func(ctx SpecContext) { |
| 238 | s.Log(testName + ": BEGIN") |
| 239 | test(&s) |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 240 | }, SpecTimeout(time.Minute*5)) |
| 241 | }) |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 242 | |
| 243 | #. Next step is to add test cases to the suite. For that, see section `Adding a test case`_ above |
| 244 | |
| 245 | **Adding a topology element** |
| 246 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 247 | Topology configuration exists as ``yaml`` files in the ``extras/hs-test/topo-network`` and |
| 248 | ``extras/hs-test/topo-containers`` folders. Processing of a network topology file for a particular test suite |
Maros Ondrejicka | 56bfc63 | 2023-02-21 13:42:35 +0100 | [diff] [blame] | 249 | is started by the ``configureNetworkTopology`` method depending on which file's name is passed to it. |
| 250 | Specified file is loaded and converted into internal data structures which represent various elements of the topology. |
| 251 | After parsing the configuration, framework loops over the elements and configures them one by one on the host system. |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 252 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 253 | These are currently supported types of network elements. |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 254 | |
| 255 | * ``netns`` - network namespace |
| 256 | * ``veth`` - veth network interface, optionally with target network namespace or IPv4 address |
| 257 | * ``bridge`` - ethernet bridge to connect created interfaces, optionally with target network namespace |
| 258 | * ``tap`` - tap network interface with IP address |
| 259 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 260 | Similarly, container topology is started by ``loadContainerTopology()``, configuration file is processed |
| 261 | so that test suite retains map of defined containers and uses that to start them at the beginning |
| 262 | of each test case and stop containers after the test finishes. Container configuration can specify |
| 263 | also volumes which allow to share data between containers or between host system and containers. |
| 264 | |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 265 | Supporting a new type of topology element requires adding code to recognize the new element type during loading. |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 266 | And adding code to set up the element in the host system with some Linux tool, such as *ip*. |
| 267 | This should be implemented in ``netconfig.go`` for network and in ``container.go`` for containers and volumes. |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 268 | |
| 269 | **Communicating between containers** |
| 270 | |
| 271 | When two VPP instances or other applications, each in its own Docker container, |
| 272 | want to communicate there are typically two ways this can be done within *hs-test*. |
| 273 | |
| 274 | * Network interfaces. Containers are being created with ``-d --network host`` options, |
| 275 | so they are connected with interfaces created in host system |
| 276 | * Shared folders. Containers are being created with ``-v`` option to create shared `volumes`_ between host system and containers |
| 277 | or just between containers |
| 278 | |
Maros Ondrejicka | 56bfc63 | 2023-02-21 13:42:35 +0100 | [diff] [blame] | 279 | Host system connects to VPP instances running in containers using a shared folder |
| 280 | where binary API socket is accessible by both sides. |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 281 | |
| 282 | **Adding an external tool** |
| 283 | |
| 284 | If an external program should be executed as part of a test case, it might be useful to wrap its execution in its own function. |
| 285 | These types of functions are placed in the ``utils.go`` file. If the external program is not available by default in Docker image, |
| 286 | add its installation to ``extras/hs-test/Dockerfile.vpp`` in ``apt-get install`` command. |
| 287 | Alternatively copy the executable from host system to the Docker image, similarly how the VPP executables and libraries are being copied. |
| 288 | |
Filip Tehlar | 9418143 | 2024-01-15 13:11:28 +0100 | [diff] [blame] | 289 | **Skipping tests** |
| 290 | |
| 291 | ``HstSuite`` provides several methods that can be called in tests for skipping it conditionally or unconditionally such as: |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 292 | ``skip()``, ``SkipIfMultiWorker()``, ``SkipUnlessExtendedTestsBuilt()``. You can also use Ginkgo's ``Skip()``. |
Filip Tehlar | 9418143 | 2024-01-15 13:11:28 +0100 | [diff] [blame] | 293 | However the tests currently run under test suites which set up topology and containers before actual test is run. For the reason of saving |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 294 | test run time it is not advisable to use aforementioned skip methods and instead, just don't register the test. |
Filip Tehlar | 9418143 | 2024-01-15 13:11:28 +0100 | [diff] [blame] | 295 | |
Matus Fabian | 147585e | 2024-09-20 10:44:08 +0200 | [diff] [blame] | 296 | **External dependencies** |
| 297 | |
| 298 | * Linux tools ``ip``, ``brctl`` |
| 299 | * Standalone programs ``wget``, ``iperf3`` - since these are downloaded when Docker image is made, |
| 300 | they are reasonably up-to-date automatically |
| 301 | * Programs in Docker images - ``envoyproxy/envoy-contrib`` and ``nginx`` |
| 302 | * ``http_server`` - homegrown application that listens on specified port and sends a test file in response |
| 303 | * Non-standard Go libraries - see ``extras/hs-test/go.mod`` |
| 304 | |
| 305 | Generally, these will be updated on a per-need basis, for example when a bug is discovered |
| 306 | or a new version incompatibility issue occurs. |
| 307 | |
| 308 | Debugging a test |
| 309 | ---------------- |
| 310 | |
| 311 | GDB |
| 312 | ^^^ |
Filip Tehlar | f34b680 | 2024-01-24 15:11:27 +0100 | [diff] [blame] | 313 | |
| 314 | It is possible to debug VPP by attaching ``gdb`` before test execution by adding ``DEBUG=true`` like follows: |
| 315 | |
| 316 | :: |
| 317 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 318 | $ make test TEST=LDPreloadIperfVppTest DEBUG=true |
Filip Tehlar | f34b680 | 2024-01-24 15:11:27 +0100 | [diff] [blame] | 319 | ... |
| 320 | run following command in different terminal: |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 321 | docker exec -it server-vpp2456109 gdb -ex "attach $(docker exec server-vpp2456109 pidof vpp)" |
| 322 | Afterwards press CTRL+\ to continue |
Filip Tehlar | f34b680 | 2024-01-24 15:11:27 +0100 | [diff] [blame] | 323 | |
| 324 | If a test consists of more VPP instances then this is done for each of them. |
| 325 | |
Matus Fabian | 147585e | 2024-09-20 10:44:08 +0200 | [diff] [blame] | 326 | Utility methods |
| 327 | ^^^^^^^^^^^^^^^ |
| 328 | |
| 329 | **Packet Capture** |
| 330 | |
| 331 | It is possible to use VPP pcap trace to capture received and sent packets. |
| 332 | You just need to add ``EnablePcapTrace`` to ``SetupTest`` method in test suite and ``CollectPcapTrace`` to ``TearDownTest``. |
| 333 | This way pcap trace is enabled on all interfaces and to capture maximum 10000 packets. |
| 334 | Your pcap file will be located in the test execution directory. |
| 335 | |
| 336 | **Event Logger** |
| 337 | |
| 338 | ``clib_warning`` is a handy way to add debugging output, but in some cases it's not appropriate for per-packet use in data plane code. |
| 339 | In this case VPP event logger is better option, for example you can enable it for TCP or session layer in build time. |
| 340 | To collect traces when test ends you just need to add ``CollectEventLogs`` method to ``TearDownTest`` in the test suite. |
| 341 | Your event logger file will be located in the test execution directory. |
| 342 | To view events you can use :ref:`G2 graphical event viewer <eventviewer>` or ``convert_evt`` tool, located in ``src/scripts/host-stack/``, |
| 343 | which convert event logs to human readable text. |
| 344 | |
| 345 | Memory leak testing |
| 346 | ^^^^^^^^^^^^^^^^^^^ |
Filip Tehlar | f34b680 | 2024-01-24 15:11:27 +0100 | [diff] [blame] | 347 | |
Matus Fabian | e99d266 | 2024-07-19 16:04:09 +0200 | [diff] [blame] | 348 | It is possible to use VPP memory traces to diagnose if and where memory leaks happen by comparing of two traces at different point in time. |
| 349 | You can do it by test like following: |
| 350 | |
| 351 | :: |
| 352 | |
| 353 | func MemLeakTest(s *NoTopoSuite) { |
| 354 | s.SkipUnlessLeakCheck() // test is excluded from usual test run |
| 355 | vpp := s.GetContainerByName("vpp").VppInstance |
| 356 | /* do your configuration here */ |
| 357 | vpp.Disconnect() // no goVPP less noise |
| 358 | vpp.EnableMemoryTrace() // enable memory traces |
| 359 | traces1, err := vpp.GetMemoryTrace() // get first sample |
| 360 | s.AssertNil(err, fmt.Sprint(err)) |
| 361 | vpp.Vppctl("test mem-leak") // execute some action |
| 362 | traces2, err := vpp.GetMemoryTrace() // get second sample |
| 363 | s.AssertNil(err, fmt.Sprint(err)) |
| 364 | vpp.MemLeakCheck(traces1, traces2) // compare samples and generate report |
| 365 | } |
| 366 | |
| 367 | To get your memory leak report run following command: |
| 368 | |
| 369 | :: |
| 370 | |
| 371 | $ make test-leak TEST=MemLeakTest |
| 372 | ... |
| 373 | NoTopoSuiteSolo mem_leak_test.go/MemLeakTest [SOLO] |
| 374 | /home/matus/vpp/extras/hs-test/infra/suite_no_topo.go:113 |
| 375 | |
| 376 | Report Entries >> |
| 377 | |
| 378 | SUMMARY: 112 byte(s) leaked in 1 allocation(s) |
| 379 | - /home/matus/vpp/extras/hs-test/infra/vppinstance.go:624 @ 07/19/24 15:53:33.539 |
| 380 | |
| 381 | leak of 112 byte(s) in 1 allocation(s) from: |
| 382 | #0 clib_mem_heap_alloc_aligned + 0x31 |
| 383 | #1 _vec_alloc_internal + 0x113 |
| 384 | #2 _vec_validate + 0x81 |
| 385 | #3 leak_memory_fn + 0x4f |
| 386 | #4 0x7fc167815ac3 |
| 387 | #5 0x7fc1678a7850 |
| 388 | << Report Entries |
| 389 | ------------------------------ |
| 390 | |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 391 | |
Adrian Villin | cee15aa | 2024-03-14 11:42:55 -0400 | [diff] [blame] | 392 | .. _ginkgo: https://onsi.github.io/ginkgo/ |
Maros Ondrejicka | 7943c90 | 2022-11-08 08:00:51 +0100 | [diff] [blame] | 393 | .. _volumes: https://docs.docker.com/storage/volumes/ |