Remove network_services.vnf_generic.vnf.prox_helpers.ProxSocketHelper.rx_stats 79/46879/1
authorEmma Foley <emma.l.foley@intel.com>
Wed, 8 Nov 2017 17:48:59 +0000 (17:48 +0000)
committerEmma Foley <emma.l.foley@intel.com>
Wed, 8 Nov 2017 17:59:19 +0000 (17:59 +0000)
* Remove the method which is unused and is marked as deprecated.

Change-Id: Ie64084fcd26985283c664445b173a757d3d908ab
JIRA: YARDSTICK-838
Signed-off-by: Emma Foley <emma.l.foley@intel.com>
tests/unit/network_services/vnf_generic/vnf/test_prox_helpers.py
yardstick/network_services/vnf_generic/vnf/prox_helpers.py

index 3c07381..4cfc48d 100644 (file)
@@ -533,20 +533,6 @@ class TestProxSocketHelper(unittest.TestCase):
         result = prox.hz()
         self.assertEqual(result, expected)
 
-    def test_rx_stats(self, mock_time):
-        core_stats = [
-            '3,4,5,6',
-            '7,8,9,10,NaN',
-            '11,12,13,14,15',
-        ]
-
-        mock_socket = mock.MagicMock()
-        prox = ProxSocketHelper(mock_socket)
-        prox.get_data = mock.MagicMock(side_effect=core_stats)
-        expected = 21, 24, 27, 14
-        result = prox.rx_stats([3, 4, 5], 16)
-        self.assertEqual(result, expected)
-
     def test_core_stats(self, mock_time):
         core_stats = [
             '3,4,5,6',
index ac5abfb..515beff 100644 (file)
@@ -509,11 +509,6 @@ class ProxSocketHelper(object):
     def hz(self):
         return self.get_all_tot_stats()[3]
 
-    # Deprecated
-    # TODO: remove
-    def rx_stats(self, cores, task=0):
-        return self.core_stats(cores, task)
-
     def core_stats(self, cores, task=0):
         """Get the receive statistics from the remote system"""
         rx = tx = drop = tsc = 0