mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: issue-4543
|
|
ISSUE: 4543
|
|
TITLE: Add database owner to mon$database
|
|
DESCRIPTION:
|
|
JIRA: CORE-4218
|
|
FBTEST: bugs.core_4218
|
|
"""
|
|
|
|
import pytest
|
|
from pathlib import Path
|
|
from firebird.qa import *
|
|
|
|
db = db_factory()
|
|
|
|
tmp_user: User = user_factory('db', name='TMP_U4218', password='123')
|
|
|
|
act = python_act('db', substitutions = [('[ \t]+', ' ')])
|
|
|
|
test_db = temp_file('owner-db.fdb')
|
|
|
|
@pytest.mark.version('>=3.0')
|
|
def test_1(act: Action, tmp_user: User, test_db: Path):
|
|
with act.db.connect() as con:
|
|
c = con.cursor()
|
|
c.execute('grant create database to user TMP_U4218')
|
|
con.commit()
|
|
|
|
test_script = f"""
|
|
create database 'localhost:{test_db}' user {tmp_user.name} password '{tmp_user.password}';
|
|
set list on;
|
|
select current_user as who_am_i, mon$owner as who_is_owner from mon$database;
|
|
commit;
|
|
connect 'localhost:{test_db}';
|
|
select current_user as who_am_i, mon$owner as who_is_owner from mon$database;
|
|
commit;
|
|
drop database;
|
|
quit;
|
|
"""
|
|
expected_stdout = f"""
|
|
WHO_AM_I {tmp_user.name.upper()}
|
|
WHO_IS_OWNER {tmp_user.name.upper()}
|
|
WHO_AM_I SYSDBA
|
|
WHO_IS_OWNER {tmp_user.name.upper()}
|
|
"""
|
|
|
|
act.expected_stdout = expected_stdout
|
|
act.isql(switches=['-q'], input=test_script, connect_db=False, combine_output = True)
|
|
assert act.clean_stdout == act.clean_expected_stdout
|