6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-23 14:03:06 +01:00
firebird-qa/tests/functional/index/create/test_09.py

50 lines
1.2 KiB
Python

#coding:utf-8
#
# id: functional.index.create.09
# title: CREATE UNIQUE INDEX - Table with data
# decription: CREATE UNIQUE INDEX - Table with data
#
# Dependencies:
# CREATE DATABASE
# CREATE TABLE
# INSERT
# SHOW INDEX
# tracker_id:
# min_versions: []
# versions: 1.0
# qmid: functional.index.create.create_index_09
import pytest
from firebird.qa import db_factory, isql_act, Action
# version: 1.0
# resources: None
substitutions_1 = []
init_script_1 = """CREATE TABLE t( a INTEGER);
commit;
INSERT INTO t VALUES(0);
INSERT INTO t VALUES(1);
INSERT INTO t VALUES(2);
INSERT INTO t VALUES(3);
INSERT INTO t VALUES(4);
COMMIT;"""
db_1 = db_factory(sql_dialect=3, init=init_script_1)
test_script_1 = """CREATE UNIQUE INDEX test ON t(a);
SHOW INDEX test;"""
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
expected_stdout_1 = """TEST UNIQUE INDEX ON T(A)
"""
@pytest.mark.version('>=1.0')
def test_09_1(act_1: Action):
act_1.expected_stdout = expected_stdout_1
act_1.execute()
assert act_1.clean_expected_stdout == act_1.clean_stdout