blob: 11f85fd633e3284bf053e7c40e4e7746323f98c2 (
plain)
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
|
import json
import pytest
from copy import copy
from fatcat_openapi_client import *
from fatcat_openapi_client.rest import ApiException
from fixtures import *
def test_lookup_hide_extend(api):
r = api.lookup_release(doi='10.1371/journal.pmed.0020124')
assert len(r.refs) >= 2
assert r.files is None
assert r.container is None
assert len(r.container_id) > 10
assert r.abstracts == []
r = api.lookup_release(doi='10.1371/journal.pmed.0020124', expand='files', hide='refs,abstracts')
assert r.refs is None
assert len(r.files[0].sha1) == 40
assert r.container is None
assert r.abstracts is None
r = api.lookup_release(doi='10.1371/journal.pmed.0020124', expand='container,abstracts')
assert len(r.refs) >= 2
assert r.files is None
assert r.container.issnl
assert r.abstracts == []
f = api.lookup_file(sha256='ffc1005680cb620eec4c913437dfabbf311b535cfe16cbaeb2faec1f92afc362')
assert f.releases is None
f = api.lookup_file(sha256='ffc1005680cb620eec4c913437dfabbf311b535cfe16cbaeb2faec1f92afc362', expand='releases')
assert f.releases[0].ident == f.release_ids[0]
def test_unexpected_body(api):
eg = quick_eg(api)
# all the fields!
f1 = FileEntity(
sha1="88888888888888892dd2657a1e3c992b5dc45dd2",
)
f1.urls = [dict(url="http://thing", rel="repository", asdf="blue")]
api.create_file(eg.editgroup_id, f1)
|