aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/NsimUtil.py
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2020-03-13 18:07:12 +0000
committerDave Wallace <dwallacelf@gmail.com>2020-03-19 13:23:16 +0000
commit2a35fc8cc4d840ccc616401e9af230aa50a7bb57 (patch)
tree05bdb8814f7ba249cf93107b7ef62f4e42349455 /resources/libraries/python/NsimUtil.py
parentdc605b79d078b1d3eb945cd9cabe047ba64e9a94 (diff)
perf: Fix broken hoststack tests
- Rename NSIM attribute names as changed in b9f4ba11 Change-Id: I6bc232c9954cfd9004d1d0cf22446957e78a641a Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'resources/libraries/python/NsimUtil.py')
-rw-r--r--resources/libraries/python/NsimUtil.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/resources/libraries/python/NsimUtil.py b/resources/libraries/python/NsimUtil.py
index bd319e668e..3662ba4892 100644
--- a/resources/libraries/python/NsimUtil.py
+++ b/resources/libraries/python/NsimUtil.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2019 Cisco and/or its affiliates.
+# Copyright (c) 2020 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
@@ -36,8 +36,8 @@ class NsimUtil():
vpp papi command fails.
"""
host = node[u"host"]
- if not vpp_nsim_attr[u"output_feature_enable"] \
- and not vpp_nsim_attr[u"cross_connect_feature_enable"]:
+ if not vpp_nsim_attr[u"output_nsim_enable"] \
+ and not vpp_nsim_attr[u"xc_nsim_enable"]:
raise RuntimeError(f"No NSIM features enabled on host {host}:\n"
f"vpp_nsim_attr = {vpp_nsim_attr}")
cmd = u"nsim_configure"
@@ -45,7 +45,7 @@ class NsimUtil():
delay_in_usec=vpp_nsim_attr[u"delay_in_usec"],
average_packet_size=vpp_nsim_attr[u"average_packet_size"],
bandwidth_in_bits_per_second=vpp_nsim_attr[
- u"bandwidth_in_bits_per_second"
+ u"bw_in_bits_per_second"
],
packets_per_drop=vpp_nsim_attr[u"packets_per_drop"],
)
@@ -53,10 +53,10 @@ class NsimUtil():
with PapiSocketExecutor(node) as papi_exec:
papi_exec.add(cmd, **args).get_reply(err_msg)
- if vpp_nsim_attr[u"output_feature_enable"]:
+ if vpp_nsim_attr[u"output_nsim_enable"]:
cmd = u"nsim_output_feature_enable_disable"
args = dict(
- enable_disable=vpp_nsim_attr[u"output_feature_enable"],
+ enable_disable=vpp_nsim_attr[u"output_nsim_enable"],
sw_if_index=InterfaceUtil.get_interface_index(node, interface0),
)
err_msg = f"Failed to enable NSIM output feature on " \
@@ -64,10 +64,10 @@ class NsimUtil():
with PapiSocketExecutor(node) as papi_exec:
papi_exec.add(cmd, **args).get_reply(err_msg)
- elif vpp_nsim_attr[u"cross_connect_feature_enable"]:
+ elif vpp_nsim_attr[u"xc_nsim_enable"]:
cmd = u"nsim_cross_connect_feature_enable_disable"
args = dict(
- enable_disable=vpp_nsim_attr[u"cross_connect_feature_enable"],
+ enable_disable=vpp_nsim_attr[u"xc_nsim_enable"],
sw_if_index0=InterfaceUtil.get_interface_index(node,
interface0),
sw_if_index1=InterfaceUtil.get_interface_index(node,