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

Added/Updated tests\bugs\core_5295_test.py: see notes

This commit is contained in:
pavel-zotov 2023-12-13 12:53:06 +03:00
parent 829db06c5d
commit 0056561f8c

View File

@ -7,6 +7,11 @@ TITLE: Validation could read after the end-of-file when handle multifile d
DESCRIPTION:
JIRA: CORE-5295
FBTEST: bugs.core_5295
NOTES:
[13.12.2023] pzotov
Adjusted 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 error messages produced by 'gfix -v'
"""
import pytest
@ -15,7 +20,7 @@ from firebird.qa import *
db = db_factory(from_backup='core5295.fbk')
act = python_act('db', substitutions=[('\t+', ' '), ('^((?!checked_size|Error|error).)*$', '')])
act = python_act('db', substitutions=[('[ \t]+', ' '), ('^((?!checked_size|[Ee]rror|[Rr]eached).)*$', '')])
fbk_file = temp_file('tmp_core_5295.fbk')
fdb_file_1 = temp_file('tmp_core_5295-1.fdb')
@ -30,6 +35,7 @@ def test_1(act: Action, fbk_file: Path, fdb_file_1: Path, fdb_file_2: Path):
database=[fdb_file_1, fdb_file_2],
db_file_pages=[100000])
srv.wait()
# Only 'gfix -v' raised error. Online validation works fine:
act.gfix(switches=['-v', act.get_dsn(fdb_file_1)])
act.gfix(switches=['-v', act.get_dsn(fdb_file_1)], combine_output = True)
assert act.clean_stdout == act.clean_expected_stdout