mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
80 lines
2.8 KiB
Python
80 lines
2.8 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: gtcs.ref_integ_inactive_pk_index
|
|
TITLE: Index that is used for PRIMARY KEY should not be avail for INACTIVE
|
|
DESCRIPTION:
|
|
Original test see in:
|
|
https://github.com/FirebirdSQL/fbtcs/blob/master/GTCS/tests/REF_INT.7.ISQL.script
|
|
FBTEST: functional.gtcs.ref_integ_inactive_pk_index
|
|
NOTES:
|
|
[07.08.2024] pzotov
|
|
Splitted expected* text because system triggers now are created in C++/GDML code
|
|
See https://github.com/FirebirdSQL/firebird/pull/8202
|
|
Commit (05-aug-2024 13:45):
|
|
https://github.com/FirebirdSQL/firebird/commit/0cc8de396a3c2bbe13b161ecbfffa8055e7b4929
|
|
"""
|
|
|
|
import os
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
db = db_factory()
|
|
|
|
act = python_act('db')
|
|
|
|
test_expected_stdout = """
|
|
Records affected: 1
|
|
"""
|
|
|
|
expected_stderr_5x = """
|
|
Statement failed, SQLSTATE = 27000
|
|
unsuccessful metadata update
|
|
-ALTER INDEX DEPT_KEY failed
|
|
-action cancelled by trigger (2) to preserve data integrity
|
|
-Cannot deactivate index used by an integrity constraint
|
|
|
|
Statement failed, SQLSTATE = 23000
|
|
violation of PRIMARY or UNIQUE KEY constraint "DEPT_KEY" on table "DEPARTMENT"
|
|
-Problematic key value is ("DEPT_NO" = 1)
|
|
"""
|
|
expected_stderr_6x = """
|
|
Statement failed, SQLSTATE = 42000
|
|
unsuccessful metadata update
|
|
-ALTER INDEX DEPT_KEY failed
|
|
-Cannot deactivate index used by an integrity constraint
|
|
|
|
Statement failed, SQLSTATE = 23000
|
|
violation of PRIMARY or UNIQUE KEY constraint "DEPT_KEY" on table "DEPARTMENT"
|
|
-Problematic key value is ("DEPT_NO" = 1)
|
|
"""
|
|
|
|
@pytest.mark.version('>=3.0')
|
|
def test_1(act: Action):
|
|
|
|
sql_init = (act.files_dir / 'gtcs-ref-integ-init.sql').read_text()
|
|
sql_addi = '''
|
|
alter index dept_key inactive;
|
|
commit;
|
|
-- Check that PK index still in use: following must FAIL:
|
|
insert into department( dept_no, dept_name) values (1, 'k1');
|
|
|
|
-- Check that it is ALLOWED to insert record into child table (employee)
|
|
-- if value of dept_no exists in the parent table (department)
|
|
-- QUOTE FROM SOURCE TEST:
|
|
-- "... attempts to insert valid records into another table connected
|
|
-- to this table by foreign key constraint. The current behaviour is
|
|
-- that the insertion of valid records fails because of the index being
|
|
-- inactivated in the other connected table (bug 7517)"
|
|
set count on;
|
|
insert into employee values (11, 'e11', 1); -- ==> Records affected: 1
|
|
'''
|
|
|
|
act.expected_stdout = test_expected_stdout
|
|
act.expected_stderr = expected_stderr_5x if act.is_version('<6') else expected_stderr_6x
|
|
|
|
act.isql(switches=['-q'], input = os.linesep.join( (sql_init, sql_addi) ) )
|
|
|
|
assert (act.clean_stdout == act.clean_expected_stdout and
|
|
act.clean_stderr == act.clean_expected_stderr)
|