Standardized TRex client library path
[yardstick.git] / tests / unit / network_services / traffic_profile / test_prox_acl.py
1 # Copyright (c) 2017 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 #
15
16 from __future__ import absolute_import
17
18 import unittest
19 import mock
20
21 from tests.unit import STL_MOCKS
22
23 STLClient = mock.MagicMock()
24 stl_patch = mock.patch.dict("sys.modules", STL_MOCKS)
25 stl_patch.start()
26
27 if stl_patch:
28     from yardstick.network_services.traffic_profile.prox_ACL import ProxACLProfile
29     from yardstick.network_services.vnf_generic.vnf.prox_helpers import ProxTestDataTuple
30
31
32 class TestProxRampProfile(unittest.TestCase):
33
34     def test_run_test_with_pkt_size(self):
35         tp_config = {
36             'traffic_profile': {
37                 'upper_bound': 100.0,
38             },
39         }
40
41         success_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.1, 5.2, 5.3], 995, 1000, 123.4)
42         fail_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.6, 5.7, 5.8], 850, 1000, 123.4)
43
44         traffic_gen = mock.MagicMock()
45         traffic_gen.resource_helper.run_test.side_effect = [
46             success_tuple,
47             success_tuple,
48             success_tuple,
49             fail_tuple,
50             success_tuple,
51             fail_tuple,
52             fail_tuple,
53             fail_tuple,
54         ]
55
56         fill_values = [1, 2, 3, 4, RuntimeError]
57
58         profile = ProxACLProfile(tp_config)
59         profile.fill_samples = fill_samples = mock.MagicMock(side_effect=fill_values)
60         profile.queue = mock.MagicMock()
61
62         with self.assertRaises(RuntimeError):
63             profile.run_test_with_pkt_size(traffic_gen, 128, 30)
64
65         self.assertEqual(traffic_gen.resource_helper.run_test.call_count, 5)
66         self.assertEqual(fill_samples.call_count, 5)