Merge "Adding example testcase to enable multiport support for http"
[yardstick.git] / tests / unit / network_services / traffic_profile / test_prox_mpls.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.vnf_generic.vnf.prox_helpers import ProxTestDataTuple
29     from yardstick.network_services.traffic_profile.prox_mpls_tag_untag import ProxMplsTagUntagProfile
30
31
32 class TestProxMplsTagUntagProfile(unittest.TestCase):
33
34     def test_mpls_1(self):
35         def target(*args, **kwargs):
36             runs.append(args[2])
37             if args[2] < 0 or args[2] > 100:
38                 raise RuntimeError(' '.join([str(args), str(runs)]))
39             if args[2] > 75.0:
40                 return fail_tuple, {}
41             return success_tuple, {}
42
43         tp_config = {
44             'traffic_profile': {
45                 'packet_sizes': [200],
46             },
47         }
48
49         runs = []
50         success_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.1, 5.2, 5.3], 995, 1000, 123.4)
51         fail_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.6, 5.7, 5.8], 850, 1000, 123.4)
52
53         traffic_generator = mock.MagicMock()
54
55         profile = ProxMplsTagUntagProfile(tp_config)
56         profile.init(mock.MagicMock())
57         profile._profile_helper = profile_helper = mock.MagicMock()
58         profile_helper.run_test = target
59
60         profile.execute_traffic(traffic_generator)
61         self.assertEqual(round(profile.current_lower, 2), 74.69)
62         self.assertEqual(round(profile.current_upper, 2), 75.39)
63         self.assertEqual(len(runs), 8)
64
65     def test_mpls_2(self):
66         def target(*args, **kwargs):
67             runs.append(args[2])
68             if args[2] < 0 or args[2] > 100:
69                 raise RuntimeError(' '.join([str(args), str(runs)]))
70             if args[2] > 25.0:
71                 return fail_tuple, {}
72             return success_tuple, {}
73
74         tp_config = {
75             'traffic_profile': {
76                 'packet_sizes': [200],
77                 'test_precision': 2.0,
78             },
79         }
80
81         runs = []
82         success_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.1, 5.2, 5.3], 995, 1000, 123.4)
83         fail_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.6, 5.7, 5.8], 850, 1000, 123.4)
84
85         traffic_generator = mock.MagicMock()
86
87         profile = ProxMplsTagUntagProfile(tp_config)
88         profile.init(mock.MagicMock())
89         profile._profile_helper = profile_helper = mock.MagicMock()
90         profile_helper.run_test = target
91
92         profile.execute_traffic(traffic_generator)
93         self.assertEqual(round(profile.current_lower, 2), 24.06)
94         self.assertEqual(round(profile.current_upper, 2), 25.47)
95         self.assertEqual(len(runs), 7)