mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
More hardening of the query tool tests.
This commit is contained in:
parent
1136e37cf0
commit
f86c313c18
@ -402,6 +402,12 @@ class StartRunningQueryTest(BaseTestGenerator):
|
|||||||
blueprint_mock = MagicMock(
|
blueprint_mock = MagicMock(
|
||||||
info_notifier_timeout=MagicMock(get=lambda: 5))
|
info_notifier_timeout=MagicMock(get=lambda: 5))
|
||||||
|
|
||||||
|
# Save value for the later use
|
||||||
|
self.is_begin_required_for_sql_query = \
|
||||||
|
StartRunningQuery.is_begin_required_for_sql_query
|
||||||
|
self.is_rollback_statement_required = \
|
||||||
|
StartRunningQuery.is_rollback_statement_required
|
||||||
|
|
||||||
if self.is_begin_required:
|
if self.is_begin_required:
|
||||||
StartRunningQuery.is_begin_required_for_sql_query = MagicMock(
|
StartRunningQuery.is_begin_required_for_sql_query = MagicMock(
|
||||||
return_value=True
|
return_value=True
|
||||||
@ -519,3 +525,10 @@ class StartRunningQueryTest(BaseTestGenerator):
|
|||||||
self.connection.execute_void.assert_called_with('ROLLBACK;')
|
self.connection.execute_void.assert_called_with('ROLLBACK;')
|
||||||
elif not self.is_begin_required:
|
elif not self.is_begin_required:
|
||||||
self.connection.execute_void.assert_not_called()
|
self.connection.execute_void.assert_not_called()
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
# Reset methods to the original state
|
||||||
|
StartRunningQuery.is_rollback_statement_required = \
|
||||||
|
self.is_rollback_statement_required
|
||||||
|
StartRunningQuery.is_rollback_statement_required = \
|
||||||
|
self.is_rollback_statement_required
|
||||||
|
Loading…
Reference in New Issue
Block a user