-
Notifications
You must be signed in to change notification settings - Fork 89
/
test_bibtex_serializer.py
451 lines (365 loc) · 13.5 KB
/
test_bibtex_serializer.py
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# -*- coding: utf-8 -*-
#
# Copyright (C) 2023-2024 CERN
#
# Invenio-RDM-Records is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.
"""Resources serializers tests."""
import pytest
from invenio_rdm_records.resources.serializers.bibtex import BibtexSerializer
@pytest.fixture(scope="function")
def updated_minimal_record(minimal_record):
"""Update fields (done after record create) for BibTex serializer."""
minimal_record["access"]["status"] = "open"
minimal_record["created"] = "2023-03-09T00:00:00.000000+00:00"
minimal_record["id"] = "abcde-fghij"
for creator in minimal_record["metadata"]["creators"]:
name = creator["person_or_org"].get("name")
if not name:
creator["person_or_org"]["name"] = "Name"
return minimal_record
@pytest.fixture(scope="function")
def updated_full_record(full_record_to_dict):
"""Update fields (done after record create) for BibTex serializer."""
full_record_to_dict["access"]["status"] = "embargoed"
full_record_to_dict["created"] = "2023-03-23T00:00:00.000000+00:00"
full_record_to_dict["id"] = "abcde-fghij"
full_record_to_dict["metadata"]["resource_type"]["id"] = "other"
return full_record_to_dict
def test_bibtex_serializer_minimal_record(running_app, updated_minimal_record):
"""Test serializer for BibTex"""
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@misc{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" month = mar,",
" year = 2023,",
" publisher = {Acme Inc},",
"}",
]
)
assert serialized_record == expected_data
def test_bibtex_serializer_full_record(running_app, updated_full_record):
"""Test serializer for BibTex"""
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_full_record)
expected_data = (
"@misc{nielsen_2023_abcde-fghij,\n"
" author = {Nielsen, Lars Holm and\n"
" Tom, Blabin},\n"
" title = {InvenioRDM},\n"
" month = mar,\n"
" year = 2023,\n"
" publisher = {InvenioRDM},\n"
" version = {v1.0},\n"
" doi = {10.1234/12345-abcde},\n"
" url = {https://doi.org/10.1234/12345-abcde},\n"
"}"
)
assert serialized_record == expected_data
@pytest.mark.parametrize(
"resource_type",
[
("publication"),
("publication-annotationcollection"),
("publication-section"),
("publication-conferenceproceeding"),
("publication-datamanagementplan"),
("publication-journal"),
("publication-patent"),
("publication-peerreview"),
("publication-deliverable"),
("publication-milestone"),
("publication-proposal"),
("publication-report"),
("publication-softwaredocumentation"),
("publication-taxonomictreatment"),
("publication-datapaper"),
("publication-dissertation"),
("publication-standard"),
("publication-other"),
("poster"),
("presentation"),
("event"),
("image"),
("image-figure"),
("image-plot"),
("image-drawing"),
("image-diagram"),
("image-photo"),
("image-other"),
("model"),
("video"),
("lesson"),
("software-computationalnotebook"),
("other"),
("physicalobject"),
("workflow"),
],
)
def test_misc_types(running_app, updated_minimal_record, resource_type):
"""Test bibtex misc formatter for each resource type."""
updated_minimal_record["metadata"]["resource_type"]["id"] = resource_type
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@misc{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" month = mar,",
" year = 2023,",
" publisher = {Acme Inc},",
"}",
]
)
assert serialized_record == expected_data
def test_serialize_publication_conferencepaper(running_app, updated_minimal_record):
"""Test bibtex formatter for conference papers.
It serializes into the following formats, depending on the data:
- inproceedings
- proceedings
"""
updated_minimal_record["metadata"]["resource_type"][
"id"
] = "publication-conferencepaper"
# Force serialization into 'inproceedings'
updated_minimal_record.update(
{"custom_fields": {"imprint:imprint": {"title": "book title"}}}
)
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@inproceedings{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" booktitle = {book title},",
" year = 2023,",
" publisher = {Acme Inc},",
" month = mar,",
"}",
]
)
assert serialized_record == expected_data
# Force serialization into 'proceedings'
del updated_minimal_record["custom_fields"]["imprint:imprint"]
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@proceedings{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" year = 2023,",
" publisher = {Acme Inc},",
" month = mar,",
"}",
]
)
def test_serialize_publication_book(running_app, updated_minimal_record):
"""Test bibtex formatter for books.
It serializes into the following formats, depending on the data:
- book
- booklet
"""
updated_minimal_record["metadata"]["resource_type"]["id"] = "publication-book"
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@book{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" publisher = {Acme Inc},",
" year = 2023,",
" month = mar,",
"}",
]
)
assert serialized_record == expected_data
# Force serialization into 'booklet'
del updated_minimal_record["metadata"]["publisher"]
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@booklet{brown_2023_abcde-fghij,",
" title = {A Romans story},",
" author = {Name and",
" Troy Inc.},",
" month = mar,",
" year = 2023,",
"}",
]
)
assert serialized_record == expected_data
def test_serialize_publication_article(running_app, updated_minimal_record):
"""Test bibtex formatter for articles.
It serializes into 'article'.
"""
updated_minimal_record["metadata"]["resource_type"]["id"] = "publication-article"
updated_minimal_record.update(
{"custom_fields": {"journal:journal": {"title": "journal title"}}}
)
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@article{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" journal = {journal title},",
" year = 2023,",
" month = mar,",
"}",
]
)
assert serialized_record == expected_data
def test_serialize_publication_preprint(running_app, updated_minimal_record):
"""Test bibtex formatter for preprints.
It serializes into 'unpublished'.
"""
updated_minimal_record["metadata"]["resource_type"]["id"] = "publication-preprint"
updated_minimal_record.update(
{
"additional_descriptions": [
{"type": {"id": "other"}, "description": "a description"}
]
}
)
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@unpublished{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" note = {a description},",
" month = mar,",
" year = 2023,",
"}",
]
)
assert serialized_record == expected_data
def test_serialize_publication_thesis(running_app, updated_minimal_record):
"""Test bibtex formatter for thesis.
It serializes into 'phdthesis'.
"""
updated_minimal_record["metadata"]["resource_type"]["id"] = "publication-thesis"
updated_minimal_record.update(
{"custom_fields": {"thesis:university": "A university"}}
)
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@phdthesis{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" school = {A university},",
" year = 2023,",
" month = mar,",
"}",
]
)
assert serialized_record == expected_data
def test_serialize_publication_technicalnote(running_app, updated_minimal_record):
"""Test bibtex formatter for technical note.
It serializes into 'manual'.
"""
updated_minimal_record["metadata"]["resource_type"][
"id"
] = "publication-technicalnote"
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@manual{brown_2023_abcde-fghij,",
" title = {A Romans story},",
" author = {Name and",
" Troy Inc.},",
" month = mar,",
" year = 2023,",
"}",
]
)
assert serialized_record == expected_data
def test_serialize_publication_workingpaper(running_app, updated_minimal_record):
"""Test bibtex formatter for working paper.
It serializes into 'unpublished'.
"""
updated_minimal_record["metadata"]["resource_type"][
"id"
] = "publication-workingpaper"
updated_minimal_record.update(
{
"additional_descriptions": [
{"type": {"id": "other"}, "description": "a description"}
]
}
)
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@unpublished{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" note = {a description},",
" month = mar,",
" year = 2023,",
"}",
]
)
assert serialized_record == expected_data
def test_serialize_software(running_app, updated_minimal_record):
"""Test bibtex formatter for software.
It serializes into 'software'.
"""
updated_minimal_record["metadata"]["resource_type"]["id"] = "software"
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@software{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" month = mar,",
" year = 2023,",
" publisher = {Acme Inc},",
"}",
]
)
assert serialized_record == expected_data
def test_serialize_dataset(running_app, updated_minimal_record):
"""Test bibtex formatter for dataset.
It serializes into 'dataset'.
"""
updated_minimal_record["metadata"]["resource_type"]["id"] = "dataset"
serializer = BibtexSerializer()
serialized_record = serializer.serialize_object(updated_minimal_record)
expected_data = "\n".join(
[
"@dataset{brown_2023_abcde-fghij,",
" author = {Name and",
" Troy Inc.},",
" title = {A Romans story},",
" month = mar,",
" year = 2023,",
" publisher = {Acme Inc},",
"}",
]
)
assert serialized_record == expected_data