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
|
import os
import time
import json
import pytest
import signal
import fatcat
import fatcat.sql
from fatcat.models import *
@pytest.fixture
def full_app():
fatcat.app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite://'
fatcat.app.testing = True
fatcat.app.debug = False
fatcat.db.session.remove()
fatcat.db.drop_all()
fatcat.db.create_all()
fatcat.sql.populate_db()
return fatcat.app
@pytest.fixture
def app(full_app):
return full_app.test_client()
@pytest.fixture
def rich_app(app):
enrichen_test_app(app)
return app
@pytest.fixture(scope="function")
def api_client(full_app):
pid = os.fork()
if pid == 0:
full_app.testing = False
full_app.run(host="localhost", port=8444, debug=False)
os._exit(0)
time.sleep(0.2)
yield fatcat.api_client.FatCatApiClient("http://localhost:8444")
os.kill(pid, signal.SIGKILL)
## Helpers ##################################################################
def enrichen_test_app(app):
rv = app.post('/v0/editgroup',
data=json.dumps(dict(
extra=dict(q=1, u="zing"))),
headers={"content-type": "application/json"})
assert rv.status_code == 200
obj = json.loads(rv.data.decode('utf-8'))
editgroup_id = obj['id']
rv = app.post('/v0/container',
data=json.dumps(dict(
name="schmournal",
publisher="society of authors",
issn="2222-3333",
editgroup=editgroup_id,
extra=dict(a=2, i="zing"))),
headers={"content-type": "application/json"})
assert rv.status_code == 200
obj = json.loads(rv.data.decode('utf-8'))
container_id = obj['id']
rv = app.post('/v0/creator',
data=json.dumps(dict(
name="anon y. mouse",
orcid="0000-0002-1825-0097",
editgroup=editgroup_id,
extra=dict(w=1, q="zing"))),
headers={"content-type": "application/json"})
assert rv.status_code == 200
obj = json.loads(rv.data.decode('utf-8'))
creator_id = obj['id']
rv = app.post('/v0/work',
data=json.dumps(dict(
title="dummy work",
work_type="book",
editgroup=editgroup_id,
extra=dict(a=3, b="zing"))),
headers={"content-type": "application/json"})
assert rv.status_code == 200
obj = json.loads(rv.data.decode('utf-8'))
work_id = obj['id']
# this stub work will be referenced
rv = app.post('/v0/release',
data=json.dumps(dict(
title="derivative work",
work_type="journal-article",
work=work_id,
creators=[creator_id],
doi="10.1234/58",
editgroup=editgroup_id,
refs=[
dict(stub="some other journal article"),
],
extra=dict(f=7, b="zing"))),
headers={"content-type": "application/json"})
assert rv.status_code == 200
obj = json.loads(rv.data.decode('utf-8'))
stub_release_id = obj['id']
rv = app.post('/v0/release',
data=json.dumps(dict(
title="dummy work",
work_type="book",
work=work_id,
container=container_id,
creators=[creator_id],
doi="10.1234/5678",
editgroup=editgroup_id,
refs=[
dict(stub="some book", target=stub_release_id),
],
extra=dict(f=7, b="loopy"))),
headers={"content-type": "application/json"})
assert rv.status_code == 200
obj = json.loads(rv.data.decode('utf-8'))
release_id = obj['id']
rv = app.post('/v0/file',
data=json.dumps(dict(
sha1="deadbeefdeadbeef",
size=1234,
releases=[release_id],
editgroup=editgroup_id,
extra=dict(f=4, b="zing"))),
headers={"content-type": "application/json"})
assert rv.status_code == 200
obj = json.loads(rv.data.decode('utf-8'))
file_id = obj['id']
rv = app.post('/v0/editgroup/{}/accept'.format(editgroup_id),
headers={"content-type": "application/json"})
assert rv.status_code == 200
def check_entity_fields(e):
for key in ('rev', 'is_live', 'redirect_id'):
assert key in e
for key in ('id',):
assert e[key] is not None
def check_release(e):
for key in ('work', 'release_type'):
assert key in e
for key in ('title'):
assert e[key] is not None
for key in ('refs', 'creators'):
assert type(e[key]) == list
def check_creator(e):
for key in ('name',):
assert e[key] is not None
def check_container(e):
for key in ('name',):
assert e[key] is not None
def check_file(e):
for key in ('size', 'sha1'):
assert e[key] is not None
|