Skip to content
Snippets Groups Projects
Commit bca5350b authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

refactor test structure

parent c0ceb880
No related branches found
No related tags found
1 merge request!340restore capability and workflow
This commit is part of merge request !340. Comments created here will be created in the context of that merge request.
Showing
with 55 additions and 22 deletions
...@@ -18,13 +18,15 @@ cal_settings = { ...@@ -18,13 +18,15 @@ cal_settings = {
"homeForReprocessing": "/home/casa/packages/pipeline/current", "homeForReprocessing": "/home/casa/packages/pipeline/current",
"rootDirectory": "/tmp/workspaces_tmp/", "rootDirectory": "/tmp/workspaces_tmp/",
"processingDirectory": "tmpiox5trbp", "processingDirectory": "tmpiox5trbp",
"metadata": "test/test.json", "metadata": "test/input_files/test.json",
"ppr": "test/PPR.xml", "ppr": "test/input_files/PPR.xml",
"product_type": "standard-cal", "product_type": "standard-cal",
} }
test_ppr = AbstractTextFile(filename="test/PPR.xml", content=Path("test/PPR.xml").read_text()) test_ppr = AbstractTextFile(
filename="test/input_files/PPR.xml", content=Path("test/input_files/PPR.xml").read_text()
)
test_cal_metadata = AbstractTextFile( test_cal_metadata = AbstractTextFile(
filename="test/test.json", content=Path("test/test.json").read_text() filename="test/input_files/test.json", content=Path("test/input_files/test.json").read_text()
) )
img_settings = { img_settings = {
...@@ -32,15 +34,17 @@ img_settings = { ...@@ -32,15 +34,17 @@ img_settings = {
"homeForReprocessing": "/home/casa/packages/pipeline/current", "homeForReprocessing": "/home/casa/packages/pipeline/current",
"rootDirectory": "/tmp/workspaces_tmp/", "rootDirectory": "/tmp/workspaces_tmp/",
"processingDirectory": "tmpiox5trbp", "processingDirectory": "tmpiox5trbp",
"metadata": "test/image-metadata.json", "metadata": "test/input_files/image-metadata.json",
"ppr": "test/cmsimage-PPR.xml", "ppr": "test/input_files/cmsimage-PPR.xml",
"product_type": "standard-img", "product_type": "standard-img",
} }
test_img_ppr = AbstractTextFile( test_img_ppr = AbstractTextFile(
filename="test/cmsimage-PPR.xml", content=Path("test/cmsimage-PPR.xml").read_text() filename="test/input_files/cmsimage-PPR.xml",
content=Path("test/input_files/cmsimage-PPR.xml").read_text(),
) )
test_img_metadata = AbstractTextFile( test_img_metadata = AbstractTextFile(
filename="test/image-metadata.json", content=Path("test/image-metadata.json").read_text() filename="test/input_files/image-metadata.json",
content=Path("test/input_files/image-metadata.json").read_text(),
) )
...@@ -138,7 +142,7 @@ class TestAuditFiles: ...@@ -138,7 +142,7 @@ class TestAuditFiles:
ppr = AuditFiles([test_cal_metadata, test_ppr], cal_settings).correct_for_condor( ppr = AuditFiles([test_cal_metadata, test_ppr], cal_settings).correct_for_condor(
ppr=test_ppr ppr=test_ppr
) )
assert ppr.filename == "test/PPR.xml" assert ppr.filename == "test/input_files/PPR.xml"
def test_audit(self): def test_audit(self):
result = AuditFiles([test_cal_metadata, test_ppr], cal_settings).audit() result = AuditFiles([test_cal_metadata, test_ppr], cal_settings).audit()
......
...@@ -12,8 +12,8 @@ expected_settings = { ...@@ -12,8 +12,8 @@ expected_settings = {
"rootDirectory": "/lustre/aoc/cluster/pipeline/docker/workspaces/spool", "rootDirectory": "/lustre/aoc/cluster/pipeline/docker/workspaces/spool",
"processingDirectory": "tmpo1ca1pp_", "processingDirectory": "tmpo1ca1pp_",
"parent_path": "/lustre/aoc/cluster/pipeline/docker/workspaces/spool/tmpo1ca1pp_", "parent_path": "/lustre/aoc/cluster/pipeline/docker/workspaces/spool/tmpo1ca1pp_",
"metadata": "test/test.json", "metadata": "test/input_files/test.json",
"ppr": "test/PPR.xml", "ppr": "test/input_files/PPR.xml",
"product_type": "standard-cal", "product_type": "standard-cal",
} }
args = argparse.Namespace() args = argparse.Namespace()
...@@ -21,7 +21,7 @@ args = argparse.Namespace() ...@@ -21,7 +21,7 @@ args = argparse.Namespace()
class TestPalaver: class TestPalaver:
def test_get_settings(self): def test_get_settings(self):
args.standard_cal = ["test/test.json", "test/PPR.xml"] args.standard_cal = ["test/input_files/test.json", "test/input_files/PPR.xml"]
args.restore = False args.restore = False
with patch( with patch(
...@@ -41,7 +41,7 @@ class TestPalaver: ...@@ -41,7 +41,7 @@ class TestPalaver:
@patch("os.chdir") @patch("os.chdir")
@patch("os.getcwd") @patch("os.getcwd")
def test_main_cal(self, mock_cwd, mock_chdir): def test_main_cal(self, mock_cwd, mock_chdir):
args.standard_cal = ["test/test.json", "test/PPR.xml"] args.standard_cal = ["test/input_files/test.json", "test/input_files/PPR.xml"]
args.integrated = False args.integrated = False
with patch("argparse.ArgumentParser.parse_args", MagicMock(return_value=args)) as mock_args: with patch("argparse.ArgumentParser.parse_args", MagicMock(return_value=args)) as mock_args:
...@@ -54,7 +54,10 @@ class TestPalaver: ...@@ -54,7 +54,10 @@ class TestPalaver:
@patch("os.chdir") @patch("os.chdir")
@patch("os.getcwd") @patch("os.getcwd")
def test_main_img(self, mock_cwd, mock_chdir): def test_main_img(self, mock_cwd, mock_chdir):
args.standard_img = ["test/image-metadata.json", "test/cmsimage-PPR.xml"] args.standard_img = [
"test/input_files/image-metadata.json",
"test/input_files/cmsimage-PPR.xml",
]
with patch("argparse.ArgumentParser.parse_args", MagicMock(return_value=args)) as mock_args: with patch("argparse.ArgumentParser.parse_args", MagicMock(return_value=args)) as mock_args:
with patch("casa_envoy.launchers.ImagingLauncher.launch_casa") as img_launcher: with patch("casa_envoy.launchers.ImagingLauncher.launch_casa") as img_launcher:
......
...@@ -15,13 +15,14 @@ parameters = expected_settings = { ...@@ -15,13 +15,14 @@ parameters = expected_settings = {
"rootDirectory": "/lustre/aoc/cluster/pipeline/docker/workspaces/spool", "rootDirectory": "/lustre/aoc/cluster/pipeline/docker/workspaces/spool",
"processingDirectory": "tmpo1ca1pp_", "processingDirectory": "tmpo1ca1pp_",
"parent_path": "/lustre/aoc/cluster/pipeline/docker/workspaces/spool/tmpo1ca1pp_", "parent_path": "/lustre/aoc/cluster/pipeline/docker/workspaces/spool/tmpo1ca1pp_",
"metadata": "test/restore.json", "metadata": "test/input_files/restore.json",
"ppr": "test/PPR.xml", "ppr": "test/input_files/PPR.xml",
"product_type": "restore", "product_type": "restore",
} }
test_restore_metadata = AbstractTextFile( test_restore_metadata = AbstractTextFile(
filename="test/restore.json", content=Path("test/restore.json").read_text() filename="test/input_files/restore.json",
content=Path("test/input_files/restore.json").read_text(),
) )
foundation = RestoreFoundation(parameters=parameters, metadata=test_restore_metadata) foundation = RestoreFoundation(parameters=parameters, metadata=test_restore_metadata)
......
...@@ -8,8 +8,8 @@ cal_parameters = { ...@@ -8,8 +8,8 @@ cal_parameters = {
"homeForReprocessing": "/home/casa/packages/pipeline/current", "homeForReprocessing": "/home/casa/packages/pipeline/current",
"rootDirectory": "/tmp/workspaces_tmp/", "rootDirectory": "/tmp/workspaces_tmp/",
"processingDirectory": "tmpiox5trbp", "processingDirectory": "tmpiox5trbp",
"metadata": "test/test.json", "metadata": "test/input_files/test.json",
"ppr": "test/PPR.xml", "ppr": "test/input_files/PPR.xml",
"product_type": "standard-cal", "product_type": "standard-cal",
} }
img_parameters = { img_parameters = {
...@@ -17,8 +17,8 @@ img_parameters = { ...@@ -17,8 +17,8 @@ img_parameters = {
"homeForReprocessing": "/home/casa/packages/pipeline/current", "homeForReprocessing": "/home/casa/packages/pipeline/current",
"rootDirectory": "/tmp/workspaces_tmp/", "rootDirectory": "/tmp/workspaces_tmp/",
"processingDirectory": "tmpiox5trbp", "processingDirectory": "tmpiox5trbp",
"metadata": "test/image-metadata.json", "metadata": "test/input_files/image-metadata.json",
"ppr": "test/cmsimage-PPR.xml", "ppr": "test/input_files/cmsimage-PPR.xml",
"product_type": "standard-img", "product_type": "standard-img",
} }
...@@ -28,7 +28,7 @@ class TestCasaLauncher: ...@@ -28,7 +28,7 @@ class TestCasaLauncher:
CasaLauncher(parameters=cal_parameters).setup_environment() CasaLauncher(parameters=cal_parameters).setup_environment()
assert os.environ.get("SCIPIPE_ROOTDIR") == cal_parameters["rootDirectory"] assert os.environ.get("SCIPIPE_ROOTDIR") == cal_parameters["rootDirectory"]
assert os.environ.get("CASA_HOME") == cal_parameters["homeForReprocessing"] assert os.environ.get("CASA_HOME") == cal_parameters["homeForReprocessing"]
assert os.environ.get("PPR_FILENAME") == "test/PPR.xml" assert os.environ.get("PPR_FILENAME") == "test/input_files/PPR.xml"
@patch("subprocess.run") @patch("subprocess.run")
@patch("os.chdir") @patch("os.chdir")
......
...@@ -52,6 +52,25 @@ cp ./working/{{sdmId}}.ms ./products/ ...@@ -52,6 +52,25 @@ cp ./working/{{sdmId}}.ms ./products/
""" """
metadata_content = """{
"fileSetIds": ["{{sdmId}}", "{{calSdmId}}"]
"workflowName": "std_calibration",
"systemId": "{{request_id}}",
"creationTime": "{{created_at}}",
"productLocator": "{{product_locator}}",
"calProductLocator": "{{cal_locator}}",
"projectMetadata": {
"projectCode": "{{projectCode}}",
"title": "{{title}}",
"startTime": "{{startTime}}",
"observer": "{{observer}}"
},
"destinationDirectory": "{{root_directory}}/{{relative_path}}"
}
"""
def upgrade(): def upgrade():
restore_steps = """prepare-and-run-workflow restore_cms restore_steps = """prepare-and-run-workflow restore_cms
await-workflow await-workflow
...@@ -83,6 +102,12 @@ await-qa ...@@ -83,6 +102,12 @@ await-qa
VALUES ('restore_cms.sh', E'{restore_script_content}', 'restore_cms') VALUES ('restore_cms.sh', E'{restore_script_content}', 'restore_cms')
""" """
) )
op.execute(
f"""
INSERT INTO workflow_templates (filename, content, workflow_name)
VALUES ('metadata.json', E'{metadata_content}', 'restore_cms')
"""
)
def downgrade(): def downgrade():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment