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