mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
77 lines
2.3 KiB
Python
77 lines
2.3 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: issue-1247
|
|
ISSUE: 1247
|
|
TITLE: Containing not working correctly
|
|
DESCRIPTION:
|
|
JIRA: CORE-857
|
|
FBTEST: bugs.core_0857
|
|
NOTES:
|
|
[06.10.2022] pzotov
|
|
Could not complete adjusting for LINUX in new-qa.
|
|
DEFERRED.
|
|
|
|
"""
|
|
|
|
import platform
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
init_script = """
|
|
set echo on;
|
|
set bail on;
|
|
create collation test_coll_ci_ai for win1252 from WIN_PTBR
|
|
case insensitive
|
|
accent insensitive
|
|
;
|
|
|
|
create table test (
|
|
id int,
|
|
f01 varchar(100),
|
|
f02 varchar(100) collate WIN_PTBR
|
|
);
|
|
|
|
insert into test(id, f01) values(1, 'IHF|groß|850xC|P1');
|
|
update test set f02=f01;
|
|
commit;
|
|
create view v_test as
|
|
select octet_length(t.f01) - octet_length(replace(t.f01, 'ß', '')) as "octet_length diff:" from test t;
|
|
"""
|
|
|
|
db = db_factory(charset='WIN1252', init=init_script)
|
|
|
|
expected_stdout = """
|
|
CONNECTION_CSET WIN1252
|
|
test_1 result: <null>
|
|
test_2 result: 1
|
|
ci_ai result: 1
|
|
between result: 1
|
|
octet_length diff: 1
|
|
"""
|
|
|
|
test_script = """
|
|
set list on;
|
|
select c.rdb$character_set_name as connection_cset
|
|
from mon$attachments a
|
|
join rdb$character_sets c on a.mon$character_set_id = c.rdb$character_set_id
|
|
where a.mon$attachment_id = current_connection;
|
|
|
|
select t.id as "test_1 result:" from rdb$database r left join test t on t.f01 not containing 'P1' and t.f01 like 'IHF|gro_|850_C|P1';
|
|
select t.id as "test_2 result:" from rdb$database r left join test t on t.f01 containing 'P1' and t.f01 like 'IHF|gro_|850_C|P1';
|
|
select t.id as "ci_ai result:" from rdb$database r left join test t on lower(t.f02) = upper(t.f02);
|
|
select t.id as "between result:" from rdb$database r left join test t on lower(t.f01) between lower(t.f02) and upper(t.f02);
|
|
select * from v_test;
|
|
"""
|
|
|
|
act = isql_act('db', test_script)
|
|
|
|
@pytest.mark.skipif(platform.system() != 'Windows', reason='FIXME: see notes')
|
|
@pytest.mark.version('>=3')
|
|
def test_1(act: Action):
|
|
act.expected_stdout = expected_stdout
|
|
act.execute()
|
|
assert act.clean_stdout == act.clean_expected_stdout
|
|
|
|
|