mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-23 05:53:06 +01:00
46 lines
1.1 KiB
Python
46 lines
1.1 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: bugs.core_4461
|
|
# title: nbackup prints error messages to stdout instead stderr
|
|
# decription:
|
|
# tracker_id: CORE-4461
|
|
# min_versions: ['2.5.4']
|
|
# versions: 2.5.4
|
|
# qmid:
|
|
|
|
import pytest
|
|
from firebird.qa import db_factory, python_act, Action
|
|
|
|
# version: 2.5.4
|
|
# resources: None
|
|
|
|
substitutions_1 = [('Failure: Database error', '')]
|
|
|
|
init_script_1 = """"""
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
# test_script_1
|
|
#---
|
|
# runProgram('nbackup',['-user','nonExistentFoo','-pas','invalidBar','-L',dsn])
|
|
#---
|
|
|
|
act_1 = python_act('db_1', substitutions=substitutions_1)
|
|
|
|
expected_stderr_1 = """
|
|
[
|
|
PROBLEM ON "attach database".
|
|
Your user name and password are not defined. Ask your database administrator to set up a Firebird login.
|
|
SQLCODE:-902
|
|
]
|
|
"""
|
|
|
|
@pytest.mark.version('>=2.5.4')
|
|
def test_1(act_1: Action):
|
|
act_1.expected_stderr = expected_stderr_1
|
|
act_1.nbackup(switches=['-user', 'nonExistentFoo', '-password', 'invalidBar',
|
|
'-L', act_1.db.dsn], credentials=False)
|
|
assert act_1.clean_stderr == act_1.clean_expected_stderr
|
|
|
|
|