-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add move to object client + change datasets.mv #163
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -239,6 +239,37 @@ def copy(self, project_id, source, destination, recursive=False): | |||||||||||||
else: | ||||||||||||||
raise | ||||||||||||||
|
||||||||||||||
def move(self, project_id, source, destination): | ||||||||||||||
"""Move objects in the store | ||||||||||||||
|
||||||||||||||
Parameters | ||||||||||||||
---------- | ||||||||||||||
project_id : uuid.UUID | ||||||||||||||
The project to move objects in. | ||||||||||||||
source : str | ||||||||||||||
Move object from this source path. | ||||||||||||||
destination : str | ||||||||||||||
Move object to this destination path. | ||||||||||||||
|
||||||||||||||
|
||||||||||||||
Raises | ||||||||||||||
------ | ||||||||||||||
PathNotFound | ||||||||||||||
When the source path does not exist or is not found. | ||||||||||||||
""" | ||||||||||||||
url_encoded_destination = urllib.parse.quote(destination.lstrip("/")) | ||||||||||||||
|
||||||||||||||
endpoint = "/project/{}/object-move/{}".format( | ||||||||||||||
project_id, url_encoded_destination | ||||||||||||||
) | ||||||||||||||
params = {"sourcePath": source} | ||||||||||||||
|
||||||||||||||
try: | ||||||||||||||
self._put_raw(endpoint, params=params) | ||||||||||||||
except NotFound as err: | ||||||||||||||
if err.error_code == "source_path_not_found": | ||||||||||||||
raise PathNotFound(source) | ||||||||||||||
Comment on lines
+270
to
+271
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should re-raise the original exception if the error code does not match:
Suggested change
|
||||||||||||||
|
||||||||||||||
def delete(self, project_id, path, recursive=False): | ||||||||||||||
"""Delete objects in the store. | ||||||||||||||
|
||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -378,6 +378,28 @@ def test_object_client_copy_source_is_a_directory(mocker): | |||||
client.copy(PROJECT_ID, "source", "destination") | ||||||
|
||||||
|
||||||
def test_object_client_move_url_encoding(mocker): | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this also functions as the main test of
Suggested change
|
||||||
mocker.patch.object(ObjectClient, "_put_raw") | ||||||
|
||||||
client = ObjectClient(mocker.Mock()) | ||||||
client.move(PROJECT_ID, "source", "/[1]/") | ||||||
|
||||||
ObjectClient._put_raw.assert_called_once_with( | ||||||
"/project/{}/object-move/%5B1%5D/".format(PROJECT_ID), | ||||||
params={"sourcePath": "source"}, | ||||||
) | ||||||
|
||||||
|
||||||
def test_object_client_move_source_not_found(mocker): | ||||||
error_code = "source_path_not_found" | ||||||
exception = NotFound(mocker.Mock(), mocker.Mock(), error_code) | ||||||
mocker.patch.object(ObjectClient, "_put_raw", side_effect=exception) | ||||||
|
||||||
client = ObjectClient(mocker.Mock()) | ||||||
with pytest.raises(PathNotFound, match="'source' cannot be found"): | ||||||
client.move(PROJECT_ID, "source", "destination") | ||||||
|
||||||
|
||||||
def test_object_client_delete_default(mocker): | ||||||
path = "test-path" | ||||||
mocker.patch.object(ObjectClient, "_delete_raw") | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: remove extra blank line