Filip Tehlar | b1c0b9a | 2022-02-22 15:19:20 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | """ Vpp HTTP tests """ |
| 3 | |
| 4 | import unittest |
| 5 | import os |
| 6 | import subprocess |
| 7 | import http.client |
| 8 | from framework import VppTestCase, VppTestRunner, Worker |
| 9 | from vpp_devices import VppTAPInterface |
| 10 | |
| 11 | |
| 12 | @unittest.skip("Requires root") |
| 13 | class TestHttpTps(VppTestCase): |
| 14 | """ HTTP test class """ |
| 15 | |
| 16 | @classmethod |
| 17 | def setUpClass(cls): |
| 18 | super(TestHttpTps, cls).setUpClass() |
| 19 | |
| 20 | @classmethod |
| 21 | def tearDownClass(cls): |
| 22 | super(TestHttpTps, cls).tearDownClass() |
| 23 | |
| 24 | def setUp(self): |
| 25 | self.client_ip4 = '172.0.0.2' |
| 26 | self.server_ip4 = '172.0.0.1' |
| 27 | self.vapi.cli(f'create tap id 0 host-ip4-addr {self.client_ip4}/24') |
| 28 | self.vapi.cli(f'set int ip addr tap0 {self.server_ip4}/24') |
| 29 | self.vapi.cli('set int state tap0 up') |
| 30 | self.vapi.session_enable_disable(is_enable=1) |
| 31 | |
| 32 | def test_http_tps(self): |
| 33 | fname = 'test_file_1M' |
| 34 | self.vapi.cli('http tps uri tcp://0.0.0.0/8080') |
| 35 | con = http.client.HTTPConnection(f"{self.server_ip4}", 8080) |
| 36 | con.request('GET', f'/{fname}') |
| 37 | r = con.getresponse() |
| 38 | self.assertEqual(len(r.read()), 1 << 20) |
| 39 | |
| 40 | |
| 41 | if __name__ == '__main__': |
| 42 | unittest.main(testRunner=VppTestRunner) |