|
3 | 3 | from __future__ import annotations
|
4 | 4 |
|
5 | 5 | import dataclasses
|
| 6 | +import sys |
6 | 7 | from collections.abc import Iterator
|
7 | 8 | from contextlib import contextmanager
|
8 | 9 | from pathlib import Path
|
|
11 | 12 | import pytest
|
12 | 13 |
|
13 | 14 | from scitacean import Dataset, File, RemotePath
|
| 15 | +from scitacean.transfer.copy import CopyFileTransfer |
| 16 | +from scitacean.transfer.link import LinkFileTransfer |
14 | 17 | from scitacean.transfer.select import SelectFileTransfer
|
15 | 18 |
|
16 | 19 |
|
@@ -300,3 +303,24 @@ def test_select_upload_uses_second_child_transfer_success(dataset: Dataset) -> N
|
300 | 303 | assert transfer_2.uploaded == [file.local_path]
|
301 | 304 | assert not transfer_2.downloaded
|
302 | 305 | assert not transfer_2.reverted
|
| 306 | + |
| 307 | + |
| 308 | +@pytest.mark.skipif( |
| 309 | + sys.platform.startswith("win"), |
| 310 | + reason="Copy and link transfers do not support Windows", |
| 311 | +) |
| 312 | +@pytest.mark.parametrize("hard_link", [True, False]) |
| 313 | +def test_copy_and_link_transfers_fall_back(dataset: Dataset, hard_link: bool) -> None: |
| 314 | + copier = CopyFileTransfer(hard_link=hard_link) |
| 315 | + linker = LinkFileTransfer() |
| 316 | + fallback = SuccessfulTransfer() |
| 317 | + transfer = SelectFileTransfer([copier, linker, fallback]) |
| 318 | + |
| 319 | + file = File.from_local("/not-a-real-parent/local_file", remote_path="remote_file") |
| 320 | + with transfer.connect_for_upload(dataset, RemotePath("remote_file")) as con: |
| 321 | + con.upload_files(file) |
| 322 | + |
| 323 | + assert not fallback.is_open_for_download |
| 324 | + assert fallback.uploaded == [file.local_path] |
| 325 | + assert not fallback.downloaded |
| 326 | + assert not fallback.reverted |
0 commit comments