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_4839_test.py

45 lines
1.2 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-24 20:27:02 +01:00
"""
ID: issue-5135
ISSUE: 5135
TITLE: SHOW GRANTS does not display info about exceptions which were granted to user
DESCRIPTION:
JIRA: CORE-4839
FBTEST: bugs.core_4839
2022-01-24 20:27:02 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-24 20:27:02 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-24 20:27:02 +01:00
db = db_factory()
2021-04-26 20:07:00 +02:00
2022-01-24 20:27:02 +01:00
test_user = user_factory('db', name='tmp$c4839', password='123')
2021-04-26 20:07:00 +02:00
2022-01-24 20:27:02 +01:00
test_script = """
2021-04-26 20:07:00 +02:00
recreate exception exc_foo 'Houston we have a problem: next sequence value is @1';
recreate sequence gen_bar start with 9223372036854775807 increment by 2147483647;
commit;
grant usage on exception exc_foo to tmp$c4839; -- this wasn`t shown before rev. 61822 (build 3.0.0.31881), 2015-06-14 11:35
grant usage on sequence gen_bar to tmp$c4839;
2021-10-21 19:29:23 +02:00
commit;
2021-04-26 20:07:00 +02:00
show grants;
commit;
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-24 20:27:02 +01:00
act = isql_act('db', test_script)
2021-04-26 20:07:00 +02:00
2022-01-24 20:27:02 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
/* Grant permissions for this database */
GRANT USAGE ON SEQUENCE GEN_BAR TO USER TMP$C4839
GRANT USAGE ON EXCEPTION EXC_FOO TO USER TMP$C4839
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
@pytest.mark.version('>=3.0')
2022-01-24 20:27:02 +01:00
def test_1(act: Action, test_user: User):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout
2021-04-26 20:07:00 +02:00