aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/network_services/traffic_profile/test_prox_acl.py
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2017-09-28 17:13:34 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-28 17:13:34 +0000
commit0db868278e13d21998bd677bfc782557d44ab381 (patch)
treeda68d24711262194f1d2a4f4753c1ea1a290b453 /tests/unit/network_services/traffic_profile/test_prox_acl.py
parentab4ee807fae82dc0b426dfdc562a72ed71ca18e0 (diff)
parentce9b1175dd9e382c623ee91755b1943eaf0e6cdb (diff)
Merge "Addition of Prox NSB BNG and BNG-QoS test"
Diffstat (limited to 'tests/unit/network_services/traffic_profile/test_prox_acl.py')
-rw-r--r--tests/unit/network_services/traffic_profile/test_prox_acl.py16
1 files changed, 4 insertions, 12 deletions
diff --git a/tests/unit/network_services/traffic_profile/test_prox_acl.py b/tests/unit/network_services/traffic_profile/test_prox_acl.py
index a0c60186c..ef5bac0d5 100644
--- a/tests/unit/network_services/traffic_profile/test_prox_acl.py
+++ b/tests/unit/network_services/traffic_profile/test_prox_acl.py
@@ -59,18 +59,9 @@ class TestProxACLProfile(unittest.TestCase):
fail_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.6, 5.7, 5.8], 850, 1000, 123.4)
traffic_gen = mock.MagicMock()
- traffic_gen.run_test = target
-
- traffic_gen.resource_helper.run_test.side_effect = [
- success_tuple,
- success_tuple,
- success_tuple,
- fail_tuple,
- success_tuple,
- fail_tuple,
- fail_tuple,
- fail_tuple,
- ]
+
+ profile_helper = mock.MagicMock()
+ profile_helper.run_test = target
profile = ProxACLProfile(tp_config)
profile.init(mock.MagicMock())
@@ -82,5 +73,6 @@ class TestProxACLProfile(unittest.TestCase):
profile.duration = 30
profile.test_value = 100.0
profile.tolerated_loss = 100.0
+ profile._profile_helper = profile_helper
profile.run_test_with_pkt_size(traffic_gen, profile.pkt_size, profile.duration)