6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00

Added/Updated tests\bugs\gh_7604_test.py: Added 'SQLSTATE' in substitutions: runtime error must not be suppressed. Added 'combine_output = True' in order to see SQLSTATE if any error occurs.

This commit is contained in:
pavel-zotov 2023-12-14 19:50:58 +03:00
parent cc3ac5e1c5
commit 812a70c7a5

View File

@ -8,6 +8,10 @@ NOTES:
[03.06.2023] pzotov
Confirmed problem on 4.0.3.2943, 5.0.0.1060.
Checked on 4.0.3.2947, 5.0.0.1063 -- all fine.
[14.12.2023] pzotov
Added 'SQLSTATE' in substitutions: runtime error must not be filtered out by '?!(...)' pattern
("negative lookahead assertion", see https://docs.python.org/3/library/re.html#regular-expression-syntax).
Added 'combine_output = True' in order to see SQLSTATE if any error occurs.
"""
import locale
import pytest
@ -27,7 +31,7 @@ init_sql = """
"""
db = db_factory(charset = 'utf8', init = init_sql)
act = python_act('db', substitutions=[('^((?!sqltype:).)*$',''),('[ \t]+',' '),('.*alias:.*','')])
act = python_act('db', substitutions = [ ('^((?!SQLSTATE|sqltype:).)*$',''),('[ \t]+',' '),('.*alias:.*','') ] )
@pytest.mark.version('>=4.0.3')
def test_1(act: Action):