-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathtest_edit.py
More file actions
173 lines (142 loc) · 5.39 KB
/
test_edit.py
File metadata and controls
173 lines (142 loc) · 5.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
import json
import os
from typing import Any
import httpx
from pyDataverse.api import NativeApi
class TestEditDatasetMetadata:
def test_edit_dataset_metadata_replace(self):
"""
Test case for editing a dataset's metadata.
This test case performs the following steps:
1. Creates a dataset using the provided metadata.
2. Edits the dataset metadata and replaces the existing metadata.
3. Asserts that the metadata was edited successfully.
Raises:
AssertionError: If the metadata edit fails.
"""
# Arrange
BASE_URL = os.getenv("BASE_URL").rstrip("/")
API_TOKEN = os.getenv("API_TOKEN")
# Create dataset
metadata = json.load(open("tests/data/file_upload_ds_minimum.json"))
pid = self._create_dataset(BASE_URL, API_TOKEN, metadata)
api = NativeApi(BASE_URL, API_TOKEN)
# Prepare file upload
edit_metadata = {
"fields": [
{
"typeName": "title",
"value": "New Title",
},
{
"typeName": "datasetContact",
"value": [
{
"datasetContactEmail": {
"typeName": "datasetContactEmail",
"value": "jane@doe.com",
},
"datasetContactName": {
"typeName": "datasetContactName",
"value": "Jane Doe",
},
}
],
},
]
}
# Act
response = api.edit_dataset_metadata(
identifier=pid,
metadata=edit_metadata,
replace=True,
)
response.raise_for_status()
# Assert
dataset = api.get_dataset(pid).json()
new_title = self._get_field_value(dataset, "citation", "title")
new_contact = self._get_field_value(dataset, "citation", "datasetContact")[0]
assert new_title == "New Title", "Metadata edit failed."
assert (
new_contact["datasetContactEmail"]["value"] == "jane@doe.com"
), "Metadata edit failed."
assert (
new_contact["datasetContactName"]["value"] == "Jane Doe"
), "Metadata edit failed."
def test_edit_dataset_metadata_add(self):
"""
Test case for editing a dataset's metadata.
This test case performs the following steps:
1. Creates a dataset using the provided metadata.
2. Edits the dataset metadata and replaces the existing metadata.
3. Asserts that the metadata was edited successfully.
Raises:
AssertionError: If the metadata edit fails.
"""
# Arrange
BASE_URL = os.getenv("BASE_URL").rstrip("/")
API_TOKEN = os.getenv("API_TOKEN")
# Create dataset
metadata = json.load(open("tests/data/file_upload_ds_minimum.json"))
pid = self._create_dataset(BASE_URL, API_TOKEN, metadata)
api = NativeApi(BASE_URL, API_TOKEN)
# Prepare file upload
edit_metadata = {
"fields": [
{"typeName": "subject", "value": ["Astronomy and Astrophysics"]},
{"typeName": "subtitle", "value": "Subtitle"},
]
}
# Act
response = api.edit_dataset_metadata(
identifier=pid,
metadata=edit_metadata,
)
response.raise_for_status()
# Assert
dataset = api.get_dataset(pid).json()
new_subject = self._get_field_value(dataset, "citation", "subject")
new_subtitle = self._get_field_value(dataset, "citation", "subtitle")
assert "Astronomy and Astrophysics" in new_subject, "Metadata edit failed."
assert new_subtitle == "Subtitle", "Metadata edit failed."
@staticmethod
def _create_dataset(
BASE_URL: str,
API_TOKEN: str,
metadata: dict,
):
"""
Create a dataset in the Dataverse.
Args:
BASE_URL (str): The base URL of the Dataverse instance.
API_TOKEN (str): The API token for authentication.
metadata (dict): The metadata for the dataset.
Returns:
str: The persistent identifier (PID) of the created dataset.
"""
url = f"{BASE_URL}/api/dataverses/root/datasets"
response = httpx.post(
url=url,
json=metadata,
headers={
"X-Dataverse-key": API_TOKEN,
"Content-Type": "application/json",
},
)
response.raise_for_status()
return response.json()["data"]["persistentId"]
@staticmethod
def _get_field_value(data: dict, block: str, field: str) -> Any:
"""
Get the value of a field in a metadata block.
"""
blocks = data["data"]["latestVersion"]["metadataBlocks"]
assert block in blocks, f"Block {block} not found in metadata blocks"
metadata_block = blocks[block]
try:
filtered = next(
filter(lambda f: f["typeName"] == field, metadata_block["fields"])
)
return filtered["value"]
except StopIteration:
raise ValueError(f"Field {field} not found in block {block}")