summaryrefslogtreecommitdiffstats
path: root/nfvbench/specs.py
diff options
context:
space:
mode:
authorahothan <ahothan@cisco.com>2018-10-07 15:55:25 -0700
committerahothan <ahothan@cisco.com>2018-10-08 10:44:31 -0700
commit391dcf76fefb747888a3411ae3b8df7b1ad26685 (patch)
treeb823ae8a5f0e837bb285f53acb1502e0aad1bdf0 /nfvbench/specs.py
parent99260f95219301bb5c0b58921e793bcad6ec4990 (diff)
2.0 beta NFVBENCH-91 Allow multi-chaining with separate edge networks
Includes complete refactoring of code Beta for NFVbench 2.0 Change-Id: I2997f0fb7722d5ac626cd11a68692ae458c7676e Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'nfvbench/specs.py')
-rw-r--r--nfvbench/specs.py18
1 files changed, 5 insertions, 13 deletions
diff --git a/nfvbench/specs.py b/nfvbench/specs.py
index a84a55f..75fe703 100644
--- a/nfvbench/specs.py
+++ b/nfvbench/specs.py
@@ -17,11 +17,12 @@
class Encaps(object):
VLAN = "VLAN"
VxLAN = "VxLAN"
- BASIC = "BASIC"
+ NO_ENCAPS = "NONE"
encaps_mapping = {
'VLAN': VLAN,
- 'VXLAN': VxLAN
+ 'VXLAN': VxLAN,
+ 'NONE': NO_ENCAPS
}
@classmethod
@@ -33,22 +34,13 @@ class ChainType(object):
PVP = "PVP"
PVVP = "PVVP"
EXT = "EXT"
-
- chain_mapping = {
- 'PVP': PVP,
- 'PVVP': PVVP,
- 'EXT': EXT
- }
-
- @classmethod
- def get_chain_type(cls, chain):
- return cls.chain_mapping.get(chain.upper(), None)
+ names = [EXT, PVP, PVVP]
class OpenStackSpec(object):
def __init__(self):
self.__vswitch = "BASIC"
- self.__encaps = Encaps.BASIC
+ self.__encaps = Encaps.NO_ENCAPS
@property
def vswitch(self):