Skip to content

Commit c43f1bd

Browse files
committed
Fallback from link upload
1 parent 9004db6 commit c43f1bd

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

src/scitacean/transfer/link.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,10 @@ def connect_for_upload(
225225
"`LinkFileTransfer` cannot be used for uploading files. "
226226
"If you have direct access to the file server, consider either "
227227
"copying the files into place or writing them directly to the "
228-
"'remote folder'."
228+
"'remote folder'. See also scitacean.transfer.copy.CopyFileTransfer.",
229229
)
230+
# This is needed to make this function a context manager:
231+
yield LinkUploadConnection(source_folder=self.source_folder) # type: ignore[unreachable]
230232

231233

232234
__all__ = ["LinkDownloadConnection", "LinkFileTransfer", "LinkUploadConnection"]

src/scitacean/transfer/select.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def _connect_first_suitable(
151151
# a different transfer if the actual download / upload fails
152152
# but only if connecting fails.
153153
connection = connection_manager.__enter__()
154-
except RuntimeError as error:
154+
except (RuntimeError, NotImplementedError) as error:
155155
errors.append(error)
156156
continue
157157
success = True

tests/transfer/select_transfer_test.py

+24
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from __future__ import annotations
44

55
import dataclasses
6+
import sys
67
from collections.abc import Iterator
78
from contextlib import contextmanager
89
from pathlib import Path
@@ -11,6 +12,8 @@
1112
import pytest
1213

1314
from scitacean import Dataset, File, RemotePath
15+
from scitacean.transfer.copy import CopyFileTransfer
16+
from scitacean.transfer.link import LinkFileTransfer
1417
from scitacean.transfer.select import SelectFileTransfer
1518

1619

@@ -300,3 +303,24 @@ def test_select_upload_uses_second_child_transfer_success(dataset: Dataset) -> N
300303
assert transfer_2.uploaded == [file.local_path]
301304
assert not transfer_2.downloaded
302305
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

Comments
 (0)