Best Python code snippet using tempest_python
test_http.py
Source:test_http.py
...125 response)126class TestClosingProxyHttp(TestClosingHttp):127 def closing_http(self, proxy_url=PROXY_URL, **kwargs):128 connection = http.ClosingProxyHttp(proxy_url=proxy_url, **kwargs)129 self.assertHasProxy(connection, proxy_url)130 return connection131 def test_class_without_proxy_url(self):132 self.assertRaises(ValueError, http.ClosingProxyHttp, None)133 def assertHasProxy(self, connection, proxy_url):134 self.assertIsInstance(connection, http.ClosingProxyHttp)135 proxy = connection.proxy136 self.assertEqual(proxy_url,137 '%s://%s:%i' % (proxy.scheme,138 proxy.host,139 proxy.port))140class TestClosingHttpRedirects(base.TestCase):141 def test_redirect_default(self):142 connection = http.ClosingHttp()143 self.assertTrue(connection.follow_redirects)144 def test_redirect_off(self):145 connection = http.ClosingHttp(follow_redirects=False)146 self.assertFalse(connection.follow_redirects)147class TestClosingProxyHttpRedirects(base.TestCase):...
test_site.py
Source:test_site.py
...3from proxy_factory.proxy_site_spider import *4class SiteTest(unittest.TestCase):5 def setUp(self):6 self.pf = ProxyFactory("settings")7 def assertHasProxy(self, proxies):8 super(SiteTest, self).assertTrue(len(proxies)>0)9 def test_kxdaili(self):10 self.assertHasProxy(fetch_kxdaili(self.pf, 1))11 def test_mimvp(self):12 self.assertHasProxy(fetch_mimvp(self.pf))13 def test_66ip(self):14 self.assertHasProxy(fetch_66ip(self.pf))15 def test_66ip_sd(self):16 self.assertHasProxy(fetch_66ip_sd(self.pf))17 def test_goubanjia(self):18 self.assertHasProxy(fetch_goubanjia(self.pf))19 def test_cn_proxy(self):20 self.assertHasProxy(fetch_cn_proxy(self.pf))21 def test_httpdaili(self):22 self.assertHasProxy(fetch_httpdaili(self.pf))23 def test_nianshao(self):24 self.assertHasProxy(fetch_nianshao(self.pf))25if __name__ == "__main__":...
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!!