X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2Fconstants.py;h=051a21cf023bcded9eb08f495fb7bb299c736d13;hp=a119bdbf01af66a8de13dfa1ccf4f1ba12e11ebf;hb=dc0288317e241f6cb18b0978993a1e2f396c793c;hpb=ce469c1a7d56c2be639e5cecde961c4ef6354fb5 diff --git a/resources/libraries/python/constants.py b/resources/libraries/python/constants.py index a119bdbf01..051a21cf02 100644 --- a/resources/libraries/python/constants.py +++ b/resources/libraries/python/constants.py @@ -11,8 +11,12 @@ # See the License for the specific language governing permissions and # limitations under the License. +"""Constants used in CSIT.""" + class Constants(object): + """Constants used in CSIT.""" + # OpenVPP testing directory location at topology nodes REMOTE_FW_DIR = '/tmp/openvpp-testing' @@ -25,8 +29,20 @@ class Constants(object): # OpenVPP VAT binary name VAT_BIN_NAME = 'vpp_api_test' + # QEMU version to install + QEMU_INSTALL_VERSION = 'qemu-2.5.0' + + # QEMU install directory + QEMU_INSTALL_DIR = '/opt/qemu-2.5.0' + # Honeycomb directory location at topology nodes: - REMOTE_HC_DIR = '/opt/honeycomb/v3po-karaf-1.0.0-SNAPSHOT' + REMOTE_HC_DIR = '/opt/honeycomb' + + # Honeycomb persistence files location + REMOTE_HC_PERSIST = '/var/lib/honeycomb/persist' # Honeycomb templates location RESOURCES_TPL_HC = 'resources/templates/honeycomb' + + # ODL Client Restconf listener port + ODL_PORT = 8181