|
20 | 20 |
|
21 | 21 |
|
22 | 22 | @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): |
24 | 29 | # 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 |
26 | 31 | processed_dir = visit_dir / processed_dir_name |
27 | 32 | grid_dir = processed_dir / grid_name |
28 | 33 | grid_dir.mkdir(parents=True, exist_ok=True) |
@@ -147,4 +152,57 @@ def test_run( |
147 | 152 | assert mock_align_and_merge_call.call_count == len(preprocessing_messages) * len( |
148 | 153 | colors |
149 | 154 | ) |
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 | + murfey_db_session, |
| 162 | + seed_murfey_db, |
| 163 | + ispyb_db_session_factory, |
| 164 | + ispyb_db_session, |
| 165 | + seed_ispyb_db, |
| 166 | +): |
| 167 | + # Mock out module-level functions |
| 168 | + mock_get_security_config = mocker.patch("murfey.server.ispyb.get_security_config") |
| 169 | + mock_get_security_config.return_value = MagicMock() |
| 170 | + mock_url = mocker.patch("murfey.server.ispyb.url") |
| 171 | + mock_url.return_value = MagicMock() |
| 172 | + mock_create_engine = mocker.patch("murfey.server.ispyb.create_engine") |
| 173 | + mock_create_engine.return_value = MagicMock() |
| 174 | + |
| 175 | + # Mock out the machine config used in the helper sanitisation function |
| 176 | + mock_get_machine_config = mocker.patch("murfey.workflows.clem.get_machine_config") |
| 177 | + mock_machine_config = MagicMock() |
| 178 | + mock_machine_config.rsync_basepath = rsync_basepath |
| 179 | + mock_get_machine_config.return_value = { |
| 180 | + ExampleVisit.instrument_name: mock_machine_config |
| 181 | + } |
| 182 | + import murfey.workflows.clem |
| 183 | + |
| 184 | + # Mock the ISPyB connection |
| 185 | + mock_ispyb_sessionmaker = mocker.patch("murfey.server.ispyb.sessionmaker") |
| 186 | + mock_ispyb_sessionmaker.return_value = ispyb_db_session_factory |
| 187 | + mock_ispyb_sessionmaker.return_value.return_value = ispyb_db_session |
| 188 | + |
| 189 | + # Mock the align and merge workflow call |
| 190 | + mock_align_and_merge_call = mocker.patch( |
| 191 | + "murfey.workflows.clem.register_preprocessing_results.submit_cluster_request" |
| 192 | + ) |
| 193 | + |
| 194 | + # Import and set up the TransportManager only after mocking |
| 195 | + import murfey.server |
| 196 | + from murfey.server.ispyb import TransportManager |
| 197 | + |
| 198 | + murfey.server._transport_object = TransportManager("PikaTransport") |
| 199 | + |
| 200 | + for message in preprocessing_messages: |
| 201 | + result = run( |
| 202 | + message=message, |
| 203 | + murfey_db=murfey_db_session, |
| 204 | + ) |
| 205 | + assert result == {"success": True} |
| 206 | + assert mock_align_and_merge_call.call_count == len(preprocessing_messages) * len( |
| 207 | + colors |
| 208 | + ) |
0 commit comments