Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Proposal to fix #154 (v2) #161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
PostgresNode::safe_psql raises InvalidOperationException
If expect_error is True and no error is detected, safe_psql raises InvalidOperationException exception.

Tests (local, remote) are added.
  • Loading branch information
dmitry-lipetsk committed Dec 9, 2024
commit f848a63fd3dce4a50d1a994f2b5ee1ce9e15a7b6
3 changes: 2 additions & 1 deletion testgres/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
CatchUpException, \
StartNodeException, \
InitNodeException, \
BackupException
BackupException, \
InvalidOperationException

from .enums import \
XLogMethod, \
Expand Down
3 changes: 3 additions & 0 deletions testgres/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,6 @@ class InitNodeException(TestgresException):

class BackupException(TestgresException):
pass

class InvalidOperationException(TestgresException):
pass
5 changes: 3 additions & 2 deletions testgres/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
TimeoutException, \
InitNodeException, \
TestgresException, \
BackupException
BackupException, \
InvalidOperationException

from .logger import TestgresLogger

Expand Down Expand Up @@ -1089,7 +1090,7 @@ def safe_psql(self, query=None, expect_error=False, **kwargs):
return e.error

if expect_error:
assert False, "Exception was expected, but query finished successfully: `{}` ".format(query)
raise InvalidOperationException("Exception was expected, but query finished successfully: `{}`.".format(query))

return out

Expand Down
21 changes: 20 additions & 1 deletion tests/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
BackupException, \
QueryException, \
TimeoutException, \
TestgresException, NodeApp
TestgresException, \
InvalidOperationException, \
NodeApp

from testgres import \
TestgresConfig, \
Expand Down Expand Up @@ -310,6 +312,23 @@ def test_psql(self):
with self.assertRaises(QueryException):
node.safe_psql('select 1')

def test_safe_psql__expect_error(self):
with get_new_node().init().start() as node:
err = node.safe_psql('select_or_not_select 1', expect_error=True)
self.assertTrue(type(err) == str) # noqa: E721
self.assertIn('select_or_not_select', err)
self.assertIn('ERROR: syntax error at or near "select_or_not_select"', err)

# ---------
with self.assertRaises(InvalidOperationException) as ctx:
node.safe_psql("select 1;", expect_error=True)

self.assertEqual(str(ctx.exception), "Exception was expected, but query finished successfully: `select 1;`.")

# ---------
res = node.safe_psql("select 1;", expect_error=False)
self.assertEqual(res, b'1\n')

def test_transactions(self):
with get_new_node().init().start() as node:

Expand Down
20 changes: 19 additions & 1 deletion tests/test_simple_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
BackupException, \
QueryException, \
TimeoutException, \
TestgresException
TestgresException, \
InvalidOperationException

from testgres.config import \
TestgresConfig, \
Expand Down Expand Up @@ -295,6 +296,23 @@ def test_psql(self):
with self.assertRaises(QueryException):
node.safe_psql('select 1')

def test_safe_psql__expect_error(self):
with get_remote_node(conn_params=conn_params).init().start() as node:
err = node.safe_psql('select_or_not_select 1', expect_error=True)
self.assertTrue(type(err) == str) # noqa: E721
self.assertIn('select_or_not_select', err)
self.assertIn('ERROR: syntax error at or near "select_or_not_select"', err)

# ---------
with self.assertRaises(InvalidOperationException) as ctx:
node.safe_psql("select 1;", expect_error=True)

self.assertEqual(str(ctx.exception), "Exception was expected, but query finished successfully: `select 1;`.")

# ---------
res = node.safe_psql("select 1;", expect_error=False)
self.assertEqual(res, b'1\n')

def test_transactions(self):
with get_remote_node(conn_params=conn_params).init().start() as node:
with node.connect() as con:
Expand Down