Best Python code snippet using locust
test_fasthttp.py
Source:test_fasthttp.py
...175 """176 Test FastHttpSession with a custom SSLContext factory that will fail as177 we can not set verify_mode to CERT_NONE when check_hostname is enabled178 """179 def create_custom_context():180 context = gevent.ssl.create_default_context()181 context.check_hostname = True182 context.verify_mode = gevent.ssl.CERT_NONE183 return context184 s = FastHttpSession(185 self.environment,186 "https://127.0.0.1:%i" % self.port,187 ssl_context_factory=create_custom_context,188 user=None,189 )190 with self.assertRaises(ValueError) as e:191 s.get("/")192 self.assertEqual(e.exception.args, ("Cannot set verify_mode to CERT_NONE when check_hostname is enabled.",))193 def test_custom_ssl_context_passed_correct_to_client_pool(self):...
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!!