mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-23 14:03:06 +01:00
84 lines
2.3 KiB
Python
84 lines
2.3 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: functional.fkey.primary.insert_pk_07
|
|
# title: Check correct work fix with foreign key
|
|
# decription: Check foreign key work.
|
|
# Master table has primary key consisting of several fields.
|
|
# Master transaction modifies non key fields.
|
|
# Detail transaction inserts record in detail_table.
|
|
# Expected: no errors.
|
|
# Related to: CORE-1606. Ability to insert child record if parent record is locked but foreign key target unchanged.
|
|
# tracker_id:
|
|
# min_versions: []
|
|
# versions: 2.5
|
|
# qmid: functional.fkey.primary.ins_07
|
|
|
|
import pytest
|
|
from firebird.qa import db_factory, isql_act, Action
|
|
|
|
# version: 2.5
|
|
# resources: None
|
|
|
|
substitutions_1 = []
|
|
|
|
init_script_1 = """CREATE TABLE MASTER_TABLE (
|
|
ID_1 INTEGER NOT NULL,
|
|
ID_2 VARCHAR(20) NOT NULL,
|
|
INT_F INTEGER,
|
|
PRIMARY KEY (ID_1, ID_2)
|
|
);
|
|
|
|
CREATE TABLE DETAIL_TABLE (
|
|
ID INTEGER PRIMARY KEY,
|
|
FKEY_1 INTEGER,
|
|
FKEY_2 VARCHAR(20)
|
|
);
|
|
|
|
ALTER TABLE DETAIL_TABLE ADD CONSTRAINT FK_DETAIL_TABLE FOREIGN KEY (FKEY_1, FKEY_2) REFERENCES MASTER_TABLE (ID_1, ID_2);
|
|
COMMIT;
|
|
INSERT INTO MASTER_TABLE (ID_1, ID_2, INT_F) VALUES (1, 'one', 10);
|
|
COMMIT;"""
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
# test_script_1
|
|
#---
|
|
# TPB_master = (
|
|
# chr(kdb.isc_tpb_write)
|
|
# + chr(kdb.isc_tpb_read_committed) + chr(kdb.isc_tpb_rec_version)
|
|
# + chr(kdb.isc_tpb_nowait)
|
|
# )
|
|
# TPB_detail = (
|
|
# chr(kdb.isc_tpb_write)
|
|
# + chr(kdb.isc_tpb_read_committed) + chr(kdb.isc_tpb_rec_version)
|
|
# + chr(kdb.isc_tpb_nowait)
|
|
# )
|
|
# db_conn.begin(tpb=TPB_master)
|
|
# cm_1 = db_conn.cursor()
|
|
# cm_1.execute('UPDATE MASTER_TABLE SET INT_F=2')
|
|
#
|
|
# #Create second connection for change detail table
|
|
# con_detail = kdb.connect(
|
|
# dsn=dsn.encode(),
|
|
# user=user_name.encode(),
|
|
# password=user_password.encode()
|
|
# )
|
|
#
|
|
# try:
|
|
# con_detail.begin(tpb=TPB_detail)
|
|
# cd = con_detail.cursor()
|
|
# cd.execute("INSERT INTO DETAIL_TABLE (ID, FKEY_1, FKEY_2) VALUES (1, 1, 'one')")
|
|
# con_detail.commit()
|
|
# except Exception, e:
|
|
# print (e[0])
|
|
#---
|
|
#act_1 = python_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
|
|
@pytest.mark.version('>=2.5')
|
|
@pytest.mark.xfail
|
|
def test_1(db_1):
|
|
pytest.fail("Test not IMPLEMENTED")
|
|
|
|
|