Best Python code snippet using autotest_python
database_connection_unittest.py
Source:database_connection_unittest.py  
...97        db.max_reconnect_attempts = database_connection.RECONNECT_FOREVER98        self._expect_fail_and_reconnect(30)99        db.connect()100        self.god.check_playback()101    def _simple_connect(self, db):102        self._fake_backend.connect.expect_call(**_CONNECT_KWARGS)103        db.connect()104        self.god.check_playback()105    def test_disconnect(self):106        db = self._get_database_connection()107        self._simple_connect(db)108        self._fake_backend.disconnect.expect_call()109        db.disconnect()110        self.god.check_playback()111    def test_execute(self):112        db = self._get_database_connection()113        self._simple_connect(db)114        params = object()115        self._fake_backend.execute.expect_call('query', params)116        db.execute('query', params)117        self.god.check_playback()118    def test_execute_retry(self):119        db = self._get_database_connection()120        self._simple_connect(db)121        self._fake_backend.execute.expect_call('query', None).and_raises(122            FakeDatabaseError())123        self._expect_reconnect()124        self._fake_backend.execute.expect_call('query', None)125        db.execute('query')126        self.god.check_playback()127        self._fake_backend.execute.expect_call('query', None).and_raises(128            FakeDatabaseError())129        self.assertRaises(FakeDatabaseError, db.execute, 'query',130                          try_reconnecting=False)131if __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!!
