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