2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
"""
|
|
|
|
ID: issue-2409
|
|
|
|
ISSUE: 2409
|
|
|
|
TITLE: Set the fixed and documented check order for WHERE clause and other conditional sentences
|
|
|
|
DESCRIPTION:
|
|
|
|
JIRA: CORE-1971
|
2022-02-02 15:46:19 +01:00
|
|
|
FBTEST: bugs.core_1971
|
2022-01-20 17:32:14 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
init_script = """
|
2021-04-26 20:07:00 +02:00
|
|
|
create table t_links (
|
|
|
|
link_type integer,
|
|
|
|
right_id integer,
|
|
|
|
prop_value varchar(1024)
|
|
|
|
);
|
|
|
|
|
|
|
|
insert into t_links (link_type,right_id,prop_value) values(2,161,'2001');
|
|
|
|
insert into t_links (link_type,right_id,prop_value) values(2,161,'2002');
|
|
|
|
insert into t_links (link_type,right_id,prop_value) values(2,161,'2003');
|
|
|
|
insert into t_links (link_type,right_id,prop_value) values(10,161,'any string');
|
|
|
|
commit;
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
db = db_factory(init=init_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
test_script = """
|
2021-04-26 20:07:00 +02:00
|
|
|
set list on;
|
|
|
|
select * from t_links
|
|
|
|
where (right_id=161 and link_type=2) and cast(prop_value as integer)<>2001;
|
|
|
|
|
|
|
|
select * from t_links
|
|
|
|
where cast(prop_value as integer)<>2001 and (right_id=161 and link_type=2);
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
act = isql_act('db', test_script, substitutions=[('[ \t]+', ' ')])
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-20 17:32:14 +01:00
|
|
|
expected_stdout = """
|
2021-04-26 20:07:00 +02:00
|
|
|
LINK_TYPE 2
|
|
|
|
RIGHT_ID 161
|
|
|
|
PROP_VALUE 2002
|
2022-01-20 17:32:14 +01:00
|
|
|
|
2021-04-26 20:07:00 +02:00
|
|
|
LINK_TYPE 2
|
|
|
|
RIGHT_ID 161
|
|
|
|
PROP_VALUE 2003
|
2022-01-20 17:32:14 +01:00
|
|
|
|
2021-04-26 20:07:00 +02:00
|
|
|
LINK_TYPE 2
|
|
|
|
RIGHT_ID 161
|
|
|
|
PROP_VALUE 2002
|
2022-01-20 17:32:14 +01:00
|
|
|
|
2021-04-26 20:07:00 +02:00
|
|
|
LINK_TYPE 2
|
|
|
|
RIGHT_ID 161
|
2022-01-20 17:32:14 +01:00
|
|
|
PROP_VALUE 2003
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2022-01-20 17:32:14 +01:00
|
|
|
|
|
|
|
expected_stderr = """
|
2021-04-26 20:07:00 +02:00
|
|
|
Statement failed, SQLSTATE = 22018
|
|
|
|
conversion error from string "any string"
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
|
|
|
@pytest.mark.version('>=2.5.0')
|
2022-01-20 17:32:14 +01:00
|
|
|
def test_1(act: Action):
|
|
|
|
act.expected_stdout = expected_stdout
|
|
|
|
act.expected_stderr = expected_stderr
|
|
|
|
act.execute()
|
|
|
|
assert (act.clean_stderr == act.clean_expected_stderr and
|
|
|
|
act.clean_stdout == act.clean_expected_stdout)
|
2021-04-26 20:07:00 +02:00
|
|
|
|