Best Python code snippet using localstack_python
test_http2_server.py
Source:test_http2_server.py
...5from localstack.utils.common import get_free_tcp_port, is_port_open, poll_condition6from localstack.utils.server.http2_server import run_server7LOG = logging.getLogger(__name__)8class TestHttp2Server(unittest.TestCase):9 def test_run_and_stop_server(self):10 port = get_free_tcp_port()11 host = "127.0.0.1"12 LOG.info("%.2f starting server on port %d", time.time(), port)13 thread = run_server(port=port, bind_address=host, asynchronous=True)14 try:15 url = f"http://{host}:{port}"16 self.assertTrue(17 poll_condition(lambda: is_port_open(url, http_path="/"), timeout=15),18 "gave up waiting for port %d " % port,19 )20 finally:21 LOG.info("%.2f stopping server on port %d", time.time(), port)22 thread.stop()23 LOG.info("%.2f waiting on server to shut down", time.time())...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!