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

update tests

parent 18f9a93f
No related branches found
No related tags found
1 merge request!506CAPO handling for NAASC submission
Pipeline #2901 passed
This commit is part of merge request !506. Comments created here will be created in the context of that merge request.
import os
from datetime import datetime
from unittest.mock import patch
......@@ -14,12 +13,14 @@ tests for remote_processing_service.CapoInjector
expected_view = [
"edu.nrao.workspaces.WorkflowSettings.serviceUrl",
"edu.nrao.workspaces.NotificationSettings.serviceUrl",
"edu.nrao.workspaces.UISettings.serviceUrl",
"edu.nrao.workspaces.ProcessingSettings.useCasa",
"edu.nrao.archive.workflow.config.CasaVersions.homeForReprocessing",
]
expected_subspace = [
"edu.nrao.workspaces.WorkflowSettings.serviceUrl = http://workflow:3456",
"edu.nrao.workspaces.NotificationSettings.serviceUrl = http://notification:3458",
"edu.nrao.workspaces.UISettings.serviceUrl = http://localhost:4444/workspaces",
"edu.nrao.workspaces.ProcessingSettings.useCasa = false",
"edu.nrao.archive.workflow.config.CasaVersions.homeForReprocessing = /home/casa/packages/pipeline/current",
]
......@@ -27,7 +28,7 @@ expected_subspace = [
request = WorkflowRequest(
workflow_request_id=-3,
workflow_name="vlass_seci",
argument={},
argument={"remote": True},
state="Created",
results_dir="/i/am/a/path",
created_at=datetime(2021, 1, 1),
......@@ -56,7 +57,7 @@ class TestCapoInjector:
assert abs_file.filename == "docker.properties"
assert (
abs_file.content
== """edu.nrao.workspaces.WorkflowSettings.serviceUrl = http://workflow:3456\nedu.nrao.workspaces.NotificationSettings.serviceUrl = http://notification:3458\nedu.nrao.workspaces.ProcessingSettings.useCasa = false\nedu.nrao.archive.workflow.config.CasaVersions.homeForReprocessing = /home/casa/packages/pipeline/current""".encode()
== """edu.nrao.workspaces.WorkflowSettings.serviceUrl = http://workflow:3456\nedu.nrao.workspaces.NotificationSettings.serviceUrl = http://notification:3458\nedu.nrao.workspaces.UISettings.serviceUrl = http://localhost:4444/workspaces\nedu.nrao.workspaces.ProcessingSettings.useCasa = false\nedu.nrao.archive.workflow.config.CasaVersions.homeForReprocessing = /home/casa/packages/pipeline/current""".encode()
)
@patch("pathlib.Path.write_bytes")
......
......@@ -14,6 +14,7 @@ expected_list = DictView(
"general": [
"edu.nrao.workspaces.WorkflowSettings.serviceUrl",
"edu.nrao.workspaces.NotificationSettings.serviceUrl",
"edu.nrao.workspaces.UISettings.serviceUrl",
],
"casa_requirements": [
"edu.nrao.workspaces.ProcessingSettings.useCasa",
......@@ -47,6 +48,7 @@ class TestViewWorkflowCapoParameters:
assert constructed_view == [
"edu.nrao.workspaces.WorkflowSettings.serviceUrl",
"edu.nrao.workspaces.NotificationSettings.serviceUrl",
"edu.nrao.workspaces.UISettings.serviceUrl",
"edu.nrao.workspaces.ProcessingSettings.useCasa",
"edu.nrao.archive.workflow.config.CasaVersions.homeForReprocessing",
]
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