Skip to content
Snippets Groups Projects
Verified Commit 872d7bd4 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

test: add test to create image with a content license

parent 22a8443a
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,27 @@ def test_create_image(image_file, common_api_client1):
assert response.status_code == 201
def test_create_image_with_license(image_file, common_api_client1, public_domain_license):
content_license = {
"credits": "CREDITS",
"is_use_explicitly_granted_by_author": True,
"license_id": public_domain_license.id,
}
data = {"image": image_file}
data.update({"content_license." + key: value for key, value in content_license.items()})
response = common_api_client1.post(url(), data=data)
assert response.status_code == 201
assert response.data["content_license"]["credits"] == content_license["credits"]
assert (
response.data["content_license"]["is_use_explicitly_granted_by_author"]
is content_license["is_use_explicitly_granted_by_author"]
)
assert response.data["content_license"]["license_id"] == public_domain_license.id
def test_delete_image(owned_image, common_api_client1):
response = common_api_client1.delete(url(owned_image))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment