X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FConstants.py;h=e8209544e8ead4dea78d6a643557f5f5063a9339;hb=545216fdee77b0b9ddc8d5e8c0f2e5662cacea76;hp=ddff2b161cd26fee46cb2b5ec7b821397441a515;hpb=248d1a52e06622dc9eb1dfdd6ca9f6670b4c0bc3;p=csit.git diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index ddff2b161c..e8209544e8 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -43,6 +43,9 @@ class Constants(object): # 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' @@ -73,6 +76,9 @@ class Constants(object): # Docker container SUT image DOCKER_SUT_IMAGE_UBUNTU = 'snergster/csit-sut:latest' + # Docker container arm SUT image + DOCKER_SUT_IMAGE_UBUNTU_ARM = 'snergster/csit-arm-sut:latest' + # TRex install version TREX_INSTALL_VERSION = '2.54' @@ -103,8 +109,11 @@ class Constants(object): # Equivalent to ~0 used in vpp code BITWISE_NON_ZERO = 0xffffffff - # Maximum number of API calls per PapiExecutor execution - PAPI_MAX_API_BULK = 250 + # 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.