Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 2 | |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 3 | from __future__ import print_function |
| 4 | import gc |
Paul Vinciguerra | 72f0004 | 2018-11-25 11:05:13 -0800 | [diff] [blame] | 5 | import sys |
Ole Trøan | 162989e | 2018-11-26 10:27:50 +0000 | [diff] [blame] | 6 | import os |
| 7 | import select |
| 8 | import unittest |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 9 | import tempfile |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 10 | import time |
Paul Vinciguerra | 72f0004 | 2018-11-25 11:05:13 -0800 | [diff] [blame] | 11 | import faulthandler |
Ole Trøan | 162989e | 2018-11-26 10:27:50 +0000 | [diff] [blame] | 12 | import random |
| 13 | import copy |
Paul Vinciguerra | 72f0004 | 2018-11-25 11:05:13 -0800 | [diff] [blame] | 14 | import psutil |
juraj.linkes | 68ebc83 | 2018-11-29 09:37:08 +0100 | [diff] [blame] | 15 | import platform |
Ole Trøan | 162989e | 2018-11-26 10:27:50 +0000 | [diff] [blame] | 16 | from collections import deque |
| 17 | from threading import Thread, Event |
| 18 | from inspect import getdoc, isclass |
| 19 | from traceback import format_exception |
| 20 | from logging import FileHandler, DEBUG, Formatter |
| 21 | from scapy.packet import Raw |
| 22 | from hook import StepHook, PollHook, VppDiedError |
Paul Vinciguerra | 919efad | 2018-12-17 21:43:43 -0800 | [diff] [blame] | 23 | from vpp_pg_interface import VppPGInterface |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 24 | from vpp_sub_interface import VppSubInterface |
Ole Trøan | 162989e | 2018-11-26 10:27:50 +0000 | [diff] [blame] | 25 | from vpp_lo_interface import VppLoInterface |
| 26 | from vpp_papi_provider import VppPapiProvider |
| 27 | from vpp_papi.vpp_stats import VPPStats |
| 28 | from log import RED, GREEN, YELLOW, double_line_delim, single_line_delim, \ |
| 29 | get_logger, colorize |
| 30 | from vpp_object import VppObjectRegistry |
| 31 | from util import ppp, is_core_present |
Klement Sekera | d81ae41 | 2018-05-16 10:52:54 +0200 | [diff] [blame] | 32 | from scapy.layers.inet import IPerror, TCPerror, UDPerror, ICMPerror |
| 33 | from scapy.layers.inet6 import ICMPv6DestUnreach, ICMPv6EchoRequest |
| 34 | from scapy.layers.inet6 import ICMPv6EchoReply |
Paul Vinciguerra | 6919b0d | 2018-12-09 15:37:04 -0800 | [diff] [blame] | 35 | |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 36 | if os.name == 'posix' and sys.version_info[0] < 3: |
| 37 | # using subprocess32 is recommended by python official documentation |
| 38 | # @ https://docs.python.org/2/library/subprocess.html |
| 39 | import subprocess32 as subprocess |
| 40 | else: |
| 41 | import subprocess |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 42 | |
Paul Vinciguerra | 852f5ef | 2018-12-15 10:16:35 -0800 | [diff] [blame] | 43 | # Python2/3 compatible |
| 44 | try: |
| 45 | input = raw_input |
| 46 | except NameError: |
| 47 | pass |
| 48 | |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 49 | PASS = 0 |
| 50 | FAIL = 1 |
| 51 | ERROR = 2 |
| 52 | SKIP = 3 |
| 53 | TEST_RUN = 4 |
| 54 | |
Klement Sekera | ebbaf55 | 2018-02-17 13:41:33 +0100 | [diff] [blame] | 55 | debug_framework = False |
| 56 | if os.getenv('TEST_DEBUG', "0") == "1": |
| 57 | debug_framework = True |
| 58 | import debug_internal |
| 59 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 60 | """ |
| 61 | Test framework module. |
| 62 | |
| 63 | The module provides a set of tools for constructing and running tests and |
| 64 | representing the results. |
| 65 | """ |
| 66 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 67 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 68 | class _PacketInfo(object): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 69 | """Private class to create packet info object. |
| 70 | |
| 71 | Help process information about the next packet. |
| 72 | Set variables to default values. |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 73 | """ |
Matej Klotton | 86d87c4 | 2016-11-11 11:38:55 +0100 | [diff] [blame] | 74 | #: Store the index of the packet. |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 75 | index = -1 |
Matej Klotton | 86d87c4 | 2016-11-11 11:38:55 +0100 | [diff] [blame] | 76 | #: Store the index of the source packet generator interface of the packet. |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 77 | src = -1 |
Matej Klotton | 86d87c4 | 2016-11-11 11:38:55 +0100 | [diff] [blame] | 78 | #: Store the index of the destination packet generator interface |
| 79 | #: of the packet. |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 80 | dst = -1 |
Pavel Kotucek | 59dda06 | 2017-03-02 15:22:47 +0100 | [diff] [blame] | 81 | #: Store expected ip version |
| 82 | ip = -1 |
| 83 | #: Store expected upper protocol |
| 84 | proto = -1 |
Matej Klotton | 86d87c4 | 2016-11-11 11:38:55 +0100 | [diff] [blame] | 85 | #: Store the copy of the former packet. |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 86 | data = None |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 87 | |
Matej Klotton | 16a14cd | 2016-12-07 15:09:13 +0100 | [diff] [blame] | 88 | def __eq__(self, other): |
| 89 | index = self.index == other.index |
| 90 | src = self.src == other.src |
| 91 | dst = self.dst == other.dst |
| 92 | data = self.data == other.data |
| 93 | return index and src and dst and data |
| 94 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 95 | |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 96 | def pump_output(testclass): |
| 97 | """ pump output from vpp stdout/stderr to proper queues """ |
Klement Sekera | 6a6f4f7 | 2017-11-09 09:16:39 +0100 | [diff] [blame] | 98 | stdout_fragment = "" |
| 99 | stderr_fragment = "" |
Neale Ranns | 1678236 | 2018-07-23 05:35:56 -0400 | [diff] [blame] | 100 | while not testclass.pump_thread_stop_flag.is_set(): |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 101 | readable = select.select([testclass.vpp.stdout.fileno(), |
| 102 | testclass.vpp.stderr.fileno(), |
| 103 | testclass.pump_thread_wakeup_pipe[0]], |
| 104 | [], [])[0] |
| 105 | if testclass.vpp.stdout.fileno() in readable: |
Klement Sekera | 6a6f4f7 | 2017-11-09 09:16:39 +0100 | [diff] [blame] | 106 | read = os.read(testclass.vpp.stdout.fileno(), 102400) |
| 107 | if len(read) > 0: |
| 108 | split = read.splitlines(True) |
| 109 | if len(stdout_fragment) > 0: |
| 110 | split[0] = "%s%s" % (stdout_fragment, split[0]) |
| 111 | if len(split) > 0 and split[-1].endswith("\n"): |
| 112 | limit = None |
| 113 | else: |
| 114 | limit = -1 |
| 115 | stdout_fragment = split[-1] |
| 116 | testclass.vpp_stdout_deque.extend(split[:limit]) |
| 117 | if not testclass.cache_vpp_output: |
| 118 | for line in split[:limit]: |
| 119 | testclass.logger.debug( |
| 120 | "VPP STDOUT: %s" % line.rstrip("\n")) |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 121 | if testclass.vpp.stderr.fileno() in readable: |
Klement Sekera | 6a6f4f7 | 2017-11-09 09:16:39 +0100 | [diff] [blame] | 122 | read = os.read(testclass.vpp.stderr.fileno(), 102400) |
| 123 | if len(read) > 0: |
| 124 | split = read.splitlines(True) |
| 125 | if len(stderr_fragment) > 0: |
| 126 | split[0] = "%s%s" % (stderr_fragment, split[0]) |
Ole Troan | 7f99183 | 2018-12-06 17:35:12 +0100 | [diff] [blame] | 127 | if len(split) > 0 and split[-1].endswith(b"\n"): |
Klement Sekera | 6a6f4f7 | 2017-11-09 09:16:39 +0100 | [diff] [blame] | 128 | limit = None |
| 129 | else: |
| 130 | limit = -1 |
| 131 | stderr_fragment = split[-1] |
| 132 | testclass.vpp_stderr_deque.extend(split[:limit]) |
| 133 | if not testclass.cache_vpp_output: |
| 134 | for line in split[:limit]: |
| 135 | testclass.logger.debug( |
| 136 | "VPP STDERR: %s" % line.rstrip("\n")) |
Paul Vinciguerra | 6919b0d | 2018-12-09 15:37:04 -0800 | [diff] [blame] | 137 | # ignoring the dummy pipe here intentionally - the |
| 138 | # flag will take care of properly terminating the loop |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 139 | |
| 140 | |
Paul Vinciguerra | defde0f | 2018-12-06 07:46:13 -0800 | [diff] [blame] | 141 | def _is_skip_aarch64_set(): |
juraj.linkes | 68ebc83 | 2018-11-29 09:37:08 +0100 | [diff] [blame] | 142 | return os.getenv('SKIP_AARCH64', 'n').lower() in ('yes', 'y', '1') |
| 143 | |
Paul Vinciguerra | defde0f | 2018-12-06 07:46:13 -0800 | [diff] [blame] | 144 | is_skip_aarch64_set = _is_skip_aarch64_set() |
juraj.linkes | 68ebc83 | 2018-11-29 09:37:08 +0100 | [diff] [blame] | 145 | |
Paul Vinciguerra | defde0f | 2018-12-06 07:46:13 -0800 | [diff] [blame] | 146 | |
| 147 | def _is_platform_aarch64(): |
juraj.linkes | 68ebc83 | 2018-11-29 09:37:08 +0100 | [diff] [blame] | 148 | return platform.machine() == 'aarch64' |
| 149 | |
Paul Vinciguerra | defde0f | 2018-12-06 07:46:13 -0800 | [diff] [blame] | 150 | is_platform_aarch64 = _is_platform_aarch64() |
juraj.linkes | 68ebc83 | 2018-11-29 09:37:08 +0100 | [diff] [blame] | 151 | |
Paul Vinciguerra | defde0f | 2018-12-06 07:46:13 -0800 | [diff] [blame] | 152 | |
| 153 | def _running_extended_tests(): |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 154 | s = os.getenv("EXTENDED_TESTS", "n") |
| 155 | return True if s.lower() in ("y", "yes", "1") else False |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 156 | |
Paul Vinciguerra | defde0f | 2018-12-06 07:46:13 -0800 | [diff] [blame] | 157 | running_extended_tests = _running_extended_tests() |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 158 | |
Paul Vinciguerra | defde0f | 2018-12-06 07:46:13 -0800 | [diff] [blame] | 159 | |
| 160 | def _running_on_centos(): |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 161 | os_id = os.getenv("OS_ID", "") |
| 162 | return True if "centos" in os_id.lower() else False |
Klement Sekera | d3e671e | 2017-09-29 12:36:37 +0200 | [diff] [blame] | 163 | |
Paul Vinciguerra | defde0f | 2018-12-06 07:46:13 -0800 | [diff] [blame] | 164 | running_on_centos = _running_on_centos |
| 165 | |
Klement Sekera | d3e671e | 2017-09-29 12:36:37 +0200 | [diff] [blame] | 166 | |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 167 | class KeepAliveReporter(object): |
| 168 | """ |
| 169 | Singleton object which reports test start to parent process |
| 170 | """ |
| 171 | _shared_state = {} |
| 172 | |
| 173 | def __init__(self): |
| 174 | self.__dict__ = self._shared_state |
Paul Vinciguerra | c7b03fe | 2018-11-18 08:17:34 -0800 | [diff] [blame] | 175 | self._pipe = None |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 176 | |
| 177 | @property |
| 178 | def pipe(self): |
| 179 | return self._pipe |
| 180 | |
| 181 | @pipe.setter |
| 182 | def pipe(self, pipe): |
Paul Vinciguerra | c7b03fe | 2018-11-18 08:17:34 -0800 | [diff] [blame] | 183 | if self._pipe is not None: |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 184 | raise Exception("Internal error - pipe should only be set once.") |
| 185 | self._pipe = pipe |
| 186 | |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 187 | def send_keep_alive(self, test, desc=None): |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 188 | """ |
| 189 | Write current test tmpdir & desc to keep-alive pipe to signal liveness |
| 190 | """ |
Klement Sekera | 3f6ff19 | 2017-08-11 06:56:05 +0200 | [diff] [blame] | 191 | if self.pipe is None: |
| 192 | # if not running forked.. |
| 193 | return |
| 194 | |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 195 | if isclass(test): |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 196 | desc = '%s (%s)' % (desc, unittest.util.strclass(test)) |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 197 | else: |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 198 | desc = test.id() |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 199 | |
Dave Wallace | e2efd12 | 2017-09-30 22:04:21 -0400 | [diff] [blame] | 200 | self.pipe.send((desc, test.vpp_bin, test.tempdir, test.vpp.pid)) |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 201 | |
| 202 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 203 | class VppTestCase(unittest.TestCase): |
Matej Klotton | 86d87c4 | 2016-11-11 11:38:55 +0100 | [diff] [blame] | 204 | """This subclass is a base class for VPP test cases that are implemented as |
| 205 | classes. It provides methods to create and run test case. |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 206 | """ |
| 207 | |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 208 | extra_vpp_punt_config = [] |
| 209 | extra_vpp_plugin_config = [] |
Pavel Kotucek | e88865d | 2018-11-28 07:42:11 +0100 | [diff] [blame] | 210 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 211 | @property |
| 212 | def packet_infos(self): |
| 213 | """List of packet infos""" |
| 214 | return self._packet_infos |
| 215 | |
Klement Sekera | dab231a | 2016-12-21 08:50:14 +0100 | [diff] [blame] | 216 | @classmethod |
| 217 | def get_packet_count_for_if_idx(cls, dst_if_index): |
| 218 | """Get the number of packet info for specified destination if index""" |
| 219 | if dst_if_index in cls._packet_count_for_dst_if_idx: |
| 220 | return cls._packet_count_for_dst_if_idx[dst_if_index] |
| 221 | else: |
| 222 | return 0 |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 223 | |
| 224 | @classmethod |
| 225 | def instance(cls): |
| 226 | """Return the instance of this testcase""" |
| 227 | return cls.test_instance |
| 228 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 229 | @classmethod |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 230 | def set_debug_flags(cls, d): |
| 231 | cls.debug_core = False |
| 232 | cls.debug_gdb = False |
| 233 | cls.debug_gdbserver = False |
| 234 | if d is None: |
| 235 | return |
| 236 | dl = d.lower() |
| 237 | if dl == "core": |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 238 | cls.debug_core = True |
| 239 | elif dl == "gdb": |
| 240 | cls.debug_gdb = True |
| 241 | elif dl == "gdbserver": |
| 242 | cls.debug_gdbserver = True |
| 243 | else: |
| 244 | raise Exception("Unrecognized DEBUG option: '%s'" % d) |
| 245 | |
Paul Vinciguerra | 86ebba6 | 2018-11-21 09:28:32 -0800 | [diff] [blame] | 246 | @staticmethod |
| 247 | def get_least_used_cpu(): |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 248 | cpu_usage_list = [set(range(psutil.cpu_count()))] |
| 249 | vpp_processes = [p for p in psutil.process_iter(attrs=['pid', 'name']) |
| 250 | if 'vpp_main' == p.info['name']] |
| 251 | for vpp_process in vpp_processes: |
| 252 | for cpu_usage_set in cpu_usage_list: |
| 253 | try: |
| 254 | cpu_num = vpp_process.cpu_num() |
| 255 | if cpu_num in cpu_usage_set: |
| 256 | cpu_usage_set_index = cpu_usage_list.index( |
| 257 | cpu_usage_set) |
| 258 | if cpu_usage_set_index == len(cpu_usage_list) - 1: |
| 259 | cpu_usage_list.append({cpu_num}) |
| 260 | else: |
| 261 | cpu_usage_list[cpu_usage_set_index + 1].add( |
| 262 | cpu_num) |
| 263 | cpu_usage_set.remove(cpu_num) |
| 264 | break |
| 265 | except psutil.NoSuchProcess: |
| 266 | pass |
| 267 | |
| 268 | for cpu_usage_set in cpu_usage_list: |
| 269 | if len(cpu_usage_set) > 0: |
| 270 | min_usage_set = cpu_usage_set |
| 271 | break |
| 272 | |
| 273 | return random.choice(tuple(min_usage_set)) |
| 274 | |
Paul Vinciguerra | 86ebba6 | 2018-11-21 09:28:32 -0800 | [diff] [blame] | 275 | @classmethod |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 276 | def setUpConstants(cls): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 277 | """ Set-up the test case class based on environment variables """ |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 278 | s = os.getenv("STEP", "n") |
| 279 | cls.step = True if s.lower() in ("y", "yes", "1") else False |
| 280 | d = os.getenv("DEBUG", None) |
| 281 | c = os.getenv("CACHE_OUTPUT", "1") |
| 282 | cls.cache_vpp_output = False if c.lower() in ("n", "no", "0") else True |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 283 | cls.set_debug_flags(d) |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 284 | cls.vpp_bin = os.getenv('VPP_BIN', "vpp") |
| 285 | cls.plugin_path = os.getenv('VPP_PLUGIN_PATH') |
Klement Sekera | 47e275b | 2017-03-21 08:21:25 +0100 | [diff] [blame] | 286 | cls.extern_plugin_path = os.getenv('EXTERN_PLUGINS') |
| 287 | plugin_path = None |
| 288 | if cls.plugin_path is not None: |
| 289 | if cls.extern_plugin_path is not None: |
| 290 | plugin_path = "%s:%s" % ( |
| 291 | cls.plugin_path, cls.extern_plugin_path) |
Klement Sekera | 6abbc28 | 2017-03-24 05:47:15 +0100 | [diff] [blame] | 292 | else: |
| 293 | plugin_path = cls.plugin_path |
Klement Sekera | 47e275b | 2017-03-21 08:21:25 +0100 | [diff] [blame] | 294 | elif cls.extern_plugin_path is not None: |
| 295 | plugin_path = cls.extern_plugin_path |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 296 | debug_cli = "" |
Klement Sekera | 01bbbe9 | 2016-11-02 09:25:05 +0100 | [diff] [blame] | 297 | if cls.step or cls.debug_gdb or cls.debug_gdbserver: |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 298 | debug_cli = "cli-listen localhost:5002" |
Klement Sekera | 80a7f0a | 2017-03-02 11:27:11 +0100 | [diff] [blame] | 299 | coredump_size = None |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 300 | size = os.getenv("COREDUMP_SIZE") |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 301 | if size is not None: |
| 302 | coredump_size = "coredump-size %s" % size |
| 303 | if coredump_size is None: |
| 304 | coredump_size = "coredump-size unlimited" |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 305 | |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 306 | cpu_core_number = cls.get_least_used_cpu() |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 307 | |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 308 | cls.vpp_cmdline = [cls.vpp_bin, "unix", |
| 309 | "{", "nodaemon", debug_cli, "full-coredump", |
| 310 | coredump_size, "runtime-dir", cls.tempdir, "}", |
| 311 | "api-trace", "{", "on", "}", "api-segment", "{", |
| 312 | "prefix", cls.shm_prefix, "}", "cpu", "{", |
| 313 | "main-core", str(cpu_core_number), "}", "statseg", |
| 314 | "{", "socket-name", cls.stats_sock, "}", "plugins", |
| 315 | "{", "plugin", "dpdk_plugin.so", "{", "disable", |
| 316 | "}", "plugin", "unittest_plugin.so", "{", "enable", |
| 317 | "}"] + cls.extra_vpp_plugin_config + ["}", ] |
| 318 | if cls.extra_vpp_punt_config is not None: |
| 319 | cls.vpp_cmdline.extend(cls.extra_vpp_punt_config) |
Klement Sekera | 47e275b | 2017-03-21 08:21:25 +0100 | [diff] [blame] | 320 | if plugin_path is not None: |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 321 | cls.vpp_cmdline.extend(["plugin_path", plugin_path]) |
Klement Sekera | f37c3ba | 2018-11-08 11:24:34 +0100 | [diff] [blame] | 322 | cls.logger.info("vpp_cmdline args: %s" % cls.vpp_cmdline) |
| 323 | cls.logger.info("vpp_cmdline: %s" % " ".join(cls.vpp_cmdline)) |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 324 | |
| 325 | @classmethod |
| 326 | def wait_for_enter(cls): |
| 327 | if cls.debug_gdbserver: |
| 328 | print(double_line_delim) |
| 329 | print("Spawned GDB server with PID: %d" % cls.vpp.pid) |
| 330 | elif cls.debug_gdb: |
| 331 | print(double_line_delim) |
| 332 | print("Spawned VPP with PID: %d" % cls.vpp.pid) |
| 333 | else: |
| 334 | cls.logger.debug("Spawned VPP with PID: %d" % cls.vpp.pid) |
| 335 | return |
| 336 | print(single_line_delim) |
| 337 | print("You can debug the VPP using e.g.:") |
| 338 | if cls.debug_gdbserver: |
| 339 | print("gdb " + cls.vpp_bin + " -ex 'target remote localhost:7777'") |
| 340 | print("Now is the time to attach a gdb by running the above " |
| 341 | "command, set up breakpoints etc. and then resume VPP from " |
| 342 | "within gdb by issuing the 'continue' command") |
| 343 | elif cls.debug_gdb: |
| 344 | print("gdb " + cls.vpp_bin + " -ex 'attach %s'" % cls.vpp.pid) |
| 345 | print("Now is the time to attach a gdb by running the above " |
| 346 | "command and set up breakpoints etc.") |
| 347 | print(single_line_delim) |
Paul Vinciguerra | 852f5ef | 2018-12-15 10:16:35 -0800 | [diff] [blame] | 348 | input("Press ENTER to continue running the testcase...") |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 349 | |
| 350 | @classmethod |
| 351 | def run_vpp(cls): |
| 352 | cmdline = cls.vpp_cmdline |
| 353 | |
| 354 | if cls.debug_gdbserver: |
Klement Sekera | 931be3a | 2016-11-03 05:36:01 +0100 | [diff] [blame] | 355 | gdbserver = '/usr/bin/gdbserver' |
| 356 | if not os.path.isfile(gdbserver) or \ |
| 357 | not os.access(gdbserver, os.X_OK): |
| 358 | raise Exception("gdbserver binary '%s' does not exist or is " |
| 359 | "not executable" % gdbserver) |
| 360 | |
| 361 | cmdline = [gdbserver, 'localhost:7777'] + cls.vpp_cmdline |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 362 | cls.logger.info("Gdbserver cmdline is %s", " ".join(cmdline)) |
| 363 | |
Klement Sekera | 931be3a | 2016-11-03 05:36:01 +0100 | [diff] [blame] | 364 | try: |
| 365 | cls.vpp = subprocess.Popen(cmdline, |
| 366 | stdout=subprocess.PIPE, |
| 367 | stderr=subprocess.PIPE, |
| 368 | bufsize=1) |
Paul Vinciguerra | 61e63bf | 2018-11-24 21:19:38 -0800 | [diff] [blame] | 369 | except subprocess.CalledProcessError as e: |
Klement Sekera | 931be3a | 2016-11-03 05:36:01 +0100 | [diff] [blame] | 370 | cls.logger.critical("Couldn't start vpp: %s" % e) |
| 371 | raise |
| 372 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 373 | cls.wait_for_enter() |
Pierre Pfister | cd8e318 | 2016-10-07 16:30:03 +0100 | [diff] [blame] | 374 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 375 | @classmethod |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 376 | def wait_for_stats_socket(cls): |
| 377 | deadline = time.time() + 3 |
Paul Vinciguerra | dd4b2bb | 2018-11-15 08:13:03 -0800 | [diff] [blame] | 378 | ok = False |
| 379 | while time.time() < deadline or \ |
| 380 | cls.debug_gdb or cls.debug_gdbserver: |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 381 | if os.path.exists(cls.stats_sock): |
Paul Vinciguerra | dd4b2bb | 2018-11-15 08:13:03 -0800 | [diff] [blame] | 382 | ok = True |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 383 | break |
Paul Vinciguerra | dd4b2bb | 2018-11-15 08:13:03 -0800 | [diff] [blame] | 384 | time.sleep(0.8) |
| 385 | if not ok: |
| 386 | cls.logger.critical("Couldn't stat : {}".format(cls.stats_sock)) |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 387 | |
| 388 | @classmethod |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 389 | def setUpClass(cls): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 390 | """ |
| 391 | Perform class setup before running the testcase |
| 392 | Remove shared memory files, start vpp and connect the vpp-api |
| 393 | """ |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 394 | gc.collect() # run garbage collection first |
Klement Sekera | 96867ba | 2018-02-02 11:27:53 +0100 | [diff] [blame] | 395 | random.seed() |
juraj.linkes | dfb5f2a | 2018-11-09 11:58:54 +0100 | [diff] [blame] | 396 | cls.logger = get_logger(cls.__name__) |
| 397 | if hasattr(cls, 'parallel_handler'): |
| 398 | cls.logger.addHandler(cls.parallel_handler) |
juraj.linkes | 3d9b92a | 2018-11-21 13:13:39 +0100 | [diff] [blame] | 399 | cls.logger.propagate = False |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 400 | cls.tempdir = tempfile.mkdtemp( |
Klement Sekera | f413bef | 2017-08-15 07:09:02 +0200 | [diff] [blame] | 401 | prefix='vpp-unittest-%s-' % cls.__name__) |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 402 | cls.stats_sock = "%s/stats.sock" % cls.tempdir |
Klement Sekera | 027dbd5 | 2017-04-11 06:01:53 +0200 | [diff] [blame] | 403 | cls.file_handler = FileHandler("%s/log.txt" % cls.tempdir) |
| 404 | cls.file_handler.setFormatter( |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 405 | Formatter(fmt='%(asctime)s,%(msecs)03d %(message)s', |
| 406 | datefmt="%H:%M:%S")) |
Klement Sekera | 027dbd5 | 2017-04-11 06:01:53 +0200 | [diff] [blame] | 407 | cls.file_handler.setLevel(DEBUG) |
| 408 | cls.logger.addHandler(cls.file_handler) |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 409 | cls.shm_prefix = os.path.basename(cls.tempdir) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 410 | os.chdir(cls.tempdir) |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 411 | cls.logger.info("Temporary dir is %s, shm prefix is %s", |
| 412 | cls.tempdir, cls.shm_prefix) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 413 | cls.setUpConstants() |
Klement Sekera | dab231a | 2016-12-21 08:50:14 +0100 | [diff] [blame] | 414 | cls.reset_packet_infos() |
Klement Sekera | 9225dee | 2016-12-12 08:36:58 +0100 | [diff] [blame] | 415 | cls._captures = [] |
| 416 | cls._zombie_captures = [] |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 417 | cls.verbose = 0 |
Klement Sekera | 085f5c0 | 2016-11-24 01:59:16 +0100 | [diff] [blame] | 418 | cls.vpp_dead = False |
Klement Sekera | 10db26f | 2017-01-11 08:16:53 +0100 | [diff] [blame] | 419 | cls.registry = VppObjectRegistry() |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 420 | cls.vpp_startup_failed = False |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 421 | cls.reporter = KeepAliveReporter() |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 422 | # need to catch exceptions here because if we raise, then the cleanup |
| 423 | # doesn't get called and we might end with a zombie vpp |
| 424 | try: |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 425 | cls.run_vpp() |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 426 | cls.reporter.send_keep_alive(cls, 'setUpClass') |
| 427 | VppTestResult.current_test_case_info = TestCaseInfo( |
| 428 | cls.logger, cls.tempdir, cls.vpp.pid, cls.vpp_bin) |
Klement Sekera | e4504c6 | 2016-12-08 10:16:41 +0100 | [diff] [blame] | 429 | cls.vpp_stdout_deque = deque() |
Klement Sekera | e4504c6 | 2016-12-08 10:16:41 +0100 | [diff] [blame] | 430 | cls.vpp_stderr_deque = deque() |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 431 | cls.pump_thread_stop_flag = Event() |
| 432 | cls.pump_thread_wakeup_pipe = os.pipe() |
| 433 | cls.pump_thread = Thread(target=pump_output, args=(cls,)) |
Klement Sekera | aeeac3b | 2017-02-14 07:11:52 +0100 | [diff] [blame] | 434 | cls.pump_thread.daemon = True |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 435 | cls.pump_thread.start() |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 436 | if cls.debug_gdb or cls.debug_gdbserver: |
| 437 | read_timeout = 0 |
| 438 | else: |
| 439 | read_timeout = 5 |
| 440 | cls.vapi = VppPapiProvider(cls.shm_prefix, cls.shm_prefix, cls, |
| 441 | read_timeout) |
Klement Sekera | 085f5c0 | 2016-11-24 01:59:16 +0100 | [diff] [blame] | 442 | if cls.step: |
| 443 | hook = StepHook(cls) |
| 444 | else: |
| 445 | hook = PollHook(cls) |
| 446 | cls.vapi.register_hook(hook) |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 447 | cls.wait_for_stats_socket() |
| 448 | cls.statistics = VPPStats(socketname=cls.stats_sock) |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 449 | try: |
| 450 | hook.poll_vpp() |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 451 | except VppDiedError: |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 452 | cls.vpp_startup_failed = True |
| 453 | cls.logger.critical( |
| 454 | "VPP died shortly after startup, check the" |
| 455 | " output to standard error for possible cause") |
| 456 | raise |
Klement Sekera | 085f5c0 | 2016-11-24 01:59:16 +0100 | [diff] [blame] | 457 | try: |
| 458 | cls.vapi.connect() |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 459 | except Exception: |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 460 | try: |
| 461 | cls.vapi.disconnect() |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 462 | except Exception: |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 463 | pass |
Klement Sekera | 085f5c0 | 2016-11-24 01:59:16 +0100 | [diff] [blame] | 464 | if cls.debug_gdbserver: |
| 465 | print(colorize("You're running VPP inside gdbserver but " |
| 466 | "VPP-API connection failed, did you forget " |
| 467 | "to 'continue' VPP from within gdb?", RED)) |
| 468 | raise |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 469 | except Exception: |
Klement Sekera | 085f5c0 | 2016-11-24 01:59:16 +0100 | [diff] [blame] | 470 | try: |
| 471 | cls.quit() |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 472 | except Exception: |
Klement Sekera | 085f5c0 | 2016-11-24 01:59:16 +0100 | [diff] [blame] | 473 | pass |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 474 | raise |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 475 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 476 | @classmethod |
| 477 | def quit(cls): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 478 | """ |
| 479 | Disconnect vpp-api, kill vpp and cleanup shared memory files |
| 480 | """ |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 481 | if (cls.debug_gdbserver or cls.debug_gdb) and hasattr(cls, 'vpp'): |
| 482 | cls.vpp.poll() |
| 483 | if cls.vpp.returncode is None: |
| 484 | print(double_line_delim) |
| 485 | print("VPP or GDB server is still running") |
| 486 | print(single_line_delim) |
Paul Vinciguerra | 852f5ef | 2018-12-15 10:16:35 -0800 | [diff] [blame] | 487 | input("When done debugging, press ENTER to kill the " |
| 488 | "process and finish running the testcase...") |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 489 | |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 490 | # first signal that we want to stop the pump thread, then wake it up |
| 491 | if hasattr(cls, 'pump_thread_stop_flag'): |
| 492 | cls.pump_thread_stop_flag.set() |
| 493 | if hasattr(cls, 'pump_thread_wakeup_pipe'): |
Ole Troan | 7f99183 | 2018-12-06 17:35:12 +0100 | [diff] [blame] | 494 | os.write(cls.pump_thread_wakeup_pipe[1], b'ding dong wake up') |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 495 | if hasattr(cls, 'pump_thread'): |
| 496 | cls.logger.debug("Waiting for pump thread to stop") |
| 497 | cls.pump_thread.join() |
| 498 | if hasattr(cls, 'vpp_stderr_reader_thread'): |
| 499 | cls.logger.debug("Waiting for stdderr pump to stop") |
| 500 | cls.vpp_stderr_reader_thread.join() |
| 501 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 502 | if hasattr(cls, 'vpp'): |
Klement Sekera | 0529a74 | 2016-12-02 07:05:24 +0100 | [diff] [blame] | 503 | if hasattr(cls, 'vapi'): |
| 504 | cls.vapi.disconnect() |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 505 | del cls.vapi |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 506 | cls.vpp.poll() |
| 507 | if cls.vpp.returncode is None: |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 508 | cls.logger.debug("Sending TERM to vpp") |
Klement Sekera | 611864f | 2018-09-26 11:19:00 +0200 | [diff] [blame] | 509 | cls.vpp.kill() |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 510 | cls.logger.debug("Waiting for vpp to die") |
| 511 | cls.vpp.communicate() |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 512 | del cls.vpp |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 513 | |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 514 | if cls.vpp_startup_failed: |
| 515 | stdout_log = cls.logger.info |
| 516 | stderr_log = cls.logger.critical |
| 517 | else: |
| 518 | stdout_log = cls.logger.info |
| 519 | stderr_log = cls.logger.info |
| 520 | |
Klement Sekera | e4504c6 | 2016-12-08 10:16:41 +0100 | [diff] [blame] | 521 | if hasattr(cls, 'vpp_stdout_deque'): |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 522 | stdout_log(single_line_delim) |
| 523 | stdout_log('VPP output to stdout while running %s:', cls.__name__) |
| 524 | stdout_log(single_line_delim) |
Klement Sekera | e4504c6 | 2016-12-08 10:16:41 +0100 | [diff] [blame] | 525 | vpp_output = "".join(cls.vpp_stdout_deque) |
Klement Sekera | 027dbd5 | 2017-04-11 06:01:53 +0200 | [diff] [blame] | 526 | with open(cls.tempdir + '/vpp_stdout.txt', 'w') as f: |
| 527 | f.write(vpp_output) |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 528 | stdout_log('\n%s', vpp_output) |
| 529 | stdout_log(single_line_delim) |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 530 | |
Klement Sekera | e4504c6 | 2016-12-08 10:16:41 +0100 | [diff] [blame] | 531 | if hasattr(cls, 'vpp_stderr_deque'): |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 532 | stderr_log(single_line_delim) |
| 533 | stderr_log('VPP output to stderr while running %s:', cls.__name__) |
| 534 | stderr_log(single_line_delim) |
Ole Troan | 7f99183 | 2018-12-06 17:35:12 +0100 | [diff] [blame] | 535 | vpp_output = "".join(str(cls.vpp_stderr_deque)) |
Klement Sekera | 027dbd5 | 2017-04-11 06:01:53 +0200 | [diff] [blame] | 536 | with open(cls.tempdir + '/vpp_stderr.txt', 'w') as f: |
| 537 | f.write(vpp_output) |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 538 | stderr_log('\n%s', vpp_output) |
| 539 | stderr_log(single_line_delim) |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 540 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 541 | @classmethod |
| 542 | def tearDownClass(cls): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 543 | """ Perform final cleanup after running all tests in this test-case """ |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 544 | cls.reporter.send_keep_alive(cls, 'tearDownClass') |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 545 | cls.quit() |
Klement Sekera | 027dbd5 | 2017-04-11 06:01:53 +0200 | [diff] [blame] | 546 | cls.file_handler.close() |
Klement Sekera | ebbaf55 | 2018-02-17 13:41:33 +0100 | [diff] [blame] | 547 | cls.reset_packet_infos() |
| 548 | if debug_framework: |
| 549 | debug_internal.on_tear_down_class(cls) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 550 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 551 | def tearDown(self): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 552 | """ Show various debug prints after each test """ |
Klement Sekera | b91017a | 2017-02-09 06:04:36 +0100 | [diff] [blame] | 553 | self.logger.debug("--- tearDown() for %s.%s(%s) called ---" % |
| 554 | (self.__class__.__name__, self._testMethodName, |
| 555 | self._testMethodDoc)) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 556 | if not self.vpp_dead: |
Klement Sekera | d91fa61 | 2019-01-15 13:25:09 +0100 | [diff] [blame^] | 557 | self.logger.debug(self.vapi.cli("show trace max 1000")) |
Neale Ranns | 88fc83e | 2017-04-05 08:11:14 -0700 | [diff] [blame] | 558 | self.logger.info(self.vapi.ppcli("show interface")) |
Jan | 49c0fca | 2016-10-26 15:44:27 +0200 | [diff] [blame] | 559 | self.logger.info(self.vapi.ppcli("show hardware")) |
Ole Troan | 7320210 | 2018-08-31 00:29:48 +0200 | [diff] [blame] | 560 | self.logger.info(self.statistics.set_errors_str()) |
Jan | 49c0fca | 2016-10-26 15:44:27 +0200 | [diff] [blame] | 561 | self.logger.info(self.vapi.ppcli("show run")) |
Damjan Marion | 07a3857 | 2018-01-21 06:44:18 -0800 | [diff] [blame] | 562 | self.logger.info(self.vapi.ppcli("show log")) |
Klement Sekera | 10db26f | 2017-01-11 08:16:53 +0100 | [diff] [blame] | 563 | self.registry.remove_vpp_config(self.logger) |
Dave Wallace | 90c5572 | 2017-02-16 11:25:26 -0500 | [diff] [blame] | 564 | # Save/Dump VPP api trace log |
| 565 | api_trace = "vpp_api_trace.%s.log" % self._testMethodName |
| 566 | tmp_api_trace = "/tmp/%s" % api_trace |
| 567 | vpp_api_trace_log = "%s/%s" % (self.tempdir, api_trace) |
| 568 | self.logger.info(self.vapi.ppcli("api trace save %s" % api_trace)) |
| 569 | self.logger.info("Moving %s to %s\n" % (tmp_api_trace, |
| 570 | vpp_api_trace_log)) |
| 571 | os.rename(tmp_api_trace, vpp_api_trace_log) |
Dave Wallace | 5ba5837 | 2018-02-13 16:14:06 -0500 | [diff] [blame] | 572 | self.logger.info(self.vapi.ppcli("api trace custom-dump %s" % |
Dave Wallace | 90c5572 | 2017-02-16 11:25:26 -0500 | [diff] [blame] | 573 | vpp_api_trace_log)) |
Klement Sekera | 1b68640 | 2017-03-02 11:29:19 +0100 | [diff] [blame] | 574 | else: |
| 575 | self.registry.unregister_all(self.logger) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 576 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 577 | def setUp(self): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 578 | """ Clear trace before running each test""" |
Klement Sekera | 909a6a1 | 2017-08-08 04:33:53 +0200 | [diff] [blame] | 579 | self.reporter.send_keep_alive(self) |
Klement Sekera | b91017a | 2017-02-09 06:04:36 +0100 | [diff] [blame] | 580 | self.logger.debug("--- setUp() for %s.%s(%s) called ---" % |
| 581 | (self.__class__.__name__, self._testMethodName, |
| 582 | self._testMethodDoc)) |
Klement Sekera | 0c1519b | 2016-12-08 05:03:32 +0100 | [diff] [blame] | 583 | if self.vpp_dead: |
| 584 | raise Exception("VPP is dead when setting up the test") |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 585 | self.sleep(.1, "during setUp") |
Klement Sekera | e4504c6 | 2016-12-08 10:16:41 +0100 | [diff] [blame] | 586 | self.vpp_stdout_deque.append( |
| 587 | "--- test setUp() for %s.%s(%s) starts here ---\n" % |
| 588 | (self.__class__.__name__, self._testMethodName, |
| 589 | self._testMethodDoc)) |
| 590 | self.vpp_stderr_deque.append( |
| 591 | "--- test setUp() for %s.%s(%s) starts here ---\n" % |
| 592 | (self.__class__.__name__, self._testMethodName, |
| 593 | self._testMethodDoc)) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 594 | self.vapi.cli("clear trace") |
| 595 | # store the test instance inside the test class - so that objects |
| 596 | # holding the class can access instance methods (like assertEqual) |
| 597 | type(self).test_instance = self |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 598 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 599 | @classmethod |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 600 | def pg_enable_capture(cls, interfaces=None): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 601 | """ |
| 602 | Enable capture on packet-generator interfaces |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 603 | |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 604 | :param interfaces: iterable interface indexes (if None, |
| 605 | use self.pg_interfaces) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 606 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 607 | """ |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 608 | if interfaces is None: |
| 609 | interfaces = cls.pg_interfaces |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 610 | for i in interfaces: |
| 611 | i.enable_capture() |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 612 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 613 | @classmethod |
Klement Sekera | 9225dee | 2016-12-12 08:36:58 +0100 | [diff] [blame] | 614 | def register_capture(cls, cap_name): |
| 615 | """ Register a capture in the testclass """ |
| 616 | # add to the list of captures with current timestamp |
| 617 | cls._captures.append((time.time(), cap_name)) |
| 618 | # filter out from zombies |
| 619 | cls._zombie_captures = [(stamp, name) |
| 620 | for (stamp, name) in cls._zombie_captures |
| 621 | if name != cap_name] |
| 622 | |
| 623 | @classmethod |
| 624 | def pg_start(cls): |
| 625 | """ Remove any zombie captures and enable the packet generator """ |
| 626 | # how long before capture is allowed to be deleted - otherwise vpp |
| 627 | # crashes - 100ms seems enough (this shouldn't be needed at all) |
| 628 | capture_ttl = 0.1 |
| 629 | now = time.time() |
| 630 | for stamp, cap_name in cls._zombie_captures: |
| 631 | wait = stamp + capture_ttl - now |
| 632 | if wait > 0: |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 633 | cls.sleep(wait, "before deleting capture %s" % cap_name) |
Klement Sekera | 9225dee | 2016-12-12 08:36:58 +0100 | [diff] [blame] | 634 | now = time.time() |
| 635 | cls.logger.debug("Removing zombie capture %s" % cap_name) |
| 636 | cls.vapi.cli('packet-generator delete %s' % cap_name) |
| 637 | |
Klement Sekera | d91fa61 | 2019-01-15 13:25:09 +0100 | [diff] [blame^] | 638 | cls.vapi.cli("trace add pg-input 1000") |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 639 | cls.vapi.cli('packet-generator enable') |
Klement Sekera | 9225dee | 2016-12-12 08:36:58 +0100 | [diff] [blame] | 640 | cls._zombie_captures = cls._captures |
| 641 | cls._captures = [] |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 642 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 643 | @classmethod |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 644 | def create_pg_interfaces(cls, interfaces): |
| 645 | """ |
Matej Klotton | 8d8a1da | 2016-12-22 11:06:56 +0100 | [diff] [blame] | 646 | Create packet-generator interfaces. |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 647 | |
Matej Klotton | 8d8a1da | 2016-12-22 11:06:56 +0100 | [diff] [blame] | 648 | :param interfaces: iterable indexes of the interfaces. |
| 649 | :returns: List of created interfaces. |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 650 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 651 | """ |
| 652 | result = [] |
| 653 | for i in interfaces: |
| 654 | intf = VppPGInterface(cls, i) |
| 655 | setattr(cls, intf.name, intf) |
| 656 | result.append(intf) |
| 657 | cls.pg_interfaces = result |
| 658 | return result |
| 659 | |
Matej Klotton | 0178d52 | 2016-11-04 11:11:44 +0100 | [diff] [blame] | 660 | @classmethod |
Klement Sekera | b9ef273 | 2018-06-24 22:49:33 +0200 | [diff] [blame] | 661 | def create_loopback_interfaces(cls, count): |
Matej Klotton | 0178d52 | 2016-11-04 11:11:44 +0100 | [diff] [blame] | 662 | """ |
Matej Klotton | 8d8a1da | 2016-12-22 11:06:56 +0100 | [diff] [blame] | 663 | Create loopback interfaces. |
Matej Klotton | 0178d52 | 2016-11-04 11:11:44 +0100 | [diff] [blame] | 664 | |
Klement Sekera | b9ef273 | 2018-06-24 22:49:33 +0200 | [diff] [blame] | 665 | :param count: number of interfaces created. |
Matej Klotton | 8d8a1da | 2016-12-22 11:06:56 +0100 | [diff] [blame] | 666 | :returns: List of created interfaces. |
Matej Klotton | 0178d52 | 2016-11-04 11:11:44 +0100 | [diff] [blame] | 667 | """ |
Klement Sekera | b9ef273 | 2018-06-24 22:49:33 +0200 | [diff] [blame] | 668 | result = [VppLoInterface(cls) for i in range(count)] |
| 669 | for intf in result: |
Matej Klotton | 0178d52 | 2016-11-04 11:11:44 +0100 | [diff] [blame] | 670 | setattr(cls, intf.name, intf) |
Matej Klotton | 0178d52 | 2016-11-04 11:11:44 +0100 | [diff] [blame] | 671 | cls.lo_interfaces = result |
| 672 | return result |
| 673 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 674 | @staticmethod |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 675 | def extend_packet(packet, size, padding=' '): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 676 | """ |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 677 | Extend packet to given size by padding with spaces or custom padding |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 678 | NOTE: Currently works only when Raw layer is present. |
| 679 | |
| 680 | :param packet: packet |
| 681 | :param size: target size |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 682 | :param padding: padding used to extend the payload |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 683 | |
| 684 | """ |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 685 | packet_len = len(packet) + 4 |
| 686 | extend = size - packet_len |
| 687 | if extend > 0: |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 688 | num = (extend / len(padding)) + 1 |
| 689 | packet[Raw].load += (padding * num)[:extend] |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 690 | |
Klement Sekera | dab231a | 2016-12-21 08:50:14 +0100 | [diff] [blame] | 691 | @classmethod |
| 692 | def reset_packet_infos(cls): |
| 693 | """ Reset the list of packet info objects and packet counts to zero """ |
| 694 | cls._packet_infos = {} |
| 695 | cls._packet_count_for_dst_if_idx = {} |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 696 | |
Klement Sekera | dab231a | 2016-12-21 08:50:14 +0100 | [diff] [blame] | 697 | @classmethod |
| 698 | def create_packet_info(cls, src_if, dst_if): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 699 | """ |
| 700 | Create packet info object containing the source and destination indexes |
| 701 | and add it to the testcase's packet info list |
| 702 | |
Klement Sekera | dab231a | 2016-12-21 08:50:14 +0100 | [diff] [blame] | 703 | :param VppInterface src_if: source interface |
| 704 | :param VppInterface dst_if: destination interface |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 705 | |
| 706 | :returns: _PacketInfo object |
| 707 | |
| 708 | """ |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 709 | info = _PacketInfo() |
Klement Sekera | dab231a | 2016-12-21 08:50:14 +0100 | [diff] [blame] | 710 | info.index = len(cls._packet_infos) |
| 711 | info.src = src_if.sw_if_index |
| 712 | info.dst = dst_if.sw_if_index |
| 713 | if isinstance(dst_if, VppSubInterface): |
| 714 | dst_idx = dst_if.parent.sw_if_index |
| 715 | else: |
| 716 | dst_idx = dst_if.sw_if_index |
| 717 | if dst_idx in cls._packet_count_for_dst_if_idx: |
| 718 | cls._packet_count_for_dst_if_idx[dst_idx] += 1 |
| 719 | else: |
| 720 | cls._packet_count_for_dst_if_idx[dst_idx] = 1 |
| 721 | cls._packet_infos[info.index] = info |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 722 | return info |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 723 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 724 | @staticmethod |
| 725 | def info_to_payload(info): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 726 | """ |
| 727 | Convert _PacketInfo object to packet payload |
| 728 | |
| 729 | :param info: _PacketInfo object |
| 730 | |
| 731 | :returns: string containing serialized data from packet info |
| 732 | """ |
Pavel Kotucek | 59dda06 | 2017-03-02 15:22:47 +0100 | [diff] [blame] | 733 | return "%d %d %d %d %d" % (info.index, info.src, info.dst, |
| 734 | info.ip, info.proto) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 735 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 736 | @staticmethod |
| 737 | def payload_to_info(payload): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 738 | """ |
| 739 | Convert packet payload to _PacketInfo object |
| 740 | |
| 741 | :param payload: packet payload |
| 742 | |
| 743 | :returns: _PacketInfo object containing de-serialized data from payload |
| 744 | |
| 745 | """ |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 746 | numbers = payload.split() |
| 747 | info = _PacketInfo() |
| 748 | info.index = int(numbers[0]) |
| 749 | info.src = int(numbers[1]) |
| 750 | info.dst = int(numbers[2]) |
Pavel Kotucek | 59dda06 | 2017-03-02 15:22:47 +0100 | [diff] [blame] | 751 | info.ip = int(numbers[3]) |
| 752 | info.proto = int(numbers[4]) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 753 | return info |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 754 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 755 | def get_next_packet_info(self, info): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 756 | """ |
| 757 | Iterate over the packet info list stored in the testcase |
| 758 | Start iteration with first element if info is None |
| 759 | Continue based on index in info if info is specified |
| 760 | |
| 761 | :param info: info or None |
| 762 | :returns: next info in list or None if no more infos |
| 763 | """ |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 764 | if info is None: |
| 765 | next_index = 0 |
| 766 | else: |
| 767 | next_index = info.index + 1 |
Klement Sekera | dab231a | 2016-12-21 08:50:14 +0100 | [diff] [blame] | 768 | if next_index == len(self._packet_infos): |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 769 | return None |
| 770 | else: |
Klement Sekera | dab231a | 2016-12-21 08:50:14 +0100 | [diff] [blame] | 771 | return self._packet_infos[next_index] |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 772 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 773 | def get_next_packet_info_for_interface(self, src_index, info): |
| 774 | """ |
| 775 | Search the packet info list for the next packet info with same source |
| 776 | interface index |
| 777 | |
| 778 | :param src_index: source interface index to search for |
| 779 | :param info: packet info - where to start the search |
| 780 | :returns: packet info or None |
| 781 | |
| 782 | """ |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 783 | while True: |
| 784 | info = self.get_next_packet_info(info) |
| 785 | if info is None: |
| 786 | return None |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 787 | if info.src == src_index: |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 788 | return info |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 789 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 790 | def get_next_packet_info_for_interface2(self, src_index, dst_index, info): |
| 791 | """ |
| 792 | Search the packet info list for the next packet info with same source |
| 793 | and destination interface indexes |
| 794 | |
| 795 | :param src_index: source interface index to search for |
| 796 | :param dst_index: destination interface index to search for |
| 797 | :param info: packet info - where to start the search |
| 798 | :returns: packet info or None |
| 799 | |
| 800 | """ |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 801 | while True: |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 802 | info = self.get_next_packet_info_for_interface(src_index, info) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 803 | if info is None: |
| 804 | return None |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 805 | if info.dst == dst_index: |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 806 | return info |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 807 | |
Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 808 | def assert_equal(self, real_value, expected_value, name_or_class=None): |
| 809 | if name_or_class is None: |
Klement Sekera | 239790f | 2017-02-16 10:53:53 +0100 | [diff] [blame] | 810 | self.assertEqual(real_value, expected_value) |
Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 811 | return |
| 812 | try: |
| 813 | msg = "Invalid %s: %d('%s') does not match expected value %d('%s')" |
| 814 | msg = msg % (getdoc(name_or_class).strip(), |
| 815 | real_value, str(name_or_class(real_value)), |
| 816 | expected_value, str(name_or_class(expected_value))) |
Klement Sekera | 13a83ef | 2018-03-21 12:35:51 +0100 | [diff] [blame] | 817 | except Exception: |
Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 818 | msg = "Invalid %s: %s does not match expected value %s" % ( |
| 819 | name_or_class, real_value, expected_value) |
| 820 | |
| 821 | self.assertEqual(real_value, expected_value, msg) |
| 822 | |
Klement Sekera | b17dd96 | 2017-01-09 07:43:48 +0100 | [diff] [blame] | 823 | def assert_in_range(self, |
| 824 | real_value, |
| 825 | expected_min, |
| 826 | expected_max, |
| 827 | name=None): |
Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 828 | if name is None: |
| 829 | msg = None |
| 830 | else: |
| 831 | msg = "Invalid %s: %s out of range <%s,%s>" % ( |
| 832 | name, real_value, expected_min, expected_max) |
| 833 | self.assertTrue(expected_min <= real_value <= expected_max, msg) |
| 834 | |
Klement Sekera | d81ae41 | 2018-05-16 10:52:54 +0200 | [diff] [blame] | 835 | def assert_packet_checksums_valid(self, packet, |
| 836 | ignore_zero_udp_checksums=True): |
Klement Sekera | 31da2e3 | 2018-06-24 22:49:55 +0200 | [diff] [blame] | 837 | received = packet.__class__(str(packet)) |
| 838 | self.logger.debug( |
| 839 | ppp("Verifying packet checksums for packet:", received)) |
Klement Sekera | d81ae41 | 2018-05-16 10:52:54 +0200 | [diff] [blame] | 840 | udp_layers = ['UDP', 'UDPerror'] |
| 841 | checksum_fields = ['cksum', 'chksum'] |
| 842 | checksums = [] |
| 843 | counter = 0 |
Klement Sekera | 31da2e3 | 2018-06-24 22:49:55 +0200 | [diff] [blame] | 844 | temp = received.__class__(str(received)) |
Klement Sekera | d81ae41 | 2018-05-16 10:52:54 +0200 | [diff] [blame] | 845 | while True: |
| 846 | layer = temp.getlayer(counter) |
| 847 | if layer: |
| 848 | for cf in checksum_fields: |
| 849 | if hasattr(layer, cf): |
| 850 | if ignore_zero_udp_checksums and \ |
Ole Troan | a45dc07 | 2018-12-21 16:04:22 +0100 | [diff] [blame] | 851 | 0 == getattr(layer, cf) and \ |
| 852 | layer.name in udp_layers: |
Klement Sekera | d81ae41 | 2018-05-16 10:52:54 +0200 | [diff] [blame] | 853 | continue |
| 854 | delattr(layer, cf) |
| 855 | checksums.append((counter, cf)) |
| 856 | else: |
| 857 | break |
| 858 | counter = counter + 1 |
Klement Sekera | 31da2e3 | 2018-06-24 22:49:55 +0200 | [diff] [blame] | 859 | if 0 == len(checksums): |
| 860 | return |
Klement Sekera | d81ae41 | 2018-05-16 10:52:54 +0200 | [diff] [blame] | 861 | temp = temp.__class__(str(temp)) |
| 862 | for layer, cf in checksums: |
Klement Sekera | 31da2e3 | 2018-06-24 22:49:55 +0200 | [diff] [blame] | 863 | calc_sum = getattr(temp[layer], cf) |
| 864 | self.assert_equal( |
| 865 | getattr(received[layer], cf), calc_sum, |
| 866 | "packet checksum on layer #%d: %s" % (layer, temp[layer].name)) |
| 867 | self.logger.debug( |
| 868 | "Checksum field `%s` on `%s` layer has correct value `%s`" % |
| 869 | (cf, temp[layer].name, calc_sum)) |
Klement Sekera | d81ae41 | 2018-05-16 10:52:54 +0200 | [diff] [blame] | 870 | |
| 871 | def assert_checksum_valid(self, received_packet, layer, |
| 872 | field_name='chksum', |
| 873 | ignore_zero_checksum=False): |
| 874 | """ Check checksum of received packet on given layer """ |
| 875 | received_packet_checksum = getattr(received_packet[layer], field_name) |
| 876 | if ignore_zero_checksum and 0 == received_packet_checksum: |
| 877 | return |
| 878 | recalculated = received_packet.__class__(str(received_packet)) |
| 879 | delattr(recalculated[layer], field_name) |
| 880 | recalculated = recalculated.__class__(str(recalculated)) |
| 881 | self.assert_equal(received_packet_checksum, |
| 882 | getattr(recalculated[layer], field_name), |
| 883 | "packet checksum on layer: %s" % layer) |
| 884 | |
| 885 | def assert_ip_checksum_valid(self, received_packet, |
| 886 | ignore_zero_checksum=False): |
| 887 | self.assert_checksum_valid(received_packet, 'IP', |
| 888 | ignore_zero_checksum=ignore_zero_checksum) |
| 889 | |
| 890 | def assert_tcp_checksum_valid(self, received_packet, |
| 891 | ignore_zero_checksum=False): |
| 892 | self.assert_checksum_valid(received_packet, 'TCP', |
| 893 | ignore_zero_checksum=ignore_zero_checksum) |
| 894 | |
| 895 | def assert_udp_checksum_valid(self, received_packet, |
| 896 | ignore_zero_checksum=True): |
| 897 | self.assert_checksum_valid(received_packet, 'UDP', |
| 898 | ignore_zero_checksum=ignore_zero_checksum) |
| 899 | |
| 900 | def assert_embedded_icmp_checksum_valid(self, received_packet): |
| 901 | if received_packet.haslayer(IPerror): |
| 902 | self.assert_checksum_valid(received_packet, 'IPerror') |
| 903 | if received_packet.haslayer(TCPerror): |
| 904 | self.assert_checksum_valid(received_packet, 'TCPerror') |
| 905 | if received_packet.haslayer(UDPerror): |
| 906 | self.assert_checksum_valid(received_packet, 'UDPerror', |
| 907 | ignore_zero_checksum=True) |
| 908 | if received_packet.haslayer(ICMPerror): |
| 909 | self.assert_checksum_valid(received_packet, 'ICMPerror') |
| 910 | |
| 911 | def assert_icmp_checksum_valid(self, received_packet): |
| 912 | self.assert_checksum_valid(received_packet, 'ICMP') |
| 913 | self.assert_embedded_icmp_checksum_valid(received_packet) |
| 914 | |
| 915 | def assert_icmpv6_checksum_valid(self, pkt): |
| 916 | if pkt.haslayer(ICMPv6DestUnreach): |
| 917 | self.assert_checksum_valid(pkt, 'ICMPv6DestUnreach', 'cksum') |
| 918 | self.assert_embedded_icmp_checksum_valid(pkt) |
| 919 | if pkt.haslayer(ICMPv6EchoRequest): |
| 920 | self.assert_checksum_valid(pkt, 'ICMPv6EchoRequest', 'cksum') |
| 921 | if pkt.haslayer(ICMPv6EchoReply): |
| 922 | self.assert_checksum_valid(pkt, 'ICMPv6EchoReply', 'cksum') |
| 923 | |
Klement Sekera | f37c3ba | 2018-11-08 11:24:34 +0100 | [diff] [blame] | 924 | def assert_packet_counter_equal(self, counter, expected_value): |
Klement Sekera | 14d7e90 | 2018-12-10 13:46:09 +0100 | [diff] [blame] | 925 | if counter.startswith("/"): |
| 926 | counter_value = self.statistics.get_counter(counter) |
| 927 | self.assert_equal(counter_value, expected_value, |
| 928 | "packet counter `%s'" % counter) |
| 929 | else: |
| 930 | counters = self.vapi.cli("sh errors").split('\n') |
| 931 | counter_value = -1 |
| 932 | for i in range(1, len(counters) - 1): |
| 933 | results = counters[i].split() |
| 934 | if results[1] == counter: |
| 935 | counter_value = int(results[0]) |
| 936 | break |
Klement Sekera | f37c3ba | 2018-11-08 11:24:34 +0100 | [diff] [blame] | 937 | |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 938 | @classmethod |
| 939 | def sleep(cls, timeout, remark=None): |
| 940 | if hasattr(cls, 'logger'): |
Paul Vinciguerra | 6919b0d | 2018-12-09 15:37:04 -0800 | [diff] [blame] | 941 | cls.logger.debug("Starting sleep for %es (%s)", timeout, remark) |
Klement Sekera | 3cfa558 | 2017-04-19 07:10:58 +0000 | [diff] [blame] | 942 | before = time.time() |
Klement Sekera | a57a970 | 2017-02-02 06:58:07 +0100 | [diff] [blame] | 943 | time.sleep(timeout) |
Klement Sekera | 3cfa558 | 2017-04-19 07:10:58 +0000 | [diff] [blame] | 944 | after = time.time() |
Paul Vinciguerra | 6919b0d | 2018-12-09 15:37:04 -0800 | [diff] [blame] | 945 | if hasattr(cls, 'logger') and after - before > 2 * timeout: |
Klement Sekera | 60c1223 | 2017-07-18 10:33:06 +0200 | [diff] [blame] | 946 | cls.logger.error("unexpected time.sleep() result - " |
Paul Vinciguerra | 6919b0d | 2018-12-09 15:37:04 -0800 | [diff] [blame] | 947 | "slept for %es instead of ~%es!", |
| 948 | after - before, timeout) |
Klement Sekera | 3cfa558 | 2017-04-19 07:10:58 +0000 | [diff] [blame] | 949 | if hasattr(cls, 'logger'): |
| 950 | cls.logger.debug( |
Paul Vinciguerra | 6919b0d | 2018-12-09 15:37:04 -0800 | [diff] [blame] | 951 | "Finished sleep (%s) - slept %es (wanted %es)", |
| 952 | remark, after - before, timeout) |
Klement Sekera | a57a970 | 2017-02-02 06:58:07 +0100 | [diff] [blame] | 953 | |
Neale Ranns | 947ea62 | 2018-06-07 23:48:20 -0700 | [diff] [blame] | 954 | def send_and_assert_no_replies(self, intf, pkts, remark="", timeout=None): |
Neale Ranns | 52fae86 | 2018-01-08 04:41:42 -0800 | [diff] [blame] | 955 | self.vapi.cli("clear trace") |
| 956 | intf.add_stream(pkts) |
| 957 | self.pg_enable_capture(self.pg_interfaces) |
| 958 | self.pg_start() |
Neale Ranns | 947ea62 | 2018-06-07 23:48:20 -0700 | [diff] [blame] | 959 | if not timeout: |
| 960 | timeout = 1 |
Neale Ranns | 52fae86 | 2018-01-08 04:41:42 -0800 | [diff] [blame] | 961 | for i in self.pg_interfaces: |
| 962 | i.get_capture(0, timeout=timeout) |
| 963 | i.assert_nothing_captured(remark=remark) |
| 964 | timeout = 0.1 |
| 965 | |
| 966 | def send_and_expect(self, input, pkts, output): |
| 967 | self.vapi.cli("clear trace") |
| 968 | input.add_stream(pkts) |
| 969 | self.pg_enable_capture(self.pg_interfaces) |
| 970 | self.pg_start() |
Paul Vinciguerra | 8aeb220 | 2019-01-07 16:29:26 -0800 | [diff] [blame] | 971 | rx = output.get_capture(len(pkts)) |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 972 | return rx |
| 973 | |
| 974 | def send_and_expect_only(self, input, pkts, output, timeout=None): |
| 975 | self.vapi.cli("clear trace") |
| 976 | input.add_stream(pkts) |
| 977 | self.pg_enable_capture(self.pg_interfaces) |
| 978 | self.pg_start() |
Paul Vinciguerra | 8aeb220 | 2019-01-07 16:29:26 -0800 | [diff] [blame] | 979 | rx = output.get_capture(len(pkts)) |
| 980 | outputs = [output] |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 981 | if not timeout: |
| 982 | timeout = 1 |
| 983 | for i in self.pg_interfaces: |
| 984 | if i not in outputs: |
| 985 | i.get_capture(0, timeout=timeout) |
| 986 | i.assert_nothing_captured() |
| 987 | timeout = 0.1 |
| 988 | |
Neale Ranns | 52fae86 | 2018-01-08 04:41:42 -0800 | [diff] [blame] | 989 | return rx |
| 990 | |
Paul Vinciguerra | 087c811 | 2018-12-15 08:03:09 -0800 | [diff] [blame] | 991 | def runTest(self): |
| 992 | """ unittest calls runTest when TestCase is instantiated without a |
| 993 | test case. Use case: Writing unittests against VppTestCase""" |
| 994 | pass |
| 995 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 996 | |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 997 | def get_testcase_doc_name(test): |
| 998 | return getdoc(test.__class__).splitlines()[0] |
| 999 | |
| 1000 | |
Ole Trøan | 5ba9159 | 2018-11-22 10:01:09 +0000 | [diff] [blame] | 1001 | def get_test_description(descriptions, test): |
| 1002 | short_description = test.shortDescription() |
| 1003 | if descriptions and short_description: |
| 1004 | return short_description |
| 1005 | else: |
| 1006 | return str(test) |
| 1007 | |
| 1008 | |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1009 | class TestCaseInfo(object): |
| 1010 | def __init__(self, logger, tempdir, vpp_pid, vpp_bin_path): |
| 1011 | self.logger = logger |
| 1012 | self.tempdir = tempdir |
| 1013 | self.vpp_pid = vpp_pid |
| 1014 | self.vpp_bin_path = vpp_bin_path |
| 1015 | self.core_crash_test = None |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 1016 | |
| 1017 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1018 | class VppTestResult(unittest.TestResult): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1019 | """ |
| 1020 | @property result_string |
| 1021 | String variable to store the test case result string. |
| 1022 | @property errors |
| 1023 | List variable containing 2-tuples of TestCase instances and strings |
| 1024 | holding formatted tracebacks. Each tuple represents a test which |
| 1025 | raised an unexpected exception. |
| 1026 | @property failures |
| 1027 | List variable containing 2-tuples of TestCase instances and strings |
| 1028 | holding formatted tracebacks. Each tuple represents a test where |
| 1029 | a failure was explicitly signalled using the TestCase.assert*() |
| 1030 | methods. |
| 1031 | """ |
| 1032 | |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1033 | failed_test_cases_info = set() |
| 1034 | core_crash_test_cases_info = set() |
| 1035 | current_test_case_info = None |
| 1036 | |
juraj.linkes | abec012 | 2018-11-16 17:28:56 +0100 | [diff] [blame] | 1037 | def __init__(self, stream, descriptions, verbosity, runner): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1038 | """ |
Klement Sekera | da505f6 | 2017-01-04 12:58:53 +0100 | [diff] [blame] | 1039 | :param stream File descriptor to store where to report test results. |
| 1040 | Set to the standard error stream by default. |
| 1041 | :param descriptions Boolean variable to store information if to use |
| 1042 | test case descriptions. |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1043 | :param verbosity Integer variable to store required verbosity level. |
| 1044 | """ |
Paul Vinciguerra | dd3c5d2 | 2019-01-13 16:09:10 -0800 | [diff] [blame] | 1045 | super(VppTestResult, self).__init__(stream, descriptions, verbosity) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1046 | self.stream = stream |
| 1047 | self.descriptions = descriptions |
| 1048 | self.verbosity = verbosity |
| 1049 | self.result_string = None |
juraj.linkes | abec012 | 2018-11-16 17:28:56 +0100 | [diff] [blame] | 1050 | self.runner = runner |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1051 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1052 | def addSuccess(self, test): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1053 | """ |
| 1054 | Record a test succeeded result |
| 1055 | |
| 1056 | :param test: |
| 1057 | |
| 1058 | """ |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1059 | if self.current_test_case_info: |
| 1060 | self.current_test_case_info.logger.debug( |
| 1061 | "--- addSuccess() %s.%s(%s) called" % (test.__class__.__name__, |
| 1062 | test._testMethodName, |
| 1063 | test._testMethodDoc)) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1064 | unittest.TestResult.addSuccess(self, test) |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 1065 | self.result_string = colorize("OK", GREEN) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1066 | |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 1067 | self.send_result_through_pipe(test, PASS) |
| 1068 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1069 | def addSkip(self, test, reason): |
| 1070 | """ |
| 1071 | Record a test skipped. |
| 1072 | |
| 1073 | :param test: |
| 1074 | :param reason: |
| 1075 | |
| 1076 | """ |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1077 | if self.current_test_case_info: |
| 1078 | self.current_test_case_info.logger.debug( |
| 1079 | "--- addSkip() %s.%s(%s) called, reason is %s" % |
| 1080 | (test.__class__.__name__, test._testMethodName, |
| 1081 | test._testMethodDoc, reason)) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1082 | unittest.TestResult.addSkip(self, test, reason) |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 1083 | self.result_string = colorize("SKIP", YELLOW) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1084 | |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 1085 | self.send_result_through_pipe(test, SKIP) |
| 1086 | |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1087 | def symlink_failed(self): |
| 1088 | if self.current_test_case_info: |
Klement Sekera | f413bef | 2017-08-15 07:09:02 +0200 | [diff] [blame] | 1089 | try: |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 1090 | failed_dir = os.getenv('FAILED_DIR') |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1091 | link_path = os.path.join( |
| 1092 | failed_dir, |
| 1093 | '%s-FAILED' % |
| 1094 | os.path.basename(self.current_test_case_info.tempdir)) |
| 1095 | if self.current_test_case_info.logger: |
| 1096 | self.current_test_case_info.logger.debug( |
| 1097 | "creating a link to the failed test") |
| 1098 | self.current_test_case_info.logger.debug( |
| 1099 | "os.symlink(%s, %s)" % |
| 1100 | (self.current_test_case_info.tempdir, link_path)) |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 1101 | if os.path.exists(link_path): |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1102 | if self.current_test_case_info.logger: |
| 1103 | self.current_test_case_info.logger.debug( |
| 1104 | 'symlink already exists') |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 1105 | else: |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1106 | os.symlink(self.current_test_case_info.tempdir, link_path) |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 1107 | |
Klement Sekera | f413bef | 2017-08-15 07:09:02 +0200 | [diff] [blame] | 1108 | except Exception as e: |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1109 | if self.current_test_case_info.logger: |
| 1110 | self.current_test_case_info.logger.error(e) |
Klement Sekera | f413bef | 2017-08-15 07:09:02 +0200 | [diff] [blame] | 1111 | |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 1112 | def send_result_through_pipe(self, test, result): |
| 1113 | if hasattr(self, 'test_framework_result_pipe'): |
| 1114 | pipe = self.test_framework_result_pipe |
juraj.linkes | 5e2c54d | 2018-08-30 10:51:45 +0200 | [diff] [blame] | 1115 | if pipe: |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 1116 | pipe.send((test.id(), result)) |
juraj.linkes | 5e2c54d | 2018-08-30 10:51:45 +0200 | [diff] [blame] | 1117 | |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1118 | def log_error(self, test, err, fn_name): |
| 1119 | if self.current_test_case_info: |
| 1120 | if isinstance(test, unittest.suite._ErrorHolder): |
| 1121 | test_name = test.description |
| 1122 | else: |
| 1123 | test_name = '%s.%s(%s)' % (test.__class__.__name__, |
| 1124 | test._testMethodName, |
| 1125 | test._testMethodDoc) |
| 1126 | self.current_test_case_info.logger.debug( |
| 1127 | "--- %s() %s called, err is %s" % |
| 1128 | (fn_name, test_name, err)) |
| 1129 | self.current_test_case_info.logger.debug( |
| 1130 | "formatted exception is:\n%s" % |
| 1131 | "".join(format_exception(*err))) |
| 1132 | |
| 1133 | def add_error(self, test, err, unittest_fn, error_type): |
| 1134 | if error_type == FAIL: |
| 1135 | self.log_error(test, err, 'addFailure') |
| 1136 | error_type_str = colorize("FAIL", RED) |
| 1137 | elif error_type == ERROR: |
| 1138 | self.log_error(test, err, 'addError') |
| 1139 | error_type_str = colorize("ERROR", RED) |
| 1140 | else: |
| 1141 | raise Exception('Error type %s cannot be used to record an ' |
| 1142 | 'error or a failure' % error_type) |
| 1143 | |
| 1144 | unittest_fn(self, test, err) |
| 1145 | if self.current_test_case_info: |
| 1146 | self.result_string = "%s [ temp dir used by test case: %s ]" % \ |
| 1147 | (error_type_str, |
| 1148 | self.current_test_case_info.tempdir) |
| 1149 | self.symlink_failed() |
| 1150 | self.failed_test_cases_info.add(self.current_test_case_info) |
| 1151 | if is_core_present(self.current_test_case_info.tempdir): |
| 1152 | if not self.current_test_case_info.core_crash_test: |
| 1153 | if isinstance(test, unittest.suite._ErrorHolder): |
| 1154 | test_name = str(test) |
| 1155 | else: |
| 1156 | test_name = "'{}' ({})".format( |
| 1157 | get_testcase_doc_name(test), test.id()) |
| 1158 | self.current_test_case_info.core_crash_test = test_name |
| 1159 | self.core_crash_test_cases_info.add( |
| 1160 | self.current_test_case_info) |
| 1161 | else: |
| 1162 | self.result_string = '%s [no temp dir]' % error_type_str |
| 1163 | |
| 1164 | self.send_result_through_pipe(test, error_type) |
| 1165 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1166 | def addFailure(self, test, err): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1167 | """ |
| 1168 | Record a test failed result |
| 1169 | |
| 1170 | :param test: |
| 1171 | :param err: error message |
| 1172 | |
| 1173 | """ |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1174 | self.add_error(test, err, unittest.TestResult.addFailure, FAIL) |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 1175 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1176 | def addError(self, test, err): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1177 | """ |
| 1178 | Record a test error result |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1179 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1180 | :param test: |
| 1181 | :param err: error message |
| 1182 | |
| 1183 | """ |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1184 | self.add_error(test, err, unittest.TestResult.addError, ERROR) |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 1185 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1186 | def getDescription(self, test): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1187 | """ |
| 1188 | Get test description |
| 1189 | |
| 1190 | :param test: |
| 1191 | :returns: test description |
| 1192 | |
| 1193 | """ |
Ole Trøan | 5ba9159 | 2018-11-22 10:01:09 +0000 | [diff] [blame] | 1194 | return get_test_description(self.descriptions, test) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1195 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1196 | def startTest(self, test): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1197 | """ |
| 1198 | Start a test |
| 1199 | |
| 1200 | :param test: |
| 1201 | |
| 1202 | """ |
Paul Vinciguerra | dd3c5d2 | 2019-01-13 16:09:10 -0800 | [diff] [blame] | 1203 | |
| 1204 | def print_header(test): |
| 1205 | if not hasattr(test.__class__, '_header_printed'): |
| 1206 | print(double_line_delim) |
| 1207 | print(colorize(getdoc(test).splitlines()[0], GREEN)) |
| 1208 | print(double_line_delim) |
| 1209 | test.__class__._header_printed = True |
| 1210 | |
| 1211 | print_header(test) |
juraj.linkes | 40dd73b | 2018-09-21 13:55:16 +0200 | [diff] [blame] | 1212 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1213 | unittest.TestResult.startTest(self, test) |
| 1214 | if self.verbosity > 0: |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1215 | self.stream.writeln( |
| 1216 | "Starting " + self.getDescription(test) + " ...") |
| 1217 | self.stream.writeln(single_line_delim) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1218 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1219 | def stopTest(self, test): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1220 | """ |
juraj.linkes | 5e2c54d | 2018-08-30 10:51:45 +0200 | [diff] [blame] | 1221 | Called when the given test has been run |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1222 | |
| 1223 | :param test: |
| 1224 | |
| 1225 | """ |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1226 | unittest.TestResult.stopTest(self, test) |
| 1227 | if self.verbosity > 0: |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1228 | self.stream.writeln(single_line_delim) |
Klement Sekera | 52e84f3 | 2017-01-13 07:25:25 +0100 | [diff] [blame] | 1229 | self.stream.writeln("%-73s%s" % (self.getDescription(test), |
Klement Sekera | da505f6 | 2017-01-04 12:58:53 +0100 | [diff] [blame] | 1230 | self.result_string)) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1231 | self.stream.writeln(single_line_delim) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1232 | else: |
Klement Sekera | 52e84f3 | 2017-01-13 07:25:25 +0100 | [diff] [blame] | 1233 | self.stream.writeln("%-73s%s" % (self.getDescription(test), |
Klement Sekera | da505f6 | 2017-01-04 12:58:53 +0100 | [diff] [blame] | 1234 | self.result_string)) |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 1235 | |
| 1236 | self.send_result_through_pipe(test, TEST_RUN) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1237 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1238 | def printErrors(self): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1239 | """ |
| 1240 | Print errors from running the test case |
| 1241 | """ |
juraj.linkes | abec012 | 2018-11-16 17:28:56 +0100 | [diff] [blame] | 1242 | if len(self.errors) > 0 or len(self.failures) > 0: |
| 1243 | self.stream.writeln() |
| 1244 | self.printErrorList('ERROR', self.errors) |
| 1245 | self.printErrorList('FAIL', self.failures) |
| 1246 | |
| 1247 | # ^^ that is the last output from unittest before summary |
| 1248 | if not self.runner.print_summary: |
| 1249 | devnull = unittest.runner._WritelnDecorator(open(os.devnull, 'w')) |
| 1250 | self.stream = devnull |
| 1251 | self.runner.stream = devnull |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1252 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1253 | def printErrorList(self, flavour, errors): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1254 | """ |
| 1255 | Print error list to the output stream together with error type |
| 1256 | and test case description. |
| 1257 | |
| 1258 | :param flavour: error type |
| 1259 | :param errors: iterable errors |
| 1260 | |
| 1261 | """ |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1262 | for test, err in errors: |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1263 | self.stream.writeln(double_line_delim) |
| 1264 | self.stream.writeln("%s: %s" % |
| 1265 | (flavour, self.getDescription(test))) |
| 1266 | self.stream.writeln(single_line_delim) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1267 | self.stream.writeln("%s" % err) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1268 | |
| 1269 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1270 | class VppTestRunner(unittest.TextTestRunner): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1271 | """ |
Klement Sekera | 104543f | 2017-02-03 07:29:43 +0100 | [diff] [blame] | 1272 | A basic test runner implementation which prints results to standard error. |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1273 | """ |
Paul Vinciguerra | 6919b0d | 2018-12-09 15:37:04 -0800 | [diff] [blame] | 1274 | |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1275 | @property |
| 1276 | def resultclass(self): |
| 1277 | """Class maintaining the results of the tests""" |
| 1278 | return VppTestResult |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1279 | |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 1280 | def __init__(self, keep_alive_pipe=None, descriptions=True, verbosity=1, |
juraj.linkes | cae64f8 | 2018-09-19 15:01:47 +0200 | [diff] [blame] | 1281 | result_pipe=None, failfast=False, buffer=False, |
juraj.linkes | abec012 | 2018-11-16 17:28:56 +0100 | [diff] [blame] | 1282 | resultclass=None, print_summary=True): |
Klement Sekera | 7a161da | 2017-01-17 13:42:48 +0100 | [diff] [blame] | 1283 | # ignore stream setting here, use hard-coded stdout to be in sync |
| 1284 | # with prints from VppTestCase methods ... |
| 1285 | super(VppTestRunner, self).__init__(sys.stdout, descriptions, |
| 1286 | verbosity, failfast, buffer, |
| 1287 | resultclass) |
juraj.linkes | ccfead6 | 2018-11-21 13:20:43 +0100 | [diff] [blame] | 1288 | KeepAliveReporter.pipe = keep_alive_pipe |
Klement Sekera | 104543f | 2017-02-03 07:29:43 +0100 | [diff] [blame] | 1289 | |
juraj.linkes | abec012 | 2018-11-16 17:28:56 +0100 | [diff] [blame] | 1290 | self.orig_stream = self.stream |
| 1291 | self.resultclass.test_framework_result_pipe = result_pipe |
| 1292 | |
| 1293 | self.print_summary = print_summary |
| 1294 | |
| 1295 | def _makeResult(self): |
| 1296 | return self.resultclass(self.stream, |
| 1297 | self.descriptions, |
| 1298 | self.verbosity, |
| 1299 | self) |
juraj.linkes | 5e2c54d | 2018-08-30 10:51:45 +0200 | [diff] [blame] | 1300 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 1301 | def run(self, test): |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 1302 | """ |
| 1303 | Run the tests |
| 1304 | |
| 1305 | :param test: |
| 1306 | |
| 1307 | """ |
Klement Sekera | 3658adc | 2017-06-07 08:19:47 +0200 | [diff] [blame] | 1308 | faulthandler.enable() # emit stack trace to stderr if killed by signal |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 1309 | |
| 1310 | result = super(VppTestRunner, self).run(test) |
juraj.linkes | abec012 | 2018-11-16 17:28:56 +0100 | [diff] [blame] | 1311 | if not self.print_summary: |
| 1312 | self.stream = self.orig_stream |
| 1313 | result.stream = self.orig_stream |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 1314 | return result |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 1315 | |
| 1316 | |
| 1317 | class Worker(Thread): |
Dave Wallace | 42996c0 | 2018-02-26 14:40:13 -0500 | [diff] [blame] | 1318 | def __init__(self, args, logger, env={}): |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 1319 | self.logger = logger |
| 1320 | self.args = args |
| 1321 | self.result = None |
Dave Wallace | 42996c0 | 2018-02-26 14:40:13 -0500 | [diff] [blame] | 1322 | self.env = copy.deepcopy(env) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 1323 | super(Worker, self).__init__() |
| 1324 | |
| 1325 | def run(self): |
| 1326 | executable = self.args[0] |
| 1327 | self.logger.debug("Running executable w/args `%s'" % self.args) |
| 1328 | env = os.environ.copy() |
Dave Wallace | cfcf2f4 | 2018-02-16 18:31:56 -0500 | [diff] [blame] | 1329 | env.update(self.env) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 1330 | env["CK_LOG_FILE_NAME"] = "-" |
| 1331 | self.process = subprocess.Popen( |
| 1332 | self.args, shell=False, env=env, preexec_fn=os.setpgrp, |
| 1333 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| 1334 | out, err = self.process.communicate() |
| 1335 | self.logger.debug("Finished running `%s'" % executable) |
| 1336 | self.logger.info("Return code is `%s'" % self.process.returncode) |
| 1337 | self.logger.info(single_line_delim) |
| 1338 | self.logger.info("Executable `%s' wrote to stdout:" % executable) |
| 1339 | self.logger.info(single_line_delim) |
| 1340 | self.logger.info(out) |
| 1341 | self.logger.info(single_line_delim) |
| 1342 | self.logger.info("Executable `%s' wrote to stderr:" % executable) |
| 1343 | self.logger.info(single_line_delim) |
Klement Sekera | de0203e | 2018-02-22 19:21:27 +0100 | [diff] [blame] | 1344 | self.logger.info(err) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 1345 | self.logger.info(single_line_delim) |
| 1346 | self.result = self.process.returncode |
Paul Vinciguerra | dd3c5d2 | 2019-01-13 16:09:10 -0800 | [diff] [blame] | 1347 | |
| 1348 | if __name__ == '__main__': |
| 1349 | pass |