mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-02-02 02:40:42 +01:00
Action.files_dir + XFAIL for not implemented
This commit is contained in:
parent
eaaa5d410e
commit
0c47f798c6
@ -185,10 +185,10 @@ act_1 = python_act('db_1', substitutions=substitutions_1)
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action):
|
||||
# Read script and expected stdout from zip file
|
||||
datafile = Path(act_1.vars['files'] / 'core_2115.zip',
|
||||
datafile = Path(act_1.files_dir / 'core_2115.zip',
|
||||
at='tmp_core_2115_queries_with_long_plans.sql')
|
||||
act_1.script = datafile.read_text()
|
||||
datafile = Path(act_1.vars['files'] / 'core_2115.zip',
|
||||
datafile = Path(act_1.files_dir / 'core_2115.zip',
|
||||
at='tmp_core_2115_check_txt_of_long_plans.log')
|
||||
act_1.expected_stdout = datafile.read_text()
|
||||
act_1.execute()
|
||||
|
@ -74,7 +74,7 @@ expected_stderr_1 = """
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action):
|
||||
script_file = Path(act_1.vars['files'] / 'core_3097.zip',
|
||||
script_file = Path(act_1.files_dir / 'core_3097.zip',
|
||||
at='core_3097_script.sql')
|
||||
act_1.script = script_file.read_text()
|
||||
act_1.expected_stdout = expected_stdout_1
|
||||
|
@ -167,6 +167,7 @@ test_user_2 = user_factory('db_2', name='tmp$c3511', password='123', plugin='Srp
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_2(act_2: Action, test_user_2: User):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -296,7 +296,7 @@ non_privileged_user = user_factory('db_1', name='tmp_c4731_manager', password='1
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action, dba_privileged_user: User, non_privileged_user: User, capsys):
|
||||
# Run prepare script
|
||||
prep_script = (act_1.vars['files'] / 'core_4731.sql').read_text()
|
||||
prep_script = (act_1.files_dir / 'core_4731.sql').read_text()
|
||||
prep_script = prep_script % {'dba_privileged_name': dba_privileged_user.name,
|
||||
'non_privileged_name': non_privileged_user.name}
|
||||
act_1.isql(switches=['-q'], input=prep_script)
|
||||
|
@ -267,7 +267,7 @@ expected_stdout_2 = """
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
def test_2(act_2: Action, capsys):
|
||||
sql_text = (act_2.vars['files'] / 'core_4766.sql').read_text()
|
||||
sql_text = (act_2.files_dir / 'core_4766.sql').read_text()
|
||||
# ::: NB :::
|
||||
# Only Legacy_UserManager is checked for FB 4.0. Srp has totally different behaviour, at least for 4.0.0.1714.
|
||||
# Sent letter to dimitr and alex, 05.01.2020 22:00.
|
||||
|
@ -119,12 +119,12 @@ expected_stdout_1 = """
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action):
|
||||
# Read FNC scripts from zip file and execute it
|
||||
script_file = Path(act_1.vars['files'] / 'core_4880.zip',
|
||||
script_file = Path(act_1.files_dir / 'core_4880.zip',
|
||||
at='core_4880_fnc.tmp')
|
||||
act_1.script = script_file.read_text()
|
||||
act_1.execute()
|
||||
# Read PKG scripts from zip file and execute it
|
||||
script_file = Path(act_1.vars['files'] / 'core_4880.zip',
|
||||
script_file = Path(act_1.files_dir / 'core_4880.zip',
|
||||
at='core_4880_pkg.tmp')
|
||||
act_1.script = script_file.read_text()
|
||||
act_1.execute()
|
||||
|
@ -44,7 +44,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action):
|
||||
script_file = Path(act_1.vars['files'] / 'core_4881.zip',
|
||||
script_file = Path(act_1.files_dir / 'core_4881.zip',
|
||||
at='core_4881_script.sql')
|
||||
act_1.script = script_file.read_text()
|
||||
act_1.expected_stdout = expected_stdout_1
|
||||
|
@ -56,7 +56,7 @@ expected_stdout_1 = """
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action):
|
||||
act_1.expected_stdout = expected_stdout_1
|
||||
act_1.isql(switches=[], input_file=act_1.vars['files'] / 'core_4882.sql')
|
||||
act_1.isql(switches=[], input_file=act_1.files_dir / 'core_4882.sql')
|
||||
assert act_1.clean_stdout == act_1.clean_expected_stdout
|
||||
|
||||
|
||||
|
@ -131,7 +131,7 @@ fdb_file_1 = temp_file('tmp_core_5078.fdb')
|
||||
|
||||
@pytest.mark.version('>=2.5.6')
|
||||
def test_1(act_1: Action, fbk_file_1: Path, fdb_file_1: Path):
|
||||
zipped_fbk_file = zipfile.Path(act_1.vars['files'] / 'core_5078.zip',
|
||||
zipped_fbk_file = zipfile.Path(act_1.files_dir / 'core_5078.zip',
|
||||
at='tmp_core_5078.fbk')
|
||||
fbk_file_1.write_bytes(zipped_fbk_file.read_bytes())
|
||||
with act_1.connect_server() as srv:
|
||||
|
@ -177,7 +177,7 @@ fdb_file_1 = temp_file('tmp_core_5207.fdb')
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action, fbk_file_1: Path, fdb_file_1: Path, capsys):
|
||||
zipped_fbk_file = zipfile.Path(act_1.vars['files'] / 'core_5207.zip',
|
||||
zipped_fbk_file = zipfile.Path(act_1.files_dir / 'core_5207.zip',
|
||||
at='core_5207.fbk')
|
||||
fbk_file_1.write_bytes(zipped_fbk_file.read_bytes())
|
||||
with act_1.connect_server() as srv:
|
||||
|
@ -168,7 +168,7 @@ fdb_file_1 = temp_file('core_5579_broken_nn.fdb')
|
||||
@pytest.mark.version('>=2.5.8')
|
||||
def test_1(act_1: Action, fdb_file_1: Path, fbk_file_1: Path):
|
||||
pattern = re.compile('[.*]*request\\s+synchronization\\s+error\\.*', re.IGNORECASE)
|
||||
zipped_fbk_file = zipfile.Path(act_1.vars['files'] / 'core_5579_broken_nn.zip',
|
||||
zipped_fbk_file = zipfile.Path(act_1.files_dir / 'core_5579_broken_nn.zip',
|
||||
at='core_5579_broken_nn.fbk')
|
||||
fbk_file_1.write_bytes(zipped_fbk_file.read_bytes())
|
||||
with act_1.connect_server() as srv:
|
||||
|
@ -214,7 +214,7 @@ blob_src_1 = temp_file('core_5618.bin')
|
||||
|
||||
@pytest.mark.version('>=3.0.3')
|
||||
def test_1(act_1: Action, blob_src_1: Path):
|
||||
zipped_blob_file = zipfile.Path(act_1.vars['files'] / 'core_5618.zip',
|
||||
zipped_blob_file = zipfile.Path(act_1.files_dir / 'core_5618.zip',
|
||||
at='core_5618.bin')
|
||||
blob_src_1.write_bytes(zipped_blob_file.read_bytes())
|
||||
#
|
||||
|
@ -219,7 +219,7 @@ sec_fdb_1 = temp_file('core5637-security3.fdb')
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
def test_1(act_1: Action, sec_fbk_1: Path, sec_fdb_1: Path):
|
||||
zipped_fbk_file = zipfile.Path(act_1.vars['files'] / 'core_5637.zip',
|
||||
zipped_fbk_file = zipfile.Path(act_1.files_dir / 'core_5637.zip',
|
||||
at='core5637-security3.fbk')
|
||||
sec_fbk_1.write_bytes(zipped_fbk_file.read_bytes())
|
||||
#
|
||||
|
@ -157,7 +157,7 @@ fdb_file_1 = temp_file('bad_plan_5659.fdb')
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action, fbk_file_1: Path, fdb_file_1: Path):
|
||||
zipped_fbk_file = zipfile.Path(act_1.vars['files'] / 'core_5659.zip',
|
||||
zipped_fbk_file = zipfile.Path(act_1.files_dir / 'core_5659.zip',
|
||||
at='core_5659.fbk')
|
||||
fbk_file_1.write_bytes(zipped_fbk_file.read_bytes())
|
||||
#
|
||||
|
@ -193,7 +193,7 @@ fdb_file_1 = temp_file('check_restored_5719.fdb')
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action, fbk_file_1: Path, fdb_file_1: Path):
|
||||
zipped_fbk_file = zipfile.Path(act_1.vars['files'] / 'core_5719-ods-11_2.zip',
|
||||
zipped_fbk_file = zipfile.Path(act_1.files_dir / 'core_5719-ods-11_2.zip',
|
||||
at='core5719-ods-11_2.fbk')
|
||||
fbk_file_1.write_bytes(zipped_fbk_file.read_bytes())
|
||||
log_before = act_1.get_firebird_log()
|
||||
|
@ -175,7 +175,7 @@ fbk_file = temp_file('core_5965.fbk')
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
def test_1(act_1: Action, fbk_file: Path, db_1_tmp: Database, capsys):
|
||||
zipped_fbk_file = zipfile.Path(act_1.vars['files'] / 'core_5965.zip',
|
||||
zipped_fbk_file = zipfile.Path(act_1.files_dir / 'core_5965.zip',
|
||||
at='core_5965.fbk')
|
||||
fbk_file.write_bytes(zipped_fbk_file.read_bytes())
|
||||
#
|
||||
|
@ -138,7 +138,7 @@ fbk_file = temp_file('core_6023.fbk')
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
def test_1(act_1: Action, fdb_112_file: Path, fbk_file: Path):
|
||||
zipped_fdb_file = zipfile.Path(act_1.vars['files'] / 'core_6023-ods-11_2-fdb.zip',
|
||||
zipped_fdb_file = zipfile.Path(act_1.files_dir / 'core_6023-ods-11_2-fdb.zip',
|
||||
at='core_6023-ods-11_2.fdb')
|
||||
fdb_112_file.write_bytes(zipped_fdb_file.read_bytes())
|
||||
# Change permissions
|
||||
|
@ -254,7 +254,7 @@ ddl_probes = ["""
|
||||
|
||||
@pytest.mark.version('>=3.0.5')
|
||||
def test_1(act_1: Action, fbk_file_1: Path, db_1_tmp: Database, capsys):
|
||||
zipped_fbk_file = zipfile.Path(act_1.vars['files'] / 'core_6028_25.zip',
|
||||
zipped_fbk_file = zipfile.Path(act_1.files_dir / 'core_6028_25.zip',
|
||||
at='core_6028_25.fbk')
|
||||
fbk_file_1.write_bytes(zipped_fbk_file.read_bytes())
|
||||
#
|
||||
|
@ -275,7 +275,7 @@ def test_1(act_1: Action, user_0_1: User, user_1_1: User, user_2_1: User):
|
||||
script_vars = {'dsn': act_1.db.dsn,
|
||||
'user_name': act_1.db.user,
|
||||
'user_password': act_1.db.password,}
|
||||
script_file = act_1.vars['files'] / 'core_6078.sql'
|
||||
script_file = act_1.files_dir / 'core_6078.sql'
|
||||
script = script_file.read_text() % script_vars
|
||||
act_1.expected_stdout = expected_stdout_1
|
||||
act_1.isql(switches=['-q'], input=script, combine_output=True)
|
||||
@ -532,7 +532,7 @@ def test_2(act_2: Action, user_0_2: User, user_1_2: User, user_2_2: User):
|
||||
script_vars = {'dsn': act_2.db.dsn,
|
||||
'user_name': act_2.db.user,
|
||||
'user_password': act_2.db.password,}
|
||||
script_file = act_2.vars['files'] / 'core_6078.sql'
|
||||
script_file = act_2.files_dir / 'core_6078.sql'
|
||||
script = script_file.read_text() % script_vars
|
||||
act_2.expected_stdout = expected_stdout_2
|
||||
act_2.isql(switches=['-q'], input=script, combine_output=True)
|
||||
|
@ -1118,6 +1118,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -89,6 +89,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -89,6 +89,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -77,6 +77,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -77,6 +77,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -77,6 +77,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -91,6 +91,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -375,6 +375,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0.6')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -69,6 +69,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -58,6 +58,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -67,6 +67,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -67,6 +67,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -72,6 +72,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -77,6 +77,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -78,6 +78,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -164,6 +164,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=2.5')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -168,6 +168,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=2.5')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -122,6 +122,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=2.5')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -2555,6 +2555,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -1393,6 +1393,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -591,6 +591,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -664,6 +664,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -1956,6 +1956,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -34,6 +34,7 @@ expected_stdout_1 = """RDB$SYSTEM_FLAG LIST
|
||||
1 SYSDBA"""
|
||||
|
||||
@pytest.mark.version('>=2.1')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -81,6 +81,7 @@ expected_stdout_1 = """[(65,)]
|
||||
[(0,)]"""
|
||||
|
||||
@pytest.mark.version('>=2.1')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -163,6 +163,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -164,6 +164,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -123,6 +123,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -403,6 +403,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0.1')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -347,6 +347,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -476,6 +476,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -1299,6 +1299,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -444,6 +444,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -444,6 +444,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0.1')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -377,6 +377,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -439,6 +439,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0.1')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -574,6 +574,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -359,6 +359,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0.1')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -500,6 +500,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0.1')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -376,6 +376,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0.1')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -353,6 +353,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -217,6 +217,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -109,6 +109,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=2.5.8')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -154,6 +154,7 @@ act_1 = python_act('db_1', substitutions=substitutions_1)
|
||||
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -71,6 +71,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -776,6 +776,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -309,6 +309,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -218,6 +218,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -217,6 +217,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -141,6 +141,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -171,6 +171,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -102,6 +102,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -207,6 +207,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -264,6 +264,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -305,6 +305,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -373,6 +373,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -124,6 +124,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=2.5.5')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -596,6 +596,7 @@ expected_stdout_1 = """
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.platform('Windows')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -49,6 +49,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=3.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -385,6 +385,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -342,6 +342,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -413,6 +413,7 @@ bt-repo mp mp_sttm_restart_max_limit.sql
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -1063,6 +1063,7 @@ bt-repo mp mp_sttm_restart_max_limit.sql
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -412,6 +412,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -396,6 +396,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -364,6 +364,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -408,6 +408,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -387,6 +387,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -401,6 +401,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -369,6 +369,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -428,6 +428,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -414,6 +414,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -398,6 +398,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -432,6 +432,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -418,6 +418,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -63,6 +63,7 @@ expected_stdout_1 = """Error while connecting to database:
|
||||
335544517"""
|
||||
|
||||
@pytest.mark.version('>=2.1')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -84,6 +84,7 @@ ID MSG
|
||||
3 Connect T3 as NONE"""
|
||||
|
||||
@pytest.mark.version('>=2.1')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -145,6 +145,7 @@ expected_stdout_1 = """
|
||||
"""
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
@ -640,6 +640,7 @@ act_1 = python_act('db_1', substitutions=substitutions_1)
|
||||
|
||||
|
||||
@pytest.mark.version('>=4.0')
|
||||
@pytest.mark.xfail
|
||||
def test_1(act_1: Action):
|
||||
pytest.fail("Test not IMPLEMENTED")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user