Best Python code snippet using localstack_python
test_securitysystemdb.py
Source:test_securitysystemdb.py
...24 tearDown()25 test_create_table()26 test_add_good_record()27 test_add_bad_record()28 test_get_records()29 """30 def setUp(self):31 """32 Setup TestSecuritySystemDB33 """34 self.__db = SecuritySystemDB(db_file=TEMP_DB,35 name=TEMP_TABLE)36 self.__db.manual_enter()37 def tearDown(self):38 """39 Teardown TestSecuritySystemDB40 """41 self.__db.manual_exit()42 if os.path.exists(TEMP_DB):43 os.remove(TEMP_DB)44 def test_create_table(self):45 """46 Test creating new table that doesn't exist47 """48 err_msg = 'Table already exists'49 self.assertFalse(self.__db.table_exists(), err_msg)50 self.__db.create_table()51 err_msg = 'Table does not exist'52 self.assertTrue(self.__db.table_exists(), err_msg)53 def test_add_good_record(self):54 """55 Test adding new, good record to DB56 """57 record = {'date': '2020-11-23',58 'time': '23:06:34',59 'location': 'test_room',60 'nodeID': 'securitysystem_34'}61 self.__db.create_table()62 err_msg = 'Record exists unexpectedly'63 self.assertFalse(self.__db.record_exists(record), err_msg)64 self.__db.add_record(record)65 err_msg = 'Record failed to be added to DB table'66 self.assertTrue(self.__db.record_exists(record), err_msg)67 def test_add_bad_record(self):68 """69 Test adding new, bad record to DB70 """71 record = {'date': '2020-11-23',72 'time': '23:06:34',73 'nodeID': 'securitysystem_34'}74 self.__db.create_table()75 err_msg = 'Record exists unexpectedly'76 self.assertFalse(self.__db.record_exists(record), err_msg)77 self.assertRaises(Exception, self.__db.add_record, record)78 @skipIf(not os.path.exists(PREMADE_DB), 'Run test in top level directory')79 def test_get_records(self):80 """81 Test retrieving pre-determined records from DB.82 """83 self.__db = SecuritySystemDB(db_file=PREMADE_DB,84 name=PREMADE_TABLE)85 self.__db.manual_enter()86 expected_records = [{'date': '2020-11-24',87 'location': 'hasan_bedroom',88 'nodeID': 'securitysystem_19',89 'time': '19:07:13'},90 {'date': '2020-11-22',91 'location': 'hasan_bedroom',92 'nodeID': 'securitysystem_19',93 'time': '12:00:15'}]...
test_extractor.py
Source:test_extractor.py
...26 def test_get_mailbox_ids(self):27 result = extractor.get_mailbox_ids()28 self.assertGreater(len(result), 0)29class TestUsers(TestCase):30 def test_get_records(self):31 result = extractor.get_records(KEYS["User"], {"status": "all"})32 users = result[KEYS["Embedded"]][KEYS["User"]]33 self.assertIsNotNone(users)34 self.assertGreater(len(users), 3)35 36 def test_get_all_users(self):37 result = extractor.get_all_records(KEYS["User"], {"status": "active"})38 self.assertGreater(len(result), 1)39class TestCustomers(TestCase):40 def test_get_records(self):41 result = extractor.get_records(KEYS["Customer"])42 customers = result[KEYS["Embedded"]][KEYS["Customer"]]43 self.assertIsNotNone(customers)44 self.assertGreater(len(customers), 5) # just one page to avoid timeout45class TestConversations(TestCase):46 def test_get_records(self):47 result = extractor.get_records(KEYS["Conversation"])48 conversations = result[KEYS["Embedded"]][KEYS["Conversation"]]49 self.assertIsNotNone(conversations)50 self.assertGreater(len(conversations), 5)51 52 def test_get_all_conversations(self):53 result = extractor.get_all_records(KEYS["Conversation"], {"status": "active"}) # defaults to active...
test_consumer.py
Source:test_consumer.py
...39 topics = consumer.topics()40 if topics:41 result = "PASSED"42 print("test_run_consumer: %s" % result)43 def test_get_records(self):44 print("Running test_get_records")45 result = "PASSED"46 print("test_get_records: %s" % result)47if __name__=='__main__':48 aikafkatest = AivenKafkaConsumerTest()49 print("Running tests one by one")50 aikafkatest.test_get_db_connection()51 aikafkatest.test_create_pg_database()52 aikafkatest.test_insert_db_record()53 aikafkatest.test_update_db_record()54 aikafkatest.test_run_consumer()...
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!!