Skip to content

Commit 6bb3e69

Browse files
committed
Attempt to run test on this workflow with the Murfey and ISPyB databases
1 parent 4038cda commit 6bb3e69

File tree

1 file changed

+70
-3
lines changed

1 file changed

+70
-3
lines changed

tests/workflows/clem/test_register_preprocessing_results.py

Lines changed: 70 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@
2020

2121

2222
@pytest.fixture
23-
def preprocessing_messages(tmp_path: Path):
23+
def rsync_basepath(tmp_path: Path):
24+
return tmp_path / "data"
25+
26+
27+
@pytest.fixture
28+
def preprocessing_messages(rsync_basepath: Path):
2429
# Make directory to where data for current grid is stored
25-
visit_dir = tmp_path / "data" / "2020" / visit_name
30+
visit_dir = rsync_basepath / "2020" / visit_name
2631
processed_dir = visit_dir / processed_dir_name
2732
grid_dir = processed_dir / grid_name
2833
grid_dir.mkdir(parents=True, exist_ok=True)
@@ -147,4 +152,66 @@ def test_run(
147152
assert mock_align_and_merge_call.call_count == len(preprocessing_messages) * len(
148153
colors
149154
)
150-
assert run
155+
156+
157+
def test_run_with_db(
158+
mocker: MockerFixture,
159+
preprocessing_messages: list[dict[str, Any]],
160+
rsync_basepath: Path,
161+
mock_ispyb_credentials,
162+
murfey_db_session,
163+
seed_murfey_db,
164+
ispyb_db_session_factory,
165+
ispyb_db_session,
166+
seed_ispyb_db,
167+
):
168+
# Mock out module-level functions
169+
mock_security_config = MagicMock()
170+
mock_security_config.ispyb_credentials = mock_ispyb_credentials
171+
mock_get_security_config = mocker.patch("murfey.server.ispyb.get_security_config")
172+
mock_get_security_config.return_value = mock_security_config
173+
174+
# Mock the ISPyB connection
175+
mock_ispyb_sessionmaker = mocker.patch("murfey.server.ispyb.sessionmaker")
176+
mock_ispyb_sessionmaker.return_value.return_value = ispyb_db_session
177+
178+
# Mock out the machine config used in the helper sanitisation function
179+
mock_get_machine_config = mocker.patch("murfey.workflows.clem.get_machine_config")
180+
mock_machine_config = MagicMock()
181+
mock_machine_config.rsync_basepath = rsync_basepath
182+
mock_get_machine_config.return_value = {
183+
"": mock_machine_config,
184+
}
185+
186+
# Mock the align and merge workflow call
187+
mock_align_and_merge_call = mocker.patch(
188+
"murfey.workflows.clem.register_preprocessing_results.submit_cluster_request"
189+
)
190+
191+
# Patch the TransportManager object in the workflows called
192+
from murfey.server.ispyb import TransportManager
193+
194+
mocker.patch(
195+
"murfey.workflows.clem.register_preprocessing_results._transport_object",
196+
new=TransportManager("PikaTransport"),
197+
)
198+
mocker.patch(
199+
"murfey.workflows.register_data_collection_group._transport_object",
200+
new=TransportManager("PikaTransport"),
201+
)
202+
mocker.patch(
203+
"murfey.workflows.register_atlas_update._transport_object",
204+
new=TransportManager("PikaTransport"),
205+
)
206+
207+
# Run the function
208+
for message in preprocessing_messages:
209+
result = run(
210+
message=message,
211+
murfey_db=murfey_db_session,
212+
)
213+
assert result == {"success": True}
214+
assert mock_align_and_merge_call.call_count == len(preprocessing_messages) * len(
215+
colors
216+
)
217+
murfey_db_session.close()

0 commit comments

Comments
 (0)