Best Python code snippet using Kiwi_python
utils_test.py
Source:utils_test.py
...14 def test_url_to_json(self):15 """test_url_to_json"""16 jobject = url_to_json('https://s3.amazonaws.com/cbers-stac/CBERS4/catalog.json')17 self.assertEqual(jobject['name'], 'CBERS4')18 def test_get_links(self):19 """test_get_links"""20 clinks, items = get_links(file_as_json('test/CBERS4_root.json'),21 'https://s3.amazonaws.com/cbers-stac/CBERS4/catalog.json')22 self.assertEqual(len(clinks), 2)23 self.assertEqual(len(items), 0)24 self.assertTrue('https://s3.amazonaws.com/cbers-stac/CBERS4/MUX/catalog.json' in clinks)25 self.assertTrue('https://s3.amazonaws.com/cbers-stac/CBERS4/AWFI/catalog.json' in clinks)26 self.assertFalse('https://s3.amazonaws.com/cbers-stac/CBERS4/PAN/catalog.json' in clinks)27 clinks, items = get_links(file_as_json('test/catalog-with-item.json'),28 'https://s3.amazonaws.com/cbers-stac/CBERS4/AWFI/062/093/'29 'catalog.json')30 self.assertEqual(len(clinks), 0)31 self.assertEqual(len(items), 1)32 self.assertTrue('https://s3.amazonaws.com/cbers-stac/CBERS4/AWFI/062/093/'...
test_getweblinks.py
Source:test_getweblinks.py
...5import requests_mock6from bs4 import BeautifulSoup7from yattag import Doc8@pytest.fixture9def test_get_links():10 test_data = ['https://aff.ironsocket.com/SH7L',11 'https://aff.ironsocket.com/SH7L',12 'https://wsrs.net/',13 'https://cmsgear.com/']14 doc, tag, _, line = Doc().ttl()15 doc.asis('<!DOCTYPE html>')16 with tag('html'):17 with tag('body'):18 for data in test_data:19 line('a', 'test_anchor', href=data)20 mock_html = doc.getvalue()21 mock_soup = BeautifulSoup(mock_html, 'html.parser')22 with requests_mock.Mocker() as mock_connection:23 for data in test_data:24 mock_connection.register_uri('GET', data, text='Received')25 result = getweblinks.get_links(mock_soup, ext=['.com', '.net'])26 assert result == test_data27def test_run():28 test_get_links()29if __name__ == '__main__':...
test_scraper.py
Source:test_scraper.py
...14 @classmethod15 def tearDownClass(cls):16 cls.scraper.session.close()17 @file_data("test_get_links.json")18 def test_get_links(self, id_name=None, class_name=None, element_type=None, element_attribute=None, css_selector=None):19 attr_ = {element_attribute['attribute']:re.compile(element_attribute['regex'])} if(element_attribute is not None) else None...
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!!