diff options
author | 2016-03-10 19:32:29 +0200 | |
---|---|---|
committer | 2016-03-10 19:32:29 +0200 | |
commit | 71433c48afeddb37e3c5a8e134e701d71b09f869 (patch) | |
tree | 860cab39c447a426287d0c49a4c0da736297ba3b /scripts/automation/regression/unit_tests/trex_ipv6_test.py | |
parent | 2be2f7e96be26fbe6dd6763f2ec97fb248abb330 (diff) | |
parent | f24d22eb359753255527430cb8a8b759a424a0df (diff) |
merge doc
Diffstat (limited to 'scripts/automation/regression/unit_tests/trex_ipv6_test.py')
-rwxr-xr-x | scripts/automation/regression/unit_tests/trex_ipv6_test.py | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/scripts/automation/regression/unit_tests/trex_ipv6_test.py b/scripts/automation/regression/unit_tests/trex_ipv6_test.py deleted file mode 100755 index bffb4754..00000000 --- a/scripts/automation/regression/unit_tests/trex_ipv6_test.py +++ /dev/null @@ -1,102 +0,0 @@ -#!/router/bin/python -from trex_general_test import CTRexGeneral_Test -from tests_exceptions import * -import time -from nose.tools import assert_equal - -class CTRexIPv6_Test(CTRexGeneral_Test): - """This class defines the IPv6 testcase of the T-Rex traffic generator""" - def __init__(self, *args, **kwargs): - super(CTRexIPv6_Test, self).__init__(*args, **kwargs) - pass - - def setUp(self): - super(CTRexIPv6_Test, self).setUp() # launch super test class setUp process -# print " before sleep setup !!" -# time.sleep(100000); -# pass - - def test_ipv6_simple(self): - if self.is_virt_nics: - self.skip('--ipv6 flag does not work correctly in with virtual NICs') # TODO: fix - # test initializtion - if not self.is_loopback: - self.router.configure_basic_interfaces() - - self.router.config_pbr(mode = "config") - self.router.config_ipv6_pbr(mode = "config") - - mult = self.get_benchmark_param('multiplier') - core = self.get_benchmark_param('cores') - - ret = self.trex.start_trex( - c = core, - m = mult, - p = True, - nc = True, - ipv6 = True, - d = 60, - f = 'avl/sfr_delay_10_1g.yaml', - l = 1000) - - trex_res = self.trex.sample_to_run_finish() - - # trex_res is a CTRexResult instance- and contains the summary of the test results - # you may see all the results keys by simply calling here for 'print trex_res.result' - print ("\nLATEST RESULT OBJECT:") - print trex_res - - self.check_general_scenario_results(trex_res) - - self.check_CPU_benchmark (trex_res, 10.0) - - assert True - - - def test_ipv6_negative (self): - if self.is_loopback: - self.skip('The test checks ipv6 drops by device and we are in loopback setup') - # test initializtion - self.router.configure_basic_interfaces() - - # NOT CONFIGURING IPv6 INTENTIONALLY TO GET DROPS! - self.router.config_pbr(mode = "config") - - # same params as test_ipv6_simple - mult = self.get_benchmark_param('multiplier', test_name = 'test_ipv6_simple') - core = self.get_benchmark_param('cores', test_name = 'test_ipv6_simple') - - ret = self.trex.start_trex( - c = core, - m = mult, - p = True, - nc = True, - ipv6 = True, - d = 60, - f = 'avl/sfr_delay_10_1g.yaml', - l = 1000) - - trex_res = self.trex.sample_to_run_finish() - - # trex_res is a CTRexResult instance- and contains the summary of the test results - # you may see all the results keys by simply calling here for 'print trex_res.result' - print ("\nLATEST RESULT OBJECT:") - print trex_res - - trex_tx_pckt = float(trex_res.get_last_value("trex-global.data.m_total_tx_pkts")) - trex_drops = int(trex_res.get_total_drops()) - - trex_drop_rate = trex_res.get_drop_rate() - - # make sure that at least 50% of the total transmitted packets failed - self.assert_gt((trex_drops/trex_tx_pckt), 0.5, 'packet drop ratio is not high enough') - - - - def tearDown(self): - CTRexGeneral_Test.tearDown(self) - # remove config here - pass - -if __name__ == "__main__": - pass |