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

92 lines
3.3 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-22 21:59:15 +01:00
"""
ID: issue-3964
ISSUE: 3964
TITLE: Can insert DUPLICATE keys in UNIQUE index
DESCRIPTION:
JIRA: CORE-3610
FBTEST: bugs.core_3610
2022-01-22 21:59:15 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-22 21:59:15 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-22 21:59:15 +01:00
substitutions = [('Data source : Firebird::localhost:.*', 'Data source : Firebird::localhost:'),
('335544382 : Problematic key', '335545072 : Problematic key'),
('-At block line: [\\d]+, col: [\\d]+', '-At block line')]
2021-04-26 20:07:00 +02:00
2022-01-22 21:59:15 +01:00
db = db_factory()
2021-04-26 20:07:00 +02:00
2022-01-22 21:59:15 +01:00
test_script = """
2021-04-26 20:07:00 +02:00
recreate table test(id int not null, f01 int, constraint test_unq unique(f01) using index test_unq);
commit;
insert into test values(1, 1 );
insert into test values(2,null);
insert into test values(3,null);
2022-01-22 21:59:15 +01:00
commit;
set transaction read committed record_version no wait;
update test set f01=null where id=1;
2021-04-26 20:07:00 +02:00
set term ^;
execute block as
begin
execute statement ('update test set f01 = ? where id = ?') (1, 3)
with autonomous transaction
on external ( 'localhost:'||rdb$get_context('SYSTEM','DB_NAME') )
as user 'sysdba' password 'masterkey' role 'role_02'
2022-01-22 21:59:15 +01:00
;
2021-04-26 20:07:00 +02:00
end
^
set term ;^
rollback;
-- ||||||||||||||||||||||||||||
-- ###################################||| FB 4.0+, SS and SC |||##############################
-- ||||||||||||||||||||||||||||
-- If we check SS or SC and ExtConnPoolLifeTime > 0 (config parameter FB 4.0+) then current
-- DB (bugs.core_NNNN.fdb) will be 'captured' by firebird.exe process and fbt_run utility
-- will not able to drop this database at the final point of test.
-- Moreover, DB file will be hold until all activity in firebird.exe completed and AFTER this
-- we have to wait for <ExtConnPoolLifeTime> seconds after it (discussion and small test see
-- in the letter to hvlad and dimitr 13.10.2019 11:10).
-- This means that one need to kill all connections to prevent from exception on cleanup phase:
-- SQLCODE: -901 / lock time-out on wait transaction / object <this_test_DB> is in use
-- #############################################################################################
delete from mon$attachments where mon$attachment_id != current_connection;
2022-01-22 21:59:15 +01:00
commit;
2021-04-26 20:07:00 +02:00
set list on;
select * from test;
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-22 21:59:15 +01:00
act = isql_act('db', test_script, substitutions=substitutions)
2021-04-26 20:07:00 +02:00
2022-01-22 21:59:15 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
ID 1
F01 1
ID 2
F01 <null>
ID 3
F01 <null>
2021-12-22 20:23:11 +01:00
"""
2022-01-22 21:59:15 +01:00
expected_stderr = """
2021-04-26 20:07:00 +02:00
Statement failed, SQLSTATE = 42000
Execute statement error at isc_dsql_execute2 :
335544665 : violation of PRIMARY or UNIQUE KEY constraint "TEST_UNQ" on table "TEST"
335545072 : Problematic key value is ("F01" = 1)
Statement : update test set f01 = ? where id = ?
Data source : Firebird::localhost:
-At block line: 3, col: 9
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
@pytest.mark.es_eds
2022-01-22 21:59:15 +01:00
@pytest.mark.version('>=3')
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