2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2022-01-25 22:55:48 +01:00
|
|
|
ID: issue-5586
|
|
|
|
ISSUE: 5586
|
|
|
|
TITLE: Backup created under FB2.5 can be restored in FB3.0.0.32419 but not under current snapshot (FB3.0.1.32556)
|
|
|
|
DESCRIPTION:
|
|
|
|
Test does trivial attempt to restore database which was given by ticket starter as attached file.
|
|
|
|
This is done by Database fixture on its setup. No further actions required.
|
|
|
|
JIRA: CORE-5309
|
2022-02-02 15:46:19 +01:00
|
|
|
FBTEST: bugs.core_5309
|
2022-01-25 22:55:48 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-25 22:55:48 +01:00
|
|
|
db = db_factory(from_backup='core5309.fbk')
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-25 22:55:48 +01:00
|
|
|
act = python_act('db')
|
2021-04-26 20:07:00 +02:00
|
|
|
|
|
|
|
@pytest.mark.version('>=3.0.1')
|
2022-01-25 22:55:48 +01:00
|
|
|
def test_1(act: Action):
|
|
|
|
pass
|
2021-04-26 20:07:00 +02:00
|
|
|
|