-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unit test for database upgrader
- Loading branch information
Showing
4 changed files
with
134 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# THIS FILE IS PART OF THE CYLC WORKFLOW ENGINE. | ||
# Copyright (C) NIWA & British Crown (Met Office) & Contributors. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
""" | ||
Tests for worklfow_db_manager | ||
""" | ||
|
||
import pytest | ||
import sqlite3 | ||
|
||
from cylc.flow.exceptions import CylcError | ||
from cylc.flow.workflow_db_mgr import ( | ||
CylcWorkflowDAO, | ||
WorkflowDatabaseManager, | ||
) | ||
|
||
|
||
@pytest.fixture | ||
def _setup_db(tmp_path): | ||
def _inner(values): | ||
db_file = tmp_path / 'sql.db' | ||
conn = sqlite3.connect(str(db_file)) | ||
conn.execute(( | ||
r'CREATE TABLE task_states(name TEXT, cycle TEXT, flow_nums TEXT,' | ||
r' time_created TEXT, time_updated TEXT, submit_num INTEGER,' | ||
r' status TEXT, flow_wait INTEGER, is_manual_submit INTEGER,' | ||
r' PRIMARY KEY(name, cycle, flow_nums));') | ||
) | ||
conn.execute(( | ||
r'CREATE TABLE task_jobs(cycle TEXT, name TEXT,' | ||
r' submit_num INTEGER, is_manual_submit INTEGER,' | ||
r' try_num INTEGER, time_submit TEXT, time_submit_exit TEXT,' | ||
r' submit_status INTEGER, time_run TEXT, time_run_exit TEXT,' | ||
r' run_signal TEXT, run_status INTEGER, platform_name TEXT,' | ||
r' job_runner_name TEXT, job_id TEXT,' | ||
r' PRIMARY KEY(cycle, name, submit_num));' | ||
)) | ||
conn.execute(values) | ||
conn.execute(( | ||
r"INSERT INTO task_jobs VALUES" | ||
r" ('10090101T0000Z', 'foo', 1, 0, 1, '2022-12-05T14:46:06Z'," | ||
r" '2022-12-05T14:46:07Z', 0, '2022-12-05T14:46:10Z'," | ||
r" '2022-12-05T14:46:39Z', '', 0, 'localhost', 'background'," | ||
r" 4377)" | ||
)) | ||
conn.commit() | ||
return db_file | ||
return _inner | ||
|
||
|
||
def test_upgrade_pre_804_fails_on_multiple_flows(_setup_db): | ||
values = ( | ||
r'INSERT INTO task_states VALUES' | ||
r" ('foo', '10050101T0000Z', '[1, 3]'," | ||
r" '2022-12-05T14:46:33Z'," | ||
r" '2022-12-05T14:46:40Z', 1, 'succeeded', 0, 0)" | ||
) | ||
db_file_name = _setup_db(values) | ||
pri_dao = CylcWorkflowDAO(db_file_name) | ||
with pytest.raises( | ||
CylcError, | ||
match='^Cannot .* 8.0.3 to 8.0.4 .* used.$' | ||
): | ||
WorkflowDatabaseManager.upgrade_pre_804(pri_dao) | ||
|
||
|
||
def test_upgrade_pre_804_pass_on_single_flow(_setup_db): | ||
values = ( | ||
r'INSERT INTO task_states VALUES' | ||
r" ('foo', '10050101T0000Z', '[1]'," | ||
r" '2022-12-05T14:46:33Z'," | ||
r" '2022-12-05T14:46:40Z', 1, 'succeeded', 0, 0)" | ||
) | ||
db_file_name = _setup_db(values) | ||
pri_dao = CylcWorkflowDAO(db_file_name) | ||
WorkflowDatabaseManager.upgrade_pre_804(pri_dao) | ||
conn = sqlite3.connect(db_file_name) | ||
result = conn.execute('SELECT flow_nums FROM task_jobs;').fetchall()[0][0] | ||
assert result == '[1]' |