Move tests: unit/network_services/traffic_profile 73/56773/4
authorEmma Foley <emma.l.foley@intel.com>
Fri, 27 Apr 2018 10:37:37 +0000 (10:37 +0000)
committerEmma Foley <emma.l.foley@intel.com>
Tue, 15 May 2018 17:42:47 +0000 (17:42 +0000)
* Fix pylint errors
* Add TODOs

Some errors are ignored locally, as they were a symptom of other problems.
These issues have been flagged with a TODO, and should be fixed later.

JIRA: YARDSTICK-837
Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Change-Id: Id983a2e415d66633331e7fea96a377e2a7589980

12 files changed:
yardstick/tests/unit/network_services/traffic_profile/__init__.py [moved from tests/unit/network_services/traffic_profile/__init__.py with 100% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_base.py [moved from tests/unit/network_services/traffic_profile/test_base.py with 100% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_fixed.py [moved from tests/unit/network_services/traffic_profile/test_fixed.py with 98% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_http.py [moved from tests/unit/network_services/traffic_profile/test_http.py with 93% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_http_ixload.py [moved from tests/unit/network_services/traffic_profile/test_http_ixload.py with 95% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_ixia_rfc2544.py [moved from tests/unit/network_services/traffic_profile/test_ixia_rfc2544.py with 86% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_prox_acl.py [moved from tests/unit/network_services/traffic_profile/test_prox_acl.py with 76% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_prox_binsearch.py [moved from tests/unit/network_services/traffic_profile/test_prox_binsearch.py with 98% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_prox_profile.py [moved from tests/unit/network_services/traffic_profile/test_prox_profile.py with 98% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_prox_ramp.py [moved from tests/unit/network_services/traffic_profile/test_prox_ramp.py with 97% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_rfc2544.py [moved from tests/unit/network_services/traffic_profile/test_rfc2544.py with 98% similarity]
yardstick/tests/unit/network_services/traffic_profile/test_trex_traffic_profile.py [moved from tests/unit/network_services/traffic_profile/test_trex_traffic_profile.py with 99% similarity]

 # limitations under the License.
 #
 
-from __future__ import absolute_import
-
-import unittest
 import mock
+import unittest
 
-from tests.unit import STL_MOCKS
+from yardstick.tests import STL_MOCKS
 
 STLClient = mock.MagicMock()
 stl_patch = mock.patch.dict("sys.modules", STL_MOCKS)
@@ -13,7 +13,6 @@
 # limitations under the License.
 #
 
-from __future__ import absolute_import
 import unittest
 
 from yardstick.network_services.traffic_profile.base import TrafficProfile
@@ -29,7 +28,7 @@ class TestTrafficProfileGenericHTTP(unittest.TestCase):
 
     def test_execute(self):
         traffic_profile_generic_htt_p = \
-                TrafficProfileGenericHTTP(TrafficProfile)
+            TrafficProfileGenericHTTP(TrafficProfile)
         traffic_generator = {}
         self.assertIsNone(
             traffic_profile_generic_htt_p.execute(traffic_generator))
@@ -12,8 +12,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-
-from __future__ import absolute_import
 import unittest
 import mock
 
@@ -187,9 +185,9 @@ class TestIxLoadTrafficGen(unittest.TestCase):
         with self.assertRaises(Exception):
             ixload.load_config_file("ixload.cfg")
 
-    @mock.patch('yardstick.network_services.traffic_profile.http_ixload.IxLoad')
     @mock.patch('yardstick.network_services.traffic_profile.http_ixload.StatCollectorUtils')
-    def test_start_http_test_connect_error(self, mock_collector_type, mock_ixload_type):
+    @mock.patch('yardstick.network_services.traffic_profile.http_ixload.IxLoad')
+    def test_start_http_test_connect_error(self, mock_ixload_type, *args):
         ports = [1, 2, 3]
         test_input = {
             "remote_server": "REMOTE_SERVER",
@@ -204,8 +202,7 @@ class TestIxLoadTrafficGen(unittest.TestCase):
 
         j = jsonutils.dump_as_bytes(test_input)
 
-        mock_ixload = mock_ixload_type()
-        mock_ixload.connect.side_effect = RuntimeError
+        mock_ixload_type.return_value.connect.side_effect = RuntimeError
 
         ixload = http_ixload.IXLOADHttpTest(j)
         ixload.results_on_windows = 'windows_result_dir'
@@ -216,7 +213,7 @@ class TestIxLoadTrafficGen(unittest.TestCase):
 
     @mock.patch('yardstick.network_services.traffic_profile.http_ixload.IxLoad')
     @mock.patch('yardstick.network_services.traffic_profile.http_ixload.StatCollectorUtils')
-    def test_start_http_test(self, mock_collector_type, mock_ixload_type):
+    def test_start_http_test(self, *args):
         ports = [1, 2, 3]
         test_input = {
             "remote_server": "REMOTE_SERVER",
@@ -240,7 +237,7 @@ class TestIxLoadTrafficGen(unittest.TestCase):
 
     @mock.patch('yardstick.network_services.traffic_profile.http_ixload.IxLoad')
     @mock.patch('yardstick.network_services.traffic_profile.http_ixload.StatCollectorUtils')
-    def test_start_http_test_reassign_error(self, mock_collector_type, mock_ixload_type):
+    def test_start_http_test_reassign_error(self, *args):
         ports = [1, 2, 3]
         test_input = {
             "remote_server": "REMOTE_SERVER",
@@ -264,9 +261,9 @@ class TestIxLoadTrafficGen(unittest.TestCase):
         ixload.result_dir = 'my_result_dir'
 
         ixload.start_http_test()
-        self.assertEqual(reassign_ports.call_count, 1)
+        reassign_ports.assert_called_once()
 
     @mock.patch("yardstick.network_services.traffic_profile.http_ixload.IXLOADHttpTest")
-    def test_main(self, IXLOADHttpTest):
+    def test_main(self, *args):
         args = ["1", "2", "3"]
         http_ixload.main(args)
 # limitations under the License.
 #
 
-from __future__ import absolute_import
-from __future__ import division
 import unittest
 import mock
 
 from copy import deepcopy
 
-from tests.unit import STL_MOCKS
+from yardstick.tests import STL_MOCKS
 
 STLClient = mock.MagicMock()
 stl_patch = mock.patch.dict("sys.modules", STL_MOCKS)
@@ -48,35 +46,55 @@ class TestIXIARFC2544Profile(unittest.TestCase):
         },
     }
 
-    PROFILE = {'description': 'Traffic profile to run RFC2544 latency',
-               'name': 'rfc2544',
-               'traffic_profile': {'traffic_type': 'IXIARFC2544Profile',
-                                   'frame_rate': 100},
-               IXIARFC2544Profile.DOWNLINK: {'ipv4':
-                          {'outer_l2': {'framesize':
-                                        {'64B': '100', '1518B': '0',
-                                         '128B': '0', '1400B': '0',
-                                         '256B': '0', '373b': '0',
-                                         '570B': '0'}},
-                           'outer_l3v4': {'dstip4': '1.1.1.1-1.15.255.255',
-                                          'proto': 'udp', 'count': '1',
-                                          'srcip4': '90.90.1.1-90.105.255.255',
-                                          'dscp': 0, 'ttl': 32},
-                           'outer_l4': {'srcport': '2001',
-                                        'dsrport': '1234'}}},
-               IXIARFC2544Profile.UPLINK: {'ipv4':
-                           {'outer_l2': {'framesize':
-                                         {'64B': '100', '1518B': '0',
-                                          '128B': '0', '1400B': '0',
-                                          '256B': '0', '373b': '0',
-                                          '570B': '0'}},
-                            'outer_l3v4': {'dstip4': '9.9.1.1-90.105.255.255',
-                                           'proto': 'udp', 'count': '1',
-                                           'srcip4': '1.1.1.1-1.15.255.255',
-                                           'dscp': 0, 'ttl': 32},
-                            'outer_l4': {'dstport': '2001',
-                                         'srcport': '1234'}}},
-               'schema': 'isb:traffic_profile:0.1'}
+    PROFILE = {
+        'description': 'Traffic profile to run RFC2544 latency',
+        'name': 'rfc2544',
+        'traffic_profile': {
+            'traffic_type': 'IXIARFC2544Profile',
+            'frame_rate': 100},
+        IXIARFC2544Profile.DOWNLINK: {
+            'ipv4': {
+                'outer_l2': {
+                    'framesize': {
+                        '64B': '100',
+                        '1518B': '0',
+                        '128B': '0',
+                        '1400B': '0',
+                        '256B': '0',
+                        '373b': '0',
+                        '570B': '0'}},
+                'outer_l3v4': {
+                    'dstip4': '1.1.1.1-1.15.255.255',
+                    'proto': 'udp',
+                    'count': '1',
+                    'srcip4': '90.90.1.1-90.105.255.255',
+                    'dscp': 0,
+                    'ttl': 32},
+                'outer_l4': {
+                    'srcport': '2001',
+                    'dsrport': '1234'}}},
+        IXIARFC2544Profile.UPLINK: {
+            'ipv4': {
+                'outer_l2': {
+                    'framesize': {
+                        '64B': '100',
+                        '1518B': '0',
+                        '128B': '0',
+                        '1400B': '0',
+                        '256B': '0',
+                        '373b': '0',
+                        '570B': '0'}},
+                'outer_l3v4': {
+                    'dstip4': '9.9.1.1-90.105.255.255',
+                    'proto': 'udp',
+                    'count': '1',
+                    'srcip4': '1.1.1.1-1.15.255.255',
+                    'dscp': 0,
+                    'ttl': 32},
+                'outer_l4': {
+                    'dstport': '2001',
+                    'srcport': '1234'}}},
+        'schema': 'isb:traffic_profile:0.1'}
 
     def test_get_ixia_traffic_profile_error(self):
         traffic_generator = mock.Mock(autospec=TrexProfile)
@@ -215,7 +233,6 @@ class TestIXIARFC2544Profile(unittest.TestCase):
                     "count": "1"
                 },
                 "outer_l3v6": {
-                    "count": 1024,
                     "dscp": 0,
                     "dstip4": "152.16.100.20",
                     "proto": "udp",
@@ -249,7 +266,6 @@ class TestIXIARFC2544Profile(unittest.TestCase):
                     "ttl": 32
                 },
                 "outer_l3v4": {
-                    "count": 1024,
                     "dscp": 0,
                     "dstip4": "152.16.100.20",
                     "proto": "udp",
@@ -257,7 +273,6 @@ class TestIXIARFC2544Profile(unittest.TestCase):
                     "ttl": 32,
                 },
                 "outer_l3v6": {
-                    "count": 1024,
                     "dscp": 0,
                     "dstip4": "152.16.100.20",
                     "proto": "udp",
@@ -408,24 +423,24 @@ class TestIXIARFC2544Profile(unittest.TestCase):
                           'outer_l4': {'srcport': '2001',
                                        'dsrport': '1234'}}},
                         IXIARFC2544Profile.UPLINK: {'ipv4':
-                                    {'outer_l2': {'framesize':
-                                                  {'64B': '100', '1518B': '0',
-                                                   '128B': '0', '1400B': '0',
-                                                   '256B': '0', '373b': '0',
-                                                   '570B': '0'}},
-                                     'outer_l3v4':
-                                     {'dstip4': '9.9.1.1-90.105.255.255',
-                                      'proto': 'udp', 'count': '1',
-                                      'srcip4': '1.1.1.1-1.15.255.255',
-                                      'dscp': 0, 'ttl': 32},
-                                     'outer_l3v6':
-                                     {'dstip6': '9.9.1.1-90.105.255.255',
-                                      'proto': 'udp', 'count': '1',
-                                      'srcip6': '1.1.1.1-1.15.255.255',
-                                      'dscp': 0, 'ttl': 32},
+                                                    {'outer_l2': {'framesize':
+                                                                  {'64B': '100', '1518B': '0',
+                                                                   '128B': '0', '1400B': '0',
+                                                                   '256B': '0', '373b': '0',
+                                                                   '570B': '0'}},
+                                                        'outer_l3v4':
+                                                        {'dstip4': '9.9.1.1-90.105.255.255',
+                                                         'proto': 'udp', 'count': '1',
+                                                         'srcip4': '1.1.1.1-1.15.255.255',
+                                                         'dscp': 0, 'ttl': 32},
+                                                        'outer_l3v6':
+                                                        {'dstip6': '9.9.1.1-90.105.255.255',
+                                                         'proto': 'udp', 'count': '1',
+                                                         'srcip6': '1.1.1.1-1.15.255.255',
+                                                         'dscp': 0, 'ttl': 32},
 
-                                     'outer_l4': {'dstport': '2001',
-                                                  'srcport': '1234'}}},
+                                                        'outer_l4': {'dstport': '2001',
+                                                                     'srcport': '1234'}}},
                         'schema': 'isb:traffic_profile:0.1'}
         result = r_f_c2544_profile._get_ixia_traffic_profile(profile_data, mac)
         self.assertIsNotNone(result)
@@ -497,7 +512,8 @@ class TestIXIARFC2544Profile(unittest.TestCase):
         r_f_c2544_profile.full_profile = {}
         r_f_c2544_profile.get_streams = mock.Mock()
 
-        self.assertIsNone(r_f_c2544_profile.update_traffic_profile(traffic_generator))
+        self.assertIsNone(
+            r_f_c2544_profile.update_traffic_profile(traffic_generator))
         self.assertEqual(r_f_c2544_profile.ports, ports_expected)
 
     def test_get_drop_percentage(self):
 # limitations under the License.
 #
 
-from __future__ import absolute_import
-
 import unittest
 import mock
 
-from tests.unit import STL_MOCKS
+from yardstick.tests import STL_MOCKS
 
 STLClient = mock.MagicMock()
 stl_patch = mock.patch.dict("sys.modules", STL_MOCKS)
@@ -32,7 +30,7 @@ if stl_patch:
 class TestProxACLProfile(unittest.TestCase):
 
     def test_run_test_with_pkt_size(self):
-        def target(*args, **kwargs):
+        def target(*args):
             runs.append(args[2])
             if args[2] < 0 or args[2] > 100:
                 raise RuntimeError(' '.join([str(args), str(runs)]))
@@ -40,13 +38,8 @@ class TestProxACLProfile(unittest.TestCase):
                 return fail_tuple, {}
             return success_tuple, {}
 
-        def get_mock_samples(*args, **kwargs):
-            if args[2] < 0:
-                raise RuntimeError(' '.join([str(args), str(runs)]))
-            return success_tuple
-
         tp_config = {
-           'traffic_profile': {
+            'traffic_profile': {
                 'upper_bound': 100.0,
                 'lower_bound': 0.0,
                 'tolerated_loss': 50.0,
@@ -55,8 +48,10 @@ class TestProxACLProfile(unittest.TestCase):
         }
 
         runs = []
-        success_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.1, 5.2, 5.3], 995, 1000, 123.4)
-        fail_tuple = ProxTestDataTuple(10.0, 1, 2, 3, 4, [5.6, 5.7, 5.8], 850, 1000, 123.4)
+        success_tuple = ProxTestDataTuple(
+            10.0, 1, 2, 3, 4, [5.1, 5.2, 5.3], 995, 1000, 123.4)
+        fail_tuple = ProxTestDataTuple(
+            10.0, 1, 2, 3, 4, [5.6, 5.7, 5.8], 850, 1000, 123.4)
 
         traffic_gen = mock.MagicMock()
 
@@ -75,4 +70,5 @@ class TestProxACLProfile(unittest.TestCase):
         profile.tolerated_loss = 100.0
         profile._profile_helper = profile_helper
 
-        profile.run_test_with_pkt_size(traffic_gen, profile.pkt_size, profile.duration)
+        profile.run_test_with_pkt_size(
+            traffic_gen, profile.pkt_size, profile.duration)
 # limitations under the License.
 #
 
-from __future__ import absolute_import
-
 import unittest
 import mock
 
-from tests.unit import STL_MOCKS
+from yardstick.tests import STL_MOCKS
 
 STLClient = mock.MagicMock()
 stl_patch = mock.patch.dict("sys.modules", STL_MOCKS)
 # limitations under the License.
 #
 
-from __future__ import absolute_import
-
 import unittest
 import mock
 
-from tests.unit import STL_MOCKS
+from yardstick.tests import STL_MOCKS
 
 STLClient = mock.MagicMock()
 stl_patch = mock.patch.dict("sys.modules", STL_MOCKS)
 # limitations under the License.
 #
 
-from __future__ import absolute_import
-
 import unittest
 import mock
 
-from tests.unit import STL_MOCKS
+from yardstick.tests import STL_MOCKS
 
 STLClient = mock.MagicMock()
 stl_patch = mock.patch.dict("sys.modules", STL_MOCKS)
@@ -16,7 +16,7 @@
 import unittest
 import mock
 
-from tests.unit import STL_MOCKS
+from yardstick.tests import STL_MOCKS
 
 
 STLClient = mock.MagicMock()
@@ -191,7 +191,8 @@ class TestRFC2544Profile(unittest.TestCase):
             mock.Mock(return_value=True)
         r_f_c2544_profile = RFC2544Profile(self.TRAFFIC_PROFILE)
         r_f_c2544_profile.params = self.PROFILE
-        self.assertIsNone(r_f_c2544_profile.execute_traffic(traffic_generator))
+        self.assertIsNone(
+            r_f_c2544_profile.execute_traffic(traffic_generator))
         samples = {}
         for ifname in range(1):
             name = "xe{}".format(ifname)