X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_classifier_ip6.py;h=ea6adcb713ffdc30931170bb69b514edc24be338;hb=6595ff7f88be45d4c3f4dae09f7253b8b4ed26af;hp=2b9b142afb2198c10961cd3a5769d5f8dd21de01;hpb=eaea421e1fefedc47325f970475c5d48c899433c;p=vpp.git diff --git a/test/test_classifier_ip6.py b/test/test_classifier_ip6.py index 2b9b142afb2..ea6adcb713f 100644 --- a/test/test_classifier_ip6.py +++ b/test/test_classifier_ip6.py @@ -26,6 +26,10 @@ class TestClassifier(VppTestCase): super(TestClassifier, cls).setUpClass() cls.acl_active_table = '' + @classmethod + def tearDownClass(cls): + super(TestClassifier, cls).tearDownClass() + def setUp(self): """ Perform test setup before test case. @@ -69,10 +73,6 @@ class TestClassifier(VppTestCase): def tearDown(self): """Run standard test teardown and acl related log.""" if not self.vpp_dead: - self.logger.info(self.vapi.ppcli("show inacl type ip6")) - self.logger.info(self.vapi.ppcli("show outacl type ip6")) - self.logger.info(self.vapi.cli("show classify table verbose")) - self.logger.info(self.vapi.cli("show ip fib")) if self.acl_active_table == 'ip6_out': self.output_acl_set_interface( self.pg0, self.acl_tbl_idx.get(self.acl_active_table), 0) @@ -87,6 +87,12 @@ class TestClassifier(VppTestCase): super(TestClassifier, self).tearDown() + def show_commands_at_teardown(self): + self.logger.info(self.vapi.ppcli("show inacl type ip6")) + self.logger.info(self.vapi.ppcli("show outacl type ip6")) + self.logger.info(self.vapi.cli("show classify table verbose")) + self.logger.info(self.vapi.cli("show ip fib")) + def create_stream(self, src_if, dst_if, packet_sizes, proto_l=UDP(sport=1234, dport=5678)): """Create input packet stream for defined interfaces. @@ -288,6 +294,14 @@ class TestClassifier(VppTestCase): class TestClassifierIP6(TestClassifier): """ Classifier IP6 Test Case """ + @classmethod + def setUpClass(cls): + super(TestClassifierIP6, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestClassifierIP6, cls).tearDownClass() + def test_iacl_src_ip(self): """ Source IP6 iACL test @@ -389,6 +403,14 @@ class TestClassifierIP6(TestClassifier): class TestClassifierIP6UDP(TestClassifier): """ Classifier IP6 UDP proto Test Case """ + @classmethod + def setUpClass(cls): + super(TestClassifierIP6UDP, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestClassifierIP6UDP, cls).tearDownClass() + def test_iacl_proto_udp(self): """ IP6 UDP protocol iACL test @@ -524,6 +546,14 @@ class TestClassifierIP6UDP(TestClassifier): class TestClassifierIP6TCP(TestClassifier): """ Classifier IP6 TCP proto Test Case """ + @classmethod + def setUpClass(cls): + super(TestClassifierIP6TCP, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestClassifierIP6TCP, cls).tearDownClass() + def test_iacl_proto_tcp(self): """ IP6 TCP protocol iACL test @@ -661,6 +691,14 @@ class TestClassifierIP6TCP(TestClassifier): class TestClassifierIP6Out(TestClassifier): """ Classifier output IP6 Test Case """ + @classmethod + def setUpClass(cls): + super(TestClassifierIP6Out, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestClassifierIP6Out, cls).tearDownClass() + def test_acl_ip_out(self): """ Output IP6 ACL test @@ -698,6 +736,14 @@ class TestClassifierIP6Out(TestClassifier): class TestClassifierIP6MAC(TestClassifier): """ Classifier IP6 MAC Test Case """ + @classmethod + def setUpClass(cls): + super(TestClassifierIP6MAC, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestClassifierIP6MAC, cls).tearDownClass() + def test_acl_mac(self): """ IP6 MAC iACL test