CSIT-229: ip4-lispgpe-ip4
[csit.git] / resources / libraries / python / constants.py
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14
15 class Constants(object):
16     # OpenVPP testing directory location at topology nodes
17     REMOTE_FW_DIR = '/tmp/openvpp-testing'
18
19     # shell scripts location
20     RESOURCES_LIB_SH = 'resources/libraries/bash'
21
22     # vat templates location
23     RESOURCES_TPL_VAT = 'resources/templates/vat'
24
25     # OpenVPP VAT binary name
26     VAT_BIN_NAME = 'vpp_api_test'
27
28     # Honeycomb directory location at topology nodes:
29     REMOTE_HC_DIR = '/opt/honeycomb/vpp-integration-karaf-1.0.0-SNAPSHOT'
30
31     # Honeycomb templates location
32     RESOURCES_TPL_HC = 'resources/templates/honeycomb'