X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FConstants.py;h=e8209544e8ead4dea78d6a643557f5f5063a9339;hb=ac37499ef8754d7ac8f6350ab80d389727bbcd03;hp=8a22a4288d78f8bf92e110b044d121c839b802e2;hpb=96a3c5c7ace8357d26e833a46845486787aa75c3;p=csit.git diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index 8a22a4288d..e8209544e8 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -34,38 +34,56 @@ class Constants(object): # vat templates location RESOURCES_TPL_VAT = 'resources/templates/vat' + # Kubernetes templates location + RESOURCES_TPL_K8S = 'resources/templates/kubernetes' + + # KernelVM templates location + RESOURCES_TPL_VM = 'resources/templates/vm' + + # Container templates location + RESOURCES_TPL_CONTAINER = 'resources/templates/container' + + # HTTP Server www root directory + RESOURCES_TP_WRK_WWW = 'resources/traffic_profiles/wrk/www' + # OpenVPP VAT binary name VAT_BIN_NAME = 'vpp_api_test' # VPP service unit name VPP_UNIT = 'vpp' - # QEMU version to install - QEMU_INSTALL_VERSION = 'qemu-2.11.2' + # Number of system CPU cores. + CPU_CNT_SYSTEM = 1 - # QEMU install directory - QEMU_INSTALL_DIR = '/opt/qemu-2.11.2' + # Number of vswitch main thread CPU cores. + CPU_CNT_MAIN = 1 - # QEMU performance test VM kernel image path - QEMU_PERF_VM_KERNEL = '/opt/boot/vmlinuz' + # QEMU binary path + QEMU_BIN_PATH = '/usr/bin' - # QEMU performance test VM nested image path - QEMU_PERF_VM_IMAGE = '/var/lib/vm/csit-nested-1.7.img' + # QEMU VM kernel image path + QEMU_VM_KERNEL = '/opt/boot/vmlinuz' - # QEMU performance test VM DPDK path - QEMU_PERF_VM_DPDK = '/opt/dpdk-19.02' + # QEMU VM kernel initrd path + QEMU_VM_KERNEL_INITRD = '/opt/boot/initrd.img' - # TRex install version - TREX_INSTALL_VERSION = '2.35' + # QEMU VM nested image path + QEMU_VM_IMAGE = '/var/lib/vm/vhost-nested.img' - # TRex install directory - TREX_INSTALL_DIR = '/opt/trex-core-2.35' + # QEMU VM DPDK path + QEMU_VM_DPDK = '/opt/dpdk-19.02' - # Kubernetes templates location - RESOURCES_TPL_K8S = 'resources/templates/kubernetes' + # Docker container SUT image + DOCKER_SUT_IMAGE_UBUNTU = 'snergster/csit-sut:latest' - # KernelVM templates location - RESOURCES_TPL_VM = 'resources/templates/vm' + # Docker container arm SUT image + DOCKER_SUT_IMAGE_UBUNTU_ARM = 'snergster/csit-arm-sut:latest' + + # TRex install version + TREX_INSTALL_VERSION = '2.54' + + # TRex install directory + TREX_INSTALL_DIR = '/opt/trex-core-2.54' # Honeycomb directory location at topology nodes: REMOTE_HC_DIR = '/opt/honeycomb' @@ -88,6 +106,15 @@ class Constants(object): # Core dump directory CORE_DUMP_DIR = '/tmp' + # Equivalent to ~0 used in vpp code + BITWISE_NON_ZERO = 0xffffffff + + # Default path to VPP API socket. + SOCKSVR_PATH = "/run/vpp/api.sock" + + # Global "kill switch" for CRC checking during runtime. + CRC_MISMATCH_FAILS_TEST = True + # Mapping from NIC name to its bps limit. # TODO: Implement logic to lower limits to TG NIC or software. Or PCI. NIC_NAME_TO_LIMIT = { @@ -99,6 +126,7 @@ class Constants(object): "Intel-X710": 10000000000, "Intel-XL710": 24500000000, "Intel-XXV710": 24500000000, + "virtual": 100000000, } # Suite file names use somewhat more rich (less readable) codes for NICs.