6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 21:43:06 +01:00
firebird-qa/tests/bugs/core_5931_test.py

85 lines
2.2 KiB
Python

#coding:utf-8
"""
ID: issue-6188
ISSUE: 6188
TITLE: SIMILAR TO does not return result when invalid pattern is used (with two
adjacent special characters that should be escaped but aren't)
DESCRIPTION:
JIRA: CORE-5931
FBTEST: bugs.core_5931
"""
import pytest
from firebird.qa import *
db = db_factory()
test_script = """
set list on;
set count on;
set term ^;
execute block as
begin
rdb$set_context( 'USER_SESSION','DTS_START', cast('now' as timestamp) );
rdb$set_context( 'USER_SESSION','MAX_THRESHOLD_MS', 100 );
-- ^
-- |
-- #############################
-- MAX ALLOWED EXECUTION TIME,MS
-- #############################
end
^
set term ;^
select 1 as result from rdb$database where
'
group by
f01,
f02,
f03,
f04,
f05,
f06,
f07,
f08,
f09,
f10,
f11,
f12,
f13
'
similar to
'%group[[:WHITESPACE:]]+by[[:WHITESPACE:]]+([[:ALNUM:]]|_)+([[:WHITESPACE:]]*,[[:WHITESPACE:]]*[[:ALNUM:]]+){12,}[[:WHITESPACE:]]*%'
;
set count off;
select
iif( evaluated_ms <= max_allowed_ms
,'acceptable'
,'TOO LONG: ' || evaluated_ms || ' ms - this is more then threshold = ' || max_allowed_ms || ' ms'
) as duration
from (
select
datediff( millisecond from cast(rdb$get_context( 'USER_SESSION','DTS_START') as timestamp) to current_timestamp ) evaluated_ms
,cast( rdb$get_context( 'USER_SESSION','MAX_THRESHOLD_MS' ) as int ) as max_allowed_ms
from rdb$database
);
"""
act = isql_act('db', test_script)
expected_stdout = """
RESULT 1
Records affected: 1
DURATION acceptable
"""
@pytest.mark.version('>=4.0')
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout