Coverage for test / jalc_processing_test.py: 99%
217 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-06-12 21:23 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-06-12 21:23 +0000
1# SPDX-FileCopyrightText: 2023 Marta Soricetti <marta.soricetti@unibo.it>
2# SPDX-FileCopyrightText: 2023-2026 Arcangelo Massari <arcangelo.massari@unibo.it>
3#
4# SPDX-License-Identifier: ISC
6import os
7import unittest
8import json
10from oc_ds_converter.lib.csvmanager import CSVManager
11from oc_ds_converter.jalc.jalc_processing import JalcProcessing
14BASE = os.path.join('test', 'jalc_processing')
15IOD = os.path.join(BASE, 'iod')
16WANTED_DOIS = os.path.join(BASE, 'wanted_dois.csv')
17WANTED_DOIS_FOLDER = os.path.join(BASE, 'wanted_dois')
18DATA = os.path.join(BASE, 'dois_1011230-jsts172_1.json')
19DATA_DIR = BASE
20MULTIPROCESS_OUTPUT = os.path.join(BASE, 'multi_process_test')
23class TestJalcProcessing(unittest.TestCase):
25 def setUp(self):
26 """Setup comune per i test che include entity dict di esempio"""
27 # Entity dict con autori singoli
28 self.entity_dict_single_author = {
29 "data": {
30 "doi": "10.11178/example.1",
31 "creator_list": [
32 {
33 "sequence": "1",
34 "type": "person",
35 "names": [
36 {
37 "lang": "ja",
38 "last_name": "山田",
39 "first_name": "太郎"
40 }
41 ],
42 "role": "author"
43 }
44 ]
45 }
46 }
48 # Entity dict con autore che ha ORCID in researcher_id_list
49 self.entity_dict_with_orcid_in_metadata = {
50 "data": {
51 "doi": "10.11187/example.orcid",
52 "creator_list": [
53 {
54 "sequence": "1",
55 "type": "person",
56 "names": [
57 {
58 "lang": "en",
59 "last_name": "LIN",
60 "first_name": "Weiren"
61 }
62 ],
63 "researcher_id_list": [
64 {
65 "id_code": "http://orcid.org/0000-0003-3228-2789",
66 "type": "ORCID"
67 }
68 ]
69 },
70 {
71 "sequence": "2",
72 "type": "person",
73 "names": [
74 {
75 "lang": "en",
76 "last_name": "SMITH",
77 "first_name": "John"
78 }
79 ]
80 }
81 ]
82 }
83 }
85 # Entity dict con autori omonimi
86 self.entity_dict_homonyms = {
87 "data": {
88 "doi": "10.11178/example.2",
89 "creator_list": [
90 {
91 "sequence": "1",
92 "type": "person",
93 "names": [
94 {
95 "lang": "ja",
96 "last_name": "田中",
97 "first_name": "一郎"
98 }
99 ],
100 "role": "author"
101 },
102 {
103 "sequence": "2",
104 "type": "person",
105 "names": [
106 {
107 "lang": "ja",
108 "last_name": "田中",
109 "first_name": "一郎"
110 }
111 ],
112 "role": "author"
113 }
114 ]
115 }
116 }
118 def test_csv_creator(self):
119 jalc_processor_citing = JalcProcessing(orcid_index=IOD, citing=True)
120 jalc_processor_cited = JalcProcessing(orcid_index=IOD, citing=False)
121 with open(DATA, "r", encoding="utf-8") as content:
122 data = json.load(content)
123 output = list()
124 item = data["data"]
125 jalc_processor_citing.prefetch_doi_orcid_index([item["doi"]])
126 tabular_data = jalc_processor_citing.csv_creator(item)
127 if tabular_data:
128 output.append(tabular_data)
129 for citation in item['citation_list']:
130 if citation.get("doi"):
131 tabular_data_cited = jalc_processor_cited.csv_creator(citation)
132 if tabular_data_cited:
133 output.append(tabular_data_cited)
134 expected_output = [
135 {'id': 'doi:10.11230/jsts.17.2_1',
136 'title': 'Diamond Synthesis with Completely Closed Chamber from Solid or Liquid Carbon Sources, In-Situ Analysis of Gaseous Species and the Possible Reaction Model',
137 'author': 'TAKAGI, Yoshiki [orcid:0000-0001-9597-7030]',
138 'issue': '2',
139 'volume': '17',
140 'venue': 'The Journal of Space Technology and Science [issn:0911-551X issn:2186-4772 jid:jsts]',
141 'pub_date': '2001',
142 'page': '2_1-2_7',
143 'type': 'journal article',
144 'publisher': '特定非営利活動法人 日本ロケット協会',
145 'editor': ''},
146 {'id': 'doi:10.1063/1.1656693',
147 'title': '',
148 'author': '',
149 'issue': '',
150 'volume': '39',
151 'venue': '',
152 'pub_date': '1968',
153 'page': '2915-2915',
154 'type': '',
155 'publisher': '',
156 'editor': ''},
157 {'id': 'doi:10.1016/0022-0248(83)90411-6',
158 'title': '',
159 'author': '',
160 'issue': '',
161 'volume': '62',
162 'venue': 'Journal of Crystal Growth',
163 'pub_date': '1983',
164 'page': '642-642',
165 'type': '',
166 'publisher': '',
167 'editor': ''},
168 {'id': 'doi:10.1016/0038-1098(88)91128-3',
169 'title': 'Raman spectra of diamondlike amorphous carbon films.',
170 'author': '',
171 'issue': '11',
172 'volume': '66',
173 'venue': '',
174 'pub_date': '1988',
175 'page': '1177-1180',
176 'type': '',
177 'publisher': '',
178 'editor': ''}]
180 self.assertEqual(output, expected_output)
182 def test_orcid_finder(self):
183 jalc_processor = JalcProcessing(orcid_index=IOD)
184 doi = '10.11185/imt.8.380'
185 jalc_processor.prefetch_doi_orcid_index([doi])
186 orcid_found = jalc_processor.orcid_finder(doi)
187 expected_output = {'0000-0002-2149-4113': 'dobashi, yoshinori'}
188 self.assertEqual(orcid_found, expected_output)
190 def test_get_agents_strings_list_overlapping_surnames(self):
191 # The surname of one author is included in the surname of another.
192 authors_list = [
193 {'role': 'author',
194 'name': '井崎 豊田, 理理子',
195 'family': '井崎 豊田',
196 'given': '理理子'},
197 {'role': 'author',
198 'name': '豊田, 純一朗',
199 'family': '豊田',
200 'given': '純一朗'}
201 ]
202 jalc_processor = JalcProcessing()
203 csv_manager = CSVManager()
204 csv_manager.data = {'doi:10.11224/cleftpalate1976.23.2_83': {'豊田, 純一朗 [0000-0002-8210-7076]'}}
205 jalc_processor.orcid_index = csv_manager
206 jalc_processor.prefetch_doi_orcid_index(['10.11224/cleftpalate1976.23.2_83'])
207 authors_strings_list, editors_strings_list = jalc_processor.get_agents_strings_list('10.11224/cleftpalate1976.23.2_83', authors_list)
208 expected_authors_list = ['井崎 豊田, 理理子', '豊田, 純一朗 [orcid:0000-0002-8210-7076]']
209 expected_editors_list = []
210 self.assertEqual((authors_strings_list, editors_strings_list), (expected_authors_list, expected_editors_list))
212 def test_get_agents_strings_list(self):
213 entity_dict = {
214 "status": "OK",
215 "apiType": "doi",
216 "apiVersion": "1.0.0",
217 "message": {
218 "total": 1,
219 "rows": 1,
220 "totalPages": 1,
221 "page": 1
222 },
223 "data": {
224 "siteId": "SI/JST.JSTAGE",
225 "content_type": "JA",
226 "doi": "10.11178/jdsa.8.49",
227 "url": "https://doi.org/10.11178/jdsa.8.49",
228 "ra": "JaLC",
229 "prefix": "10.11178",
230 "site_name": "J-STAGE",
231 "publisher_list": [
232 {
233 "publisher_name": "Agricultural and Forestry Research Center, University of Tsukuba",
234 "lang": "en"
235 },
236 {
237 "publisher_name": "筑波大学農林技術センター",
238 "lang": "ja"
239 }
240 ],
241 "title_list": [
242 {
243 "lang": "en",
244 "title": "Reformulating Agriculture and Forestry Education in the Philippines: Issues and Concerns"
245 }
246 ],
247 "creator_list": [
248 {
249 "sequence": "1",
250 "type": "person",
251 "names": [
252 {
253 "lang": "en",
254 "last_name": "O. Cruz",
255 "first_name": "Rex Victor"
256 }
257 ],
258 "affiliation_list": [
259 {
260 "affiliation_name": "Professor, Institute of Natural Resources, College of Forestry and Natural Resources, University of the Philippines Los Baños",
261 "sequence": "1",
262 "lang": "en"
263 }
264 ]
265 },
266 {
267 "sequence": "2",
268 "type": "person",
269 "names": [
270 {
271 "lang": "en",
272 "last_name": "B. Bantayan",
273 "first_name": "Rosario"
274 }
275 ],
276 "affiliation_list": [
277 {
278 "affiliation_name": "University Extension Specialist 1, Department of Forest Products and Paper Science, College of Forestry and Natural Resources, University of the Philippines Los Baños",
279 "sequence": "1",
280 "lang": "en"
281 }
282 ]
283 },
284 {
285 "sequence": "3",
286 "type": "person",
287 "names": [
288 {
289 "lang": "en",
290 "last_name": "D. Landicho",
291 "first_name": "Leila"
292 }
293 ],
294 "affiliation_list": [
295 {
296 "affiliation_name": "University Researcher 2, Institute of Agroforestry, College of Forestry and Natural Resources, University of the Philippines Los Baños",
297 "sequence": "1",
298 "lang": "en"
299 }
300 ]
301 },
302 {
303 "sequence": "4",
304 "type": "person",
305 "names": [
306 {
307 "lang": "en",
308 "last_name": "C. Bantayan",
309 "first_name": "Nathaniel"
310 }
311 ],
312 "affiliation_list": [
313 {
314 "affiliation_name": "Professor, Institute of Natural Resources, College of Forestry and Natural Resources, University of the Philippines Los Baños",
315 "sequence": "1",
316 "lang": "en"
317 }
318 ]
319 }
320 ],
321 "publication_date": {
322 "publication_year": "2013"
323 },
324 "relation_list": [
325 {
326 "content": "https://www.jstage.jst.go.jp/article/jdsa/8/1/8_49/_pdf",
327 "type": "URL",
328 "relation": "fullTextPdf"
329 }
330 ],
331 "content_language": "en",
332 "updated_date": "2014-12-09",
333 "article_type": "pub",
334 "journal_id_list": [
335 {
336 "journal_id": "1880-3016",
337 "type": "ISSN",
338 "issn_type": "print"
339 },
340 {
341 "journal_id": "1880-3024",
342 "type": "ISSN",
343 "issn_type": "online"
344 },
345 {
346 "journal_id": "jdsa",
347 "type": "JID"
348 }
349 ],
350 "journal_title_name_list": [
351 {
352 "journal_title_name": "Journal of Developments in Sustainable Agriculture",
353 "type": "full",
354 "lang": "en"
355 },
356 {
357 "journal_title_name": "J. Dev. Sus. Agr.",
358 "type": "abbreviation",
359 "lang": "en"
360 }
361 ],
362 "journal_classification": "01",
363 "journal_txt_lang": "en",
364 "recorded_year": "2006-2014",
365 "volume": "8",
366 "issue": "1",
367 "first_page": "49",
368 "last_page": "62",
369 "date": "2013-03-15",
370 "keyword_list": [
371 {
372 "keyword": "forestry",
373 "sequence": "1",
374 "lang": "en"
375 },
376 {
377 "keyword": "agriculture",
378 "sequence": "2",
379 "lang": "en"
380 },
381 {
382 "keyword": "outcomes-based education",
383 "sequence": "3",
384 "lang": "en"
385 }
386 ],
387 "citation_list": [
388 {
389 "sequence": "1",
390 "original_text": "Adedoyin, O.O. and Shangodoyin, D.K., 2010. Concepts and Practices of Outcome Based Education for Effective Educational System in Botswana. Euro. J. Soc. Sci., 13 (2), 161-170."
391 },
392 {
393 "sequence": "2",
394 "original_text": "Bantayan, N.C., 2007. Forest (Bad) Science and (Mal) Practice: Can Filipino Foresters Rise Above The Pitfalls And Failures Of The Profession?. Policy Paper. Center for Integrative and Development Studies. UP Diliman, Quezon City, Philippines."
395 },
396 {
397 "sequence": "3",
398 "original_text": "BAS (Bureau of Agricultural Statistics). 2011. Philippine Agriculture in Figure. Retrieved December 15, 2012 from http://www.bas.gov.ph"
399 },
400 {
401 "sequence": "4",
402 "original_text": "Carandang, M.G., Landicho, L.D., Andrada II, R. T., Malabrigo, P.L. Jr., Angeles, A.M., Oliva, A.T., Eslava, F.E. Jr. and Regondola, M.L., 2008. Demystifying the State of Forestry Education and the Forestry Profession in the Philippines. Ecosys. Devel. J. 1 (1), 46-54."
403 },
404 {
405 "sequence": "5",
406 "original_text": "CHED Memorandum Order (CMO), 2012. Policies, Standards and Guidelines in the Establishment of an Outcomes-Based Education (OBE) System in Higher Education Institutions offering Engineering Programs. No. 37, Series of 2012."
407 },
408 {
409 "sequence": "6",
410 "original_text": "CHED Memorandum Order (CMO), 2008. Policies and Standards for Bachelor of Science in Agriculture (BSA) Program. No. 14, Series of 2008. Retrieved October 30, 2012 from http://www.ched.gov.ph/chedwww/index.php/eng/Information/CHED-Memorandum-Orders/2008-CHED-Memorandum-Orders"
411 },
412 {
413 "sequence": "7",
414 "original_text": "Cruz, R.V.O., Pulhin, J.M. and Mendoza M.D. 2011. Reinventing CFNR: Leading the Way in Integrated Tropical Forest and Natural Resource Management Education, Research and Governance (2011-2025). A Centennial Professorial Chair Lecture delivered in December 2011 at the Nicolas P. Lansigan Hall, College of Forestry and Natural Resources, University of the Philippines Los Banos, College, Laguna, Philippines."
415 },
416 {
417 "sequence": "8",
418 "doi": "10.11178/jdsa.5.47",
419 "title_list": [
420 {
421 "lang": "en",
422 "title": "Enhancing Food Security in the Context of Climate Change and the Role of Higher Education Institutions in the Philippines"
423 }
424 ],
425 "volume": "5",
426 "issue": "1",
427 "first_page": "47",
428 "last_page": "63",
429 "publication_date": {
430 "publication_year": "2010"
431 },
432 "creator_list": [
433 {
434 "sequence": "1",
435 "type": "person",
436 "names": [
437 {
438 "lang": "en",
439 "last_name": "Espaldon",
440 "first_name": "Maria Victoria O."
441 }
442 ],
443 "affiliation_list": [
444 {
445 "affiliation_name": "Professor, School of Environmental Science and Management, University of the Philippines Los Baños, College",
446 "sequence": "1",
447 "lang": "en"
448 }
449 ]
450 },
451 {
452 "sequence": "2",
453 "type": "person",
454 "names": [
455 {
456 "lang": "en",
457 "last_name": "Zamora",
458 "first_name": "Oscar B."
459 }
460 ],
461 "affiliation_list": [
462 {
463 "affiliation_name": "Professor, College of Agriculture, University of the Philippines Los Baños, College",
464 "sequence": "1",
465 "lang": "en"
466 }
467 ]
468 },
469 {
470 "sequence": "3",
471 "type": "person",
472 "names": [
473 {
474 "lang": "en",
475 "last_name": "Perez",
476 "first_name": "Rosa T."
477 }
478 ],
479 "affiliation_list": [
480 {
481 "affiliation_name": "Climate Change Specialist, Manila Observatory, Ateneo de Manila University",
482 "sequence": "1",
483 "lang": "en"
484 }
485 ]
486 }
487 ],
488 "content_language": "en",
489 "original_text": "Espaldon, M.V.O., Zamora, O.B. and Perez, R.T., 2010. Enhancing Food Security in the Context of Climate Change and the Role of Higher Education Institutions in the Philippines. J. Dev. .Sus. Agr. 5: 47-63."
490 },
491 {
492 "sequence": "9",
493 "original_text": "FAO (Food and Agriculture Organization), 2009. Food Security and Agricultural Mitigation in Developing Countries: Options for Capturing Synergies. FAO, Rome, Italy."
494 },
495 {
496 "sequence": "10",
497 "original_text": "FMB (Forest Management Bureau), 2009. Philippines Forestry Outlook Study in Asia-Pacific Forestry Sector Outlook Study II, FAO Working Paper Series. Working Paper No: APFSOS IIWP/2009/10. Retrieved on October 22, 2012 from http://www.fao.org/docrep/014/am255e/am255e00.pdf"
498 },
499 {
500 "sequence": "11",
501 "original_text": "Habito, C.F and Briones R.M., 2005. Philippine Agriculture over the Years: Performance, Policies and Pitfalls. Paper presented during the conference on “Policies to Strengthen Productivity in the Philippines’, June 27, 2005, Makati City, Philippines."
502 },
503 {
504 "sequence": "12",
505 "original_text": "Haub, C. and M.M. Kent, 2009. World Population Data Sheet. Retrieved October 30, 2012 from http://www.prb.org/pdf09/09wpds_eng.pdf."
506 },
507 {
508 "sequence": "13",
509 "original_text": "Killen, R., 2000. Outcomes-based education: Principles and possibilities. Unpublished manuscript, University of Newcastle, Faculty of Education. Retrieved on October 29, 2012 from http://drjj.uitm.edu.my/DRJJ/CONFERENCE/UPSI/OBEKillen.pdf"
510 },
511 {
512 "sequence": "14",
513 "original_text": "Nair, C.T.S. Undated. What does the future hold for forestry education? Retrieved October 25, 2012 from http://www.fao.org/docrep/007/y5382e/y5382e02.htm#P23_5619"
514 },
515 {
516 "sequence": "15",
517 "original_text": "NEDA (National Economic Development Authority). 2011. Philippine Development Plan 2011-2016. Retrieved December 15, 2012 from http://www.neda.gov.ph"
518 },
519 {
520 "sequence": "16",
521 "original_text": "NSCB (National Statistics and Coordination Board). 2012. Statistics on agriculture and fisheries. Retrieved December 15, 2012 from http://www.nscb.gov.ph"
522 },
523 {
524 "sequence": "17",
525 "original_text": "Osias, T., Tacardon, L. and Pedroso, L. (undated). People Beyond Numbers. The road to population stabilization of in the Philippines. Retrieved October 28, 2012 from http://www.gillespiefoundation.org/uploads/Philippines_Report.pdf"
526 },
527 {
528 "sequence": "18",
529 "original_text": "PEM (Philippines Environment Monitor). 2003. Water Quality. Published by the Department of Environment and Natural Resources, the Environmental Management Bureau and the World Bank Group, Country Office Manila. Retrieved on October 26, 2012 from http://worldbank.org/country/philippines"
530 },
531 {
532 "sequence": "19",
533 "original_text": "PFS (Philippine Forestry Statistics), 2011. Philippine Forestry Statistics, Published by Forestry Management Bureau, Department of Environment and Natural Resources, Republic of the Philippines. Retrieved on October 26, 2012 from http://forestry.denr.gov.ph/2011PFS.pdf"
534 },
535 {
536 "sequence": "20",
537 "original_text": "PIDS (Philippine Institute for Development Studies) 2011. What’s in store for AFNR Graduates in the Philippines? Dev. Res. News. 29 (4), July-August 2011, ISSN 0115-9097."
538 },
539 {
540 "sequence": "21",
541 "original_text": "Rebugio L.L. and Camacho, L.D. Reorienting forestry education to sustainable management. J. Environ. Sci. Manag. 6 (2): 49-58."
542 },
543 {
544 "sequence": "22",
545 "original_text": "Tolentino, B., David, C., Balisacan, A. and Intal P., 2001. “Strategic Actions to Rapidly Ensure Food Security and Rural Growth in the.” In <I>Yellow Paper II: The Post-Erap Reform Agenda. </I>Retrieved on October 24, 2012 from http://www.aer.ph/images/stories/projects/yp2/agri.pdf"
546 },
547 {
548 "sequence": "23",
549 "original_text": "Zundel, P.E. and Needham, T.D., 2000. Outcomes-Based Forestry Education. Application in New Brusnwick. J. For., 98 (2): 30-35."
550 }
551 ]
552 }
553 }
554 entity_dict = entity_dict["data"]
555 jalc_processor = JalcProcessing()
556 authors_list = jalc_processor._extract_agents(entity_dict)
557 authors_strings_list, _ = jalc_processor.get_agents_strings_list(entity_dict["doi"], authors_list)
558 expected_authors_list = ['O. Cruz, Rex Victor', 'B. Bantayan, Rosario', 'D. Landicho, Leila', 'C. Bantayan, Nathaniel']
560 self.assertEqual(authors_strings_list, expected_authors_list)
563 def test_get_agents_strings_list_same_family(self):
564 # Two authors have the same family name and the same given name initials
565 # The authors' information related to this publication are false, they have been used just for testing purposes
566 entity_dict = {
567 "status": "OK",
568 "apiType": "doi",
569 "apiVersion": "1.0.0",
570 "message": {
571 "total": 1,
572 "rows": 1,
573 "totalPages": 1,
574 "page": 1
575 },
576 "data": {
577 "siteId": "SI/JST.JSTAGE",
578 "content_type": "JA",
579 "doi": "10.11178/jdsa.8.49",
580 "url": "https://doi.org/10.11178/jdsa.8.49",
581 "ra": "JaLC",
582 "prefix": "10.11178",
583 "site_name": "J-STAGE",
584 "publisher_list": [
585 {
586 "publisher_name": "Agricultural and Forestry Research Center, University of Tsukuba",
587 "lang": "en"
588 },
589 {
590 "publisher_name": "筑波大学農林技術センター",
591 "lang": "ja"
592 }
593 ],
594 "title_list": [
595 {
596 "lang": "en",
597 "title": "Reformulating Agriculture and Forestry Education in the Philippines: Issues and Concerns"
598 }
599 ],
600 "creator_list": [
601 {
602 "sequence": "1",
603 "type": "person",
604 "names": [
605 {
606 "lang": "ja",
607 "last_name": "豊田",
608 "first_name": "理理子"
609 }
610 ],
611 "affiliation_list": [
612 {
613 "affiliation_name": "Professor, Institute of Natural Resources, College of Forestry and Natural Resources, University of the Philippines Los Baños",
614 "sequence": "1",
615 "lang": "ja"
616 }
617 ]
618 },
619 {
620 "sequence": "2",
621 "type": "person",
622 "names": [
623 {
624 "lang": "ja",
625 "last_name": "豊田",
626 "first_name": "理純一朗"
627 }
628 ],
629 "affiliation_list": [
630 {
631 "affiliation_name": "University Extension Specialist 1, Department of Forest Products and Paper Science, College of Forestry and Natural Resources, University of the Philippines Los Baños",
632 "sequence": "2",
633 "lang": "ja"
634 }
635 ]
636 }
637 ],
638 "publication_date": {
639 "publication_year": "2013"
640 },
641 "relation_list": [
642 {
643 "content": "https://www.jstage.jst.go.jp/article/jdsa/8/1/8_49/_pdf",
644 "type": "URL",
645 "relation": "fullTextPdf"
646 }
647 ],
648 "content_language": "en",
649 "updated_date": "2014-12-09",
650 "article_type": "pub",
651 "journal_id_list": [
652 {
653 "journal_id": "1880-3016",
654 "type": "ISSN",
655 "issn_type": "print"
656 },
657 {
658 "journal_id": "1880-3024",
659 "type": "ISSN",
660 "issn_type": "online"
661 },
662 {
663 "journal_id": "jdsa",
664 "type": "JID"
665 }
666 ],
667 "journal_title_name_list": [
668 {
669 "journal_title_name": "Journal of Developments in Sustainable Agriculture",
670 "type": "full",
671 "lang": "en"
672 },
673 {
674 "journal_title_name": "J. Dev. Sus. Agr.",
675 "type": "abbreviation",
676 "lang": "en"
677 }
678 ],
679 "journal_classification": "01",
680 "journal_txt_lang": "en",
681 "recorded_year": "2006-2014",
682 "volume": "8",
683 "issue": "1",
684 "first_page": "49",
685 "last_page": "62",
686 "date": "2013-03-15",
687 "keyword_list": [
688 {
689 "keyword": "forestry",
690 "sequence": "1",
691 "lang": "en"
692 },
693 {
694 "keyword": "agriculture",
695 "sequence": "2",
696 "lang": "en"
697 },
698 {
699 "keyword": "outcomes-based education",
700 "sequence": "3",
701 "lang": "en"
702 }
703 ],
704 "citation_list": [
705 {
706 "sequence": "1",
707 "original_text": "Adedoyin, O.O. and Shangodoyin, D.K., 2010. Concepts and Practices of Outcome Based Education for Effective Educational System in Botswana. Euro. J. Soc. Sci., 13 (2), 161-170."
708 },
709 {
710 "sequence": "2",
711 "original_text": "Bantayan, N.C., 2007. Forest (Bad) Science and (Mal) Practice: Can Filipino Foresters Rise Above The Pitfalls And Failures Of The Profession?. Policy Paper. Center for Integrative and Development Studies. UP Diliman, Quezon City, Philippines."
712 },
713 {
714 "sequence": "3",
715 "original_text": "BAS (Bureau of Agricultural Statistics). 2011. Philippine Agriculture in Figure. Retrieved December 15, 2012 from http://www.bas.gov.ph"
716 },
717 {
718 "sequence": "4",
719 "original_text": "Carandang, M.G., Landicho, L.D., Andrada II, R. T., Malabrigo, P.L. Jr., Angeles, A.M., Oliva, A.T., Eslava, F.E. Jr. and Regondola, M.L., 2008. Demystifying the State of Forestry Education and the Forestry Profession in the Philippines. Ecosys. Devel. J. 1 (1), 46-54."
720 },
721 {
722 "sequence": "5",
723 "original_text": "CHED Memorandum Order (CMO), 2012. Policies, Standards and Guidelines in the Establishment of an Outcomes-Based Education (OBE) System in Higher Education Institutions offering Engineering Programs. No. 37, Series of 2012."
724 },
725 {
726 "sequence": "6",
727 "original_text": "CHED Memorandum Order (CMO), 2008. Policies and Standards for Bachelor of Science in Agriculture (BSA) Program. No. 14, Series of 2008. Retrieved October 30, 2012 from http://www.ched.gov.ph/chedwww/index.php/eng/Information/CHED-Memorandum-Orders/2008-CHED-Memorandum-Orders"
728 },
729 {
730 "sequence": "7",
731 "original_text": "Cruz, R.V.O., Pulhin, J.M. and Mendoza M.D. 2011. Reinventing CFNR: Leading the Way in Integrated Tropical Forest and Natural Resource Management Education, Research and Governance (2011-2025). A Centennial Professorial Chair Lecture delivered in December 2011 at the Nicolas P. Lansigan Hall, College of Forestry and Natural Resources, University of the Philippines Los Banos, College, Laguna, Philippines."
732 },
733 {
734 "sequence": "8",
735 "doi": "10.11178/jdsa.5.47",
736 "title_list": [
737 {
738 "lang": "en",
739 "title": "Enhancing Food Security in the Context of Climate Change and the Role of Higher Education Institutions in the Philippines"
740 }
741 ],
742 "volume": "5",
743 "issue": "1",
744 "first_page": "47",
745 "last_page": "63",
746 "publication_date": {
747 "publication_year": "2010"
748 },
749 "creator_list": [
750 {
751 "sequence": "1",
752 "type": "person",
753 "names": [
754 {
755 "lang": "en",
756 "last_name": "Espaldon",
757 "first_name": "Maria Victoria O."
758 }
759 ],
760 "affiliation_list": [
761 {
762 "affiliation_name": "Professor, School of Environmental Science and Management, University of the Philippines Los Baños, College",
763 "sequence": "1",
764 "lang": "en"
765 }
766 ]
767 },
768 {
769 "sequence": "2",
770 "type": "person",
771 "names": [
772 {
773 "lang": "en",
774 "last_name": "Zamora",
775 "first_name": "Oscar B."
776 }
777 ],
778 "affiliation_list": [
779 {
780 "affiliation_name": "Professor, College of Agriculture, University of the Philippines Los Baños, College",
781 "sequence": "1",
782 "lang": "en"
783 }
784 ]
785 },
786 {
787 "sequence": "3",
788 "type": "person",
789 "names": [
790 {
791 "lang": "en",
792 "last_name": "Perez",
793 "first_name": "Rosa T."
794 }
795 ],
796 "affiliation_list": [
797 {
798 "affiliation_name": "Climate Change Specialist, Manila Observatory, Ateneo de Manila University",
799 "sequence": "1",
800 "lang": "en"
801 }
802 ]
803 }
804 ],
805 "content_language": "en",
806 "original_text": "Espaldon, M.V.O., Zamora, O.B. and Perez, R.T., 2010. Enhancing Food Security in the Context of Climate Change and the Role of Higher Education Institutions in the Philippines. J. Dev. .Sus. Agr. 5: 47-63."
807 },
808 {
809 "sequence": "9",
810 "original_text": "FAO (Food and Agriculture Organization), 2009. Food Security and Agricultural Mitigation in Developing Countries: Options for Capturing Synergies. FAO, Rome, Italy."
811 },
812 {
813 "sequence": "10",
814 "original_text": "FMB (Forest Management Bureau), 2009. Philippines Forestry Outlook Study in Asia-Pacific Forestry Sector Outlook Study II, FAO Working Paper Series. Working Paper No: APFSOS IIWP/2009/10. Retrieved on October 22, 2012 from http://www.fao.org/docrep/014/am255e/am255e00.pdf"
815 },
816 {
817 "sequence": "11",
818 "original_text": "Habito, C.F and Briones R.M., 2005. Philippine Agriculture over the Years: Performance, Policies and Pitfalls. Paper presented during the conference on “Policies to Strengthen Productivity in the Philippines’, June 27, 2005, Makati City, Philippines."
819 },
820 {
821 "sequence": "12",
822 "original_text": "Haub, C. and M.M. Kent, 2009. World Population Data Sheet. Retrieved October 30, 2012 from http://www.prb.org/pdf09/09wpds_eng.pdf."
823 },
824 {
825 "sequence": "13",
826 "original_text": "Killen, R., 2000. Outcomes-based education: Principles and possibilities. Unpublished manuscript, University of Newcastle, Faculty of Education. Retrieved on October 29, 2012 from http://drjj.uitm.edu.my/DRJJ/CONFERENCE/UPSI/OBEKillen.pdf"
827 },
828 {
829 "sequence": "14",
830 "original_text": "Nair, C.T.S. Undated. What does the future hold for forestry education? Retrieved October 25, 2012 from http://www.fao.org/docrep/007/y5382e/y5382e02.htm#P23_5619"
831 },
832 {
833 "sequence": "15",
834 "original_text": "NEDA (National Economic Development Authority). 2011. Philippine Development Plan 2011-2016. Retrieved December 15, 2012 from http://www.neda.gov.ph"
835 },
836 {
837 "sequence": "16",
838 "original_text": "NSCB (National Statistics and Coordination Board). 2012. Statistics on agriculture and fisheries. Retrieved December 15, 2012 from http://www.nscb.gov.ph"
839 },
840 {
841 "sequence": "17",
842 "original_text": "Osias, T., Tacardon, L. and Pedroso, L. (undated). People Beyond Numbers. The road to population stabilization of in the Philippines. Retrieved October 28, 2012 from http://www.gillespiefoundation.org/uploads/Philippines_Report.pdf"
843 },
844 {
845 "sequence": "18",
846 "original_text": "PEM (Philippines Environment Monitor). 2003. Water Quality. Published by the Department of Environment and Natural Resources, the Environmental Management Bureau and the World Bank Group, Country Office Manila. Retrieved on October 26, 2012 from http://worldbank.org/country/philippines"
847 },
848 {
849 "sequence": "19",
850 "original_text": "PFS (Philippine Forestry Statistics), 2011. Philippine Forestry Statistics, Published by Forestry Management Bureau, Department of Environment and Natural Resources, Republic of the Philippines. Retrieved on October 26, 2012 from http://forestry.denr.gov.ph/2011PFS.pdf"
851 },
852 {
853 "sequence": "20",
854 "original_text": "PIDS (Philippine Institute for Development Studies) 2011. What’s in store for AFNR Graduates in the Philippines? Dev. Res. News. 29 (4), July-August 2011, ISSN 0115-9097."
855 },
856 {
857 "sequence": "21",
858 "original_text": "Rebugio L.L. and Camacho, L.D. Reorienting forestry education to sustainable management. J. Environ. Sci. Manag. 6 (2): 49-58."
859 },
860 {
861 "sequence": "22",
862 "original_text": "Tolentino, B., David, C., Balisacan, A. and Intal P., 2001. “Strategic Actions to Rapidly Ensure Food Security and Rural Growth in the.” In <I>Yellow Paper II: The Post-Erap Reform Agenda. </I>Retrieved on October 24, 2012 from http://www.aer.ph/images/stories/projects/yp2/agri.pdf"
863 },
864 {
865 "sequence": "23",
866 "original_text": "Zundel, P.E. and Needham, T.D., 2000. Outcomes-Based Forestry Education. Application in New Brusnwick. J. For., 98 (2): 30-35."
867 }
868 ]
869 }
870 }
871 entity_dict = entity_dict["data"]
872 jalc_processor = JalcProcessing()
873 authors_list = jalc_processor._extract_agents(entity_dict)
874 authors_strings_list, _ = jalc_processor.get_agents_strings_list(entity_dict["doi"], authors_list)
875 expected_authors_list = ['豊田, 理理子', '豊田, 理純一朗']
876 self.assertEqual(authors_strings_list, expected_authors_list)
878 def test_get_agents_strings_list_homonyms(self):
879 # Two authors have the same family name and the same given name
880 # The authors' information related to this publication are false, they have been used just for testing purposes
881 entity_dict = {
882 "status": "OK",
883 "apiType": "doi",
884 "apiVersion": "1.0.0",
885 "message": {
886 "total": 1,
887 "rows": 1,
888 "totalPages": 1,
889 "page": 1
890 },
891 "data": {
892 "siteId": "SI/JST.JSTAGE",
893 "content_type": "JA",
894 "doi": "10.11178/jdsa.8.49",
895 "url": "https://doi.org/10.11178/jdsa.8.49",
896 "ra": "JaLC",
897 "prefix": "10.11178",
898 "site_name": "J-STAGE",
899 "publisher_list": [
900 {
901 "publisher_name": "Agricultural and Forestry Research Center, University of Tsukuba",
902 "lang": "en"
903 },
904 {
905 "publisher_name": "筑波大学農林技術センター",
906 "lang": "ja"
907 }
908 ],
909 "title_list": [
910 {
911 "lang": "en",
912 "title": "Reformulating Agriculture and Forestry Education in the Philippines: Issues and Concerns"
913 }
914 ],
915 "creator_list": [
916 {
917 "sequence": "1",
918 "type": "person",
919 "names": [
920 {
921 "lang": "ja",
922 "last_name": "豊田",
923 "first_name": "理理子"
924 }
925 ],
926 "affiliation_list": [
927 {
928 "affiliation_name": "Professor, Institute of Natural Resources, College of Forestry and Natural Resources, University of the Philippines Los Baños",
929 "sequence": "1",
930 "lang": "ja"
931 }
932 ]
933 },
934 {
935 "sequence": "2",
936 "type": "person",
937 "names": [
938 {
939 "lang": "ja",
940 "last_name": "豊田",
941 "first_name": "理純一朗"
942 }
943 ],
944 "affiliation_list": [
945 {
946 "affiliation_name": "University Extension Specialist 1, Department of Forest Products and Paper Science, College of Forestry and Natural Resources, University of the Philippines Los Baños",
947 "sequence": "2",
948 "lang": "ja"
949 }
950 ]
951 },
952 {
953 "sequence": "3",
954 "type": "person",
955 "names": [
956 {
957 "lang": "ja",
958 "last_name": "豊田",
959 "first_name": "理純一朗"
960 }
961 ],
962 "affiliation_list": [
963 {
964 "affiliation_name": "Climate Change Specialist, Manila Observatory, Ateneo de Manila University",
965 "sequence": "3",
966 "lang": "ja"
967 }
968 ]
969 }
970 ],
971 "publication_date": {
972 "publication_year": "2013"
973 },
974 "relation_list": [
975 {
976 "content": "https://www.jstage.jst.go.jp/article/jdsa/8/1/8_49/_pdf",
977 "type": "URL",
978 "relation": "fullTextPdf"
979 }
980 ],
981 "content_language": "en",
982 "updated_date": "2014-12-09",
983 "article_type": "pub",
984 "journal_id_list": [
985 {
986 "journal_id": "1880-3016",
987 "type": "ISSN",
988 "issn_type": "print"
989 },
990 {
991 "journal_id": "1880-3024",
992 "type": "ISSN",
993 "issn_type": "online"
994 },
995 {
996 "journal_id": "jdsa",
997 "type": "JID"
998 }
999 ],
1000 "journal_title_name_list": [
1001 {
1002 "journal_title_name": "Journal of Developments in Sustainable Agriculture",
1003 "type": "full",
1004 "lang": "en"
1005 },
1006 {
1007 "journal_title_name": "J. Dev. Sus. Agr.",
1008 "type": "abbreviation",
1009 "lang": "en"
1010 }
1011 ],
1012 "journal_classification": "01",
1013 "journal_txt_lang": "en",
1014 "recorded_year": "2006-2014",
1015 "volume": "8",
1016 "issue": "1",
1017 "first_page": "49",
1018 "last_page": "62",
1019 "date": "2013-03-15",
1020 "keyword_list": [
1021 {
1022 "keyword": "forestry",
1023 "sequence": "1",
1024 "lang": "en"
1025 },
1026 {
1027 "keyword": "agriculture",
1028 "sequence": "2",
1029 "lang": "en"
1030 },
1031 {
1032 "keyword": "outcomes-based education",
1033 "sequence": "3",
1034 "lang": "en"
1035 }
1036 ],
1037 "citation_list": [
1038 {
1039 "sequence": "1",
1040 "original_text": "Adedoyin, O.O. and Shangodoyin, D.K., 2010. Concepts and Practices of Outcome Based Education for Effective Educational System in Botswana. Euro. J. Soc. Sci., 13 (2), 161-170."
1041 },
1042 {
1043 "sequence": "2",
1044 "original_text": "Bantayan, N.C., 2007. Forest (Bad) Science and (Mal) Practice: Can Filipino Foresters Rise Above The Pitfalls And Failures Of The Profession?. Policy Paper. Center for Integrative and Development Studies. UP Diliman, Quezon City, Philippines."
1045 },
1046 {
1047 "sequence": "3",
1048 "original_text": "BAS (Bureau of Agricultural Statistics). 2011. Philippine Agriculture in Figure. Retrieved December 15, 2012 from http://www.bas.gov.ph"
1049 },
1050 {
1051 "sequence": "4",
1052 "original_text": "Carandang, M.G., Landicho, L.D., Andrada II, R. T., Malabrigo, P.L. Jr., Angeles, A.M., Oliva, A.T., Eslava, F.E. Jr. and Regondola, M.L., 2008. Demystifying the State of Forestry Education and the Forestry Profession in the Philippines. Ecosys. Devel. J. 1 (1), 46-54."
1053 },
1054 {
1055 "sequence": "5",
1056 "original_text": "CHED Memorandum Order (CMO), 2012. Policies, Standards and Guidelines in the Establishment of an Outcomes-Based Education (OBE) System in Higher Education Institutions offering Engineering Programs. No. 37, Series of 2012."
1057 },
1058 {
1059 "sequence": "6",
1060 "original_text": "CHED Memorandum Order (CMO), 2008. Policies and Standards for Bachelor of Science in Agriculture (BSA) Program. No. 14, Series of 2008. Retrieved October 30, 2012 from http://www.ched.gov.ph/chedwww/index.php/eng/Information/CHED-Memorandum-Orders/2008-CHED-Memorandum-Orders"
1061 },
1062 {
1063 "sequence": "7",
1064 "original_text": "Cruz, R.V.O., Pulhin, J.M. and Mendoza M.D. 2011. Reinventing CFNR: Leading the Way in Integrated Tropical Forest and Natural Resource Management Education, Research and Governance (2011-2025). A Centennial Professorial Chair Lecture delivered in December 2011 at the Nicolas P. Lansigan Hall, College of Forestry and Natural Resources, University of the Philippines Los Banos, College, Laguna, Philippines."
1065 },
1066 {
1067 "sequence": "8",
1068 "doi": "10.11178/jdsa.5.47",
1069 "title_list": [
1070 {
1071 "lang": "en",
1072 "title": "Enhancing Food Security in the Context of Climate Change and the Role of Higher Education Institutions in the Philippines"
1073 }
1074 ],
1075 "volume": "5",
1076 "issue": "1",
1077 "first_page": "47",
1078 "last_page": "63",
1079 "publication_date": {
1080 "publication_year": "2010"
1081 },
1082 "creator_list": [
1083 {
1084 "sequence": "1",
1085 "type": "person",
1086 "names": [
1087 {
1088 "lang": "en",
1089 "last_name": "Espaldon",
1090 "first_name": "Maria Victoria O."
1091 }
1092 ],
1093 "affiliation_list": [
1094 {
1095 "affiliation_name": "Professor, School of Environmental Science and Management, University of the Philippines Los Baños, College",
1096 "sequence": "1",
1097 "lang": "en"
1098 }
1099 ]
1100 },
1101 {
1102 "sequence": "2",
1103 "type": "person",
1104 "names": [
1105 {
1106 "lang": "en",
1107 "last_name": "Zamora",
1108 "first_name": "Oscar B."
1109 }
1110 ],
1111 "affiliation_list": [
1112 {
1113 "affiliation_name": "Professor, College of Agriculture, University of the Philippines Los Baños, College",
1114 "sequence": "1",
1115 "lang": "en"
1116 }
1117 ]
1118 },
1119 {
1120 "sequence": "3",
1121 "type": "person",
1122 "names": [
1123 {
1124 "lang": "en",
1125 "last_name": "Perez",
1126 "first_name": "Rosa T."
1127 }
1128 ],
1129 "affiliation_list": [
1130 {
1131 "affiliation_name": "Climate Change Specialist, Manila Observatory, Ateneo de Manila University",
1132 "sequence": "1",
1133 "lang": "en"
1134 }
1135 ]
1136 }
1137 ],
1138 "content_language": "en",
1139 "original_text": "Espaldon, M.V.O., Zamora, O.B. and Perez, R.T., 2010. Enhancing Food Security in the Context of Climate Change and the Role of Higher Education Institutions in the Philippines. J. Dev. .Sus. Agr. 5: 47-63."
1140 },
1141 {
1142 "sequence": "9",
1143 "original_text": "FAO (Food and Agriculture Organization), 2009. Food Security and Agricultural Mitigation in Developing Countries: Options for Capturing Synergies. FAO, Rome, Italy."
1144 },
1145 {
1146 "sequence": "10",
1147 "original_text": "FMB (Forest Management Bureau), 2009. Philippines Forestry Outlook Study in Asia-Pacific Forestry Sector Outlook Study II, FAO Working Paper Series. Working Paper No: APFSOS IIWP/2009/10. Retrieved on October 22, 2012 from http://www.fao.org/docrep/014/am255e/am255e00.pdf"
1148 },
1149 {
1150 "sequence": "11",
1151 "original_text": "Habito, C.F and Briones R.M., 2005. Philippine Agriculture over the Years: Performance, Policies and Pitfalls. Paper presented during the conference on “Policies to Strengthen Productivity in the Philippines’, June 27, 2005, Makati City, Philippines."
1152 },
1153 {
1154 "sequence": "12",
1155 "original_text": "Haub, C. and M.M. Kent, 2009. World Population Data Sheet. Retrieved October 30, 2012 from http://www.prb.org/pdf09/09wpds_eng.pdf."
1156 },
1157 {
1158 "sequence": "13",
1159 "original_text": "Killen, R., 2000. Outcomes-based education: Principles and possibilities. Unpublished manuscript, University of Newcastle, Faculty of Education. Retrieved on October 29, 2012 from http://drjj.uitm.edu.my/DRJJ/CONFERENCE/UPSI/OBEKillen.pdf"
1160 },
1161 {
1162 "sequence": "14",
1163 "original_text": "Nair, C.T.S. Undated. What does the future hold for forestry education? Retrieved October 25, 2012 from http://www.fao.org/docrep/007/y5382e/y5382e02.htm#P23_5619"
1164 },
1165 {
1166 "sequence": "15",
1167 "original_text": "NEDA (National Economic Development Authority). 2011. Philippine Development Plan 2011-2016. Retrieved December 15, 2012 from http://www.neda.gov.ph"
1168 },
1169 {
1170 "sequence": "16",
1171 "original_text": "NSCB (National Statistics and Coordination Board). 2012. Statistics on agriculture and fisheries. Retrieved December 15, 2012 from http://www.nscb.gov.ph"
1172 },
1173 {
1174 "sequence": "17",
1175 "original_text": "Osias, T., Tacardon, L. and Pedroso, L. (undated). People Beyond Numbers. The road to population stabilization of in the Philippines. Retrieved October 28, 2012 from http://www.gillespiefoundation.org/uploads/Philippines_Report.pdf"
1176 },
1177 {
1178 "sequence": "18",
1179 "original_text": "PEM (Philippines Environment Monitor). 2003. Water Quality. Published by the Department of Environment and Natural Resources, the Environmental Management Bureau and the World Bank Group, Country Office Manila. Retrieved on October 26, 2012 from http://worldbank.org/country/philippines"
1180 },
1181 {
1182 "sequence": "19",
1183 "original_text": "PFS (Philippine Forestry Statistics), 2011. Philippine Forestry Statistics, Published by Forestry Management Bureau, Department of Environment and Natural Resources, Republic of the Philippines. Retrieved on October 26, 2012 from http://forestry.denr.gov.ph/2011PFS.pdf"
1184 },
1185 {
1186 "sequence": "20",
1187 "original_text": "PIDS (Philippine Institute for Development Studies) 2011. What’s in store for AFNR Graduates in the Philippines? Dev. Res. News. 29 (4), July-August 2011, ISSN 0115-9097."
1188 },
1189 {
1190 "sequence": "21",
1191 "original_text": "Rebugio L.L. and Camacho, L.D. Reorienting forestry education to sustainable management. J. Environ. Sci. Manag. 6 (2): 49-58."
1192 },
1193 {
1194 "sequence": "22",
1195 "original_text": "Tolentino, B., David, C., Balisacan, A. and Intal P., 2001. “Strategic Actions to Rapidly Ensure Food Security and Rural Growth in the.” In <I>Yellow Paper II: The Post-Erap Reform Agenda. </I>Retrieved on October 24, 2012 from http://www.aer.ph/images/stories/projects/yp2/agri.pdf"
1196 },
1197 {
1198 "sequence": "23",
1199 "original_text": "Zundel, P.E. and Needham, T.D., 2000. Outcomes-Based Forestry Education. Application in New Brusnwick. J. For., 98 (2): 30-35."
1200 }
1201 ]
1202 }
1203 }
1204 entity_dict = entity_dict["data"]
1205 jalc_processor = JalcProcessing()
1206 authors_list = jalc_processor._extract_agents(entity_dict)
1207 authors_strings_list, _ = jalc_processor.get_agents_strings_list(entity_dict["doi"], authors_list)
1208 expected_authors_list = ['豊田, 理理子', '豊田, 理純一朗', '豊田, 理純一朗']
1209 self.assertEqual(authors_strings_list, expected_authors_list)
1212 def test_get_agents_strings_list_inverted_names(self):
1213 # One author with an ORCID has as a name the surname of another
1214 # The authors' information related to this publication are false, they have been used just for testing purposes
1216 entity_dict = {
1217 "status": "OK",
1218 "apiType": "doi",
1219 "apiVersion": "1.0.0",
1220 "message": {
1221 "total": 1,
1222 "rows": 1,
1223 "totalPages": 1,
1224 "page": 1
1225 },
1226 "data": {
1227 "siteId": "SI/JST.JSTAGE",
1228 "content_type": "JA",
1229 "doi": "10.11230/jsts.17.2_1",
1230 "url": "https://doi.org/10.11230/jsts.17.2_1",
1231 "ra": "JaLC",
1232 "prefix": "10.11230",
1233 "site_name": "J-STAGE",
1234 "publisher_list": [
1235 {
1236 "publisher_name": "Japanese Rocket Society",
1237 "lang": "en"
1238 },
1239 {
1240 "publisher_name": "特定非営利活動法人 日本ロケット協会",
1241 "lang": "ja"
1242 }
1243 ],
1244 "title_list": [
1245 {
1246 "lang": "en",
1247 "title": "Diamond Synthesis with Completely Closed Chamber from Solid or Liquid Carbon Sources, In-Situ Analysis of Gaseous Species and the Possible Reaction Model"
1248 }
1249 ],
1250 "creator_list": [
1251 {
1252 "sequence": "1",
1253 "type": "person",
1254 "names": [
1255 {
1256 "lang": "en",
1257 "last_name": "TAKAGI",
1258 "first_name": "Yoshiki"
1259 }
1260 ],
1261 "affiliation_list": [
1262 {
1263 "affiliation_name": "Teikyo University of Science and Technology",
1264 "sequence": "1",
1265 "lang": "en"
1266 }
1267 ]
1268 },
1269 {
1270 "sequence": "2",
1271 "type": "person",
1272 "names": [
1273 {
1274 "lang": "en",
1275 "last_name": "Yoshiki",
1276 "first_name": "TAKAGI"
1277 }
1278 ],
1279 "affiliation_list": [
1280 {
1281 "affiliation_name": "Teikyo University of Science and Technology",
1282 "sequence": "2",
1283 "lang": "en"
1284 }
1285 ]
1286 }
1287 ],
1288 "publication_date": {
1289 "publication_year": "2001"
1290 },
1291 "relation_list": [
1292 {
1293 "content": "https://www.jstage.jst.go.jp/article/jsts/17/2/17_2_1/_pdf",
1294 "type": "URL",
1295 "relation": "fullTextPdf"
1296 }
1297 ],
1298 "content_language": "en",
1299 "updated_date": "2014-12-09",
1300 "article_type": "pub",
1301 "journal_id_list": [
1302 {
1303 "journal_id": "0911-551X",
1304 "type": "ISSN",
1305 "issn_type": "print"
1306 },
1307 {
1308 "journal_id": "2186-4772",
1309 "type": "ISSN",
1310 "issn_type": "online"
1311 },
1312 {
1313 "journal_id": "jsts",
1314 "type": "JID"
1315 }
1316 ],
1317 "journal_title_name_list": [
1318 {
1319 "journal_title_name": "The Journal of Space Technology and Science",
1320 "type": "full",
1321 "lang": "en"
1322 },
1323 {
1324 "journal_title_name": "JSTS",
1325 "type": "abbreviation",
1326 "lang": "en"
1327 }
1328 ],
1329 "journal_classification": "01",
1330 "journal_txt_lang": "en",
1331 "recorded_year": "1985-2013",
1332 "volume": "17",
1333 "issue": "2",
1334 "first_page": "2_1",
1335 "last_page": "2_7",
1336 "date": "2013-08-21",
1337 "keyword_list": [
1338 {
1339 "keyword": "Microgravity",
1340 "sequence": "1",
1341 "lang": "en"
1342 },
1343 {
1344 "keyword": "Diamond synthesis",
1345 "sequence": "2",
1346 "lang": "en"
1347 }
1348 ],
1349 "citation_list": [
1350 {
1351 "sequence": "1",
1352 "doi": "10.1063/1.1656693",
1353 "volume": "39",
1354 "first_page": "2915",
1355 "publication_date": {
1356 "publication_year": "1968"
1357 },
1358 "original_text": "1) J. C. Angus, H. A. Will and W S. Stanko: Journal of Applied Physics 39, 2915 (1968)."
1359 },
1360 {
1361 "sequence": "2",
1362 "doi": "10.1016/0022-0248(83)90411-6",
1363 "journal_title_name_list": [
1364 {
1365 "journal_title_name": "Journal of Crystal Growth",
1366 "lang": "ja"
1367 }
1368 ],
1369 "volume": "62",
1370 "first_page": "642",
1371 "publication_date": {
1372 "publication_year": "1983"
1373 },
1374 "content_language": "ja",
1375 "original_text": "2) M. Kamo, Y. Sato, S. Matsumoto, H. Setaka: Journal of Crystal Growth 62, 642 (1983)."
1376 },
1377 {
1378 "sequence": "3",
1379 "original_text": "3) Genchi. Y, Yasuda and T. Komiyama. H: International Chemical Engineering 32(3), 560-569 (1992)."
1380 },
1381 {
1382 "sequence": "3",
1383 "original_text": "4) Tsang. R S. May: International Chemical Engineering 32(3), 560-569 (1992)."
1384 },
1385 {
1386 "sequence": "4",
1387 "original_text": "3) Genchi. Y, Yasuda and T. Komiyama. H: International Chemical Engineering 32(3), 560-569 (1992)."
1388 },
1389 {
1390 "sequence": "4",
1391 "original_text": "4) Tsang. R S. May: International Chemical Engineering 32(3), 560-569 (1992)."
1392 },
1393 {
1394 "sequence": "5",
1395 "original_text": "5) Y. Hirose: Proceeding of 1 st International Conference for New Diamond Science and Technology P.51, KTK Terra Publish. (Tokyo, 1988)."
1396 },
1397 {
1398 "sequence": "6",
1399 "original_text": "6) Y. Takagi, S. Sato, K. Kaigawa, A. B. Sawaoka and L. L. Regel: Microgravity Quaterly, 2(1), 39-42 (1992)."
1400 },
1401 {
1402 "sequence": "7",
1403 "original_text": "7) S. Sato, K. Kaigawa, Y. Takagi, Y. Hirose and A. B. Sawaoka: Journal of the Japan Society of Microgravity Application 10(1), 38-45 (1993)."
1404 },
1405 {
1406 "sequence": "8",
1407 "original_text": "8) Y. Tanabe, K. Kaigawa, Y. Takagi and A. B. Sawaoka: Journal of the Japan Society of Microgravity Application 11(2), 71-79 ( 1994)."
1408 },
1409 {
1410 "sequence": "9",
1411 "original_text": "9) Y. Takagi, K. Hibiya and H. Takeuchi: Journal of the Japan Society of Microgravity Application 13(4), 225-233 (1996)."
1412 },
1413 {
1414 "sequence": "10",
1415 "original_text": "10) Y. Takagi, L. L. Regel and W R Wilcox: Transaction of the Materials Research Society of Japan 24(4), 513-518 (1999)."
1416 },
1417 {
1418 "sequence": "11",
1419 "original_text": "11) Y. Takagi, L. L. Regel and W R Wilcox: Journal, of the Japan Society of Microgravity Application 15(3), 140-145 (1998)."
1420 },
1421 {
1422 "sequence": "12",
1423 "original_text": "12) Y. Takagi, M. Suzuki, H. Abe and Y. Inatomi: Journal, of the Japan Society of Microgravity Application 17(3), 159-165 (2000)."
1424 },
1425 {
1426 "sequence": "13",
1427 "original_text": "13) K. Fabisiak, et al., Diamond and Related Materials, 1(1992) pp. 77-82."
1428 },
1429 {
1430 "sequence": "14",
1431 "original_text": "14) M. Uede & Y. Takagi: J. Mater. Res., 16 (11), 3069-3072 (2001)."
1432 },
1433 {
1434 "sequence": "15",
1435 "original_text": "15) M. Okoshi, et al., Applied Surface Science, 154-155 (2000) pp.376-381."
1436 },
1437 {
1438 "sequence": "16",
1439 "original_text": "16) F. Onishi, R Hayashi, Y. Takagi, Proceedings of 2001 MRS Spring meeting, San Francisco,(submitted)."
1440 },
1441 {
1442 "sequence": "17",
1443 "doi": "10.1016/0038-1098(88)91128-3",
1444 "title_list": [
1445 {
1446 "lang": "en",
1447 "title": "Raman spectra of diamondlike amorphous carbon films."
1448 }
1449 ],
1450 "volume": "66",
1451 "issue": "11",
1452 "first_page": "1177",
1453 "last_page": "1180",
1454 "publication_date": {
1455 "publication_year": "1988"
1456 },
1457 "content_language": "en",
1458 "original_text": "17) M. Yoshikawa, G. Katagiri, H. Ishida and A. Ishitani: Solid State Communication, 66, 1177 (1988)."
1459 },
1460 {
1461 "sequence": "18",
1462 "original_text": "18) R Gat and J. C. Angus: Journal of Applied Physics 74, 5981-5989 (1993)."
1463 }
1464 ]
1465 }
1466 }
1467 entity_dict = entity_dict["data"]
1468 jalc_processor = JalcProcessing(orcid_index=IOD)
1469 jalc_processor.prefetch_doi_orcid_index([entity_dict["doi"]])
1470 authors_list = jalc_processor._extract_agents(entity_dict)
1471 authors_strings_list, _ = jalc_processor.get_agents_strings_list(entity_dict["doi"], authors_list)
1472 expected_authors_list = ['TAKAGI, Yoshiki [orcid:0000-0001-9597-7030]', 'Yoshiki, TAKAGI']
1474 self.assertEqual(authors_strings_list, expected_authors_list)
1476 def test_extract_publisher_cited_without_redis(self):
1477 item_dict = {
1478 "sequence": "11",
1479 "doi": "10.1093/comjnl/4.4.332",
1480 "content_language": "en",
1481 "original_text": "11) FRANCIS J. G. F. The QR transformation, parts I and II. Computer Journal. (1962) vol.4, 265-271, p.332-345. doi:10.1093/comjnl/4.4.332"
1482 }
1483 jalc_processor = JalcProcessing(citing=False)
1484 publisher_name = jalc_processor._extract_publisher(item_dict)
1485 self.assertEqual(publisher_name, '')
1487 def test_extract_venue(self):
1488 with open(DATA, "r", encoding="utf-8") as content:
1489 data = json.load(content)
1490 item_dict = data["data"]
1491 jalc_processor = JalcProcessing()
1492 venue_name = jalc_processor._extract_venue(item_dict)
1493 self.assertEqual(venue_name, 'The Journal of Space Technology and Science [issn:0911-551X issn:2186-4772 jid:jsts]')
1496 def test_extract_venue_without_full(self):
1497 item_dict = {
1498 "status": "OK",
1499 "apiType": "doi",
1500 "apiVersion": "1.0.0",
1501 "message": {
1502 "total": 1,
1503 "rows": 1,
1504 "totalPages": 1,
1505 "page": 1
1506 },
1507 "data": {
1508 "siteId": "SI/JST.JSTAGE",
1509 "content_type": "JA",
1510 "doi": "10.11230/jsts.17.1_11",
1511 "url": "https://doi.org/10.11230/jsts.17.1_11",
1512 "ra": "JaLC",
1513 "prefix": "10.11230",
1514 "site_name": "J-STAGE",
1515 "publisher_list": [
1516 {
1517 "publisher_name": "Japanese Rocket Society",
1518 "lang": "en"
1519 },
1520 {
1521 "publisher_name": "特定非営利活動法人 日本ロケット協会",
1522 "lang": "ja"
1523 }
1524 ],
1525 "title_list": [
1526 {
1527 "lang": "en",
1528 "title": "Development of an Airtight Recirculating Zooplankton Culture Device for Closed Ecological Recirculating Aquaculture System (CERAS)"
1529 }
1530 ],
1531 "creator_list": [
1532 {
1533 "sequence": "1",
1534 "type": "person",
1535 "names": [
1536 {
1537 "lang": "en",
1538 "last_name": "OMORI",
1539 "first_name": "Katsunori"
1540 }
1541 ],
1542 "affiliation_list": [
1543 {
1544 "affiliation_name": "National Aerospace Laboratory of Japan",
1545 "sequence": "1",
1546 "lang": "en"
1547 }
1548 ]
1549 },
1550 {
1551 "sequence": "2",
1552 "type": "person",
1553 "names": [
1554 {
1555 "lang": "en",
1556 "last_name": "WATANABE",
1557 "first_name": "Shigeki"
1558 }
1559 ],
1560 "affiliation_list": [
1561 {
1562 "affiliation_name": "Tokyo University of Fisheries",
1563 "sequence": "1",
1564 "lang": "en"
1565 }
1566 ]
1567 },
1568 {
1569 "sequence": "3",
1570 "type": "person",
1571 "names": [
1572 {
1573 "lang": "en",
1574 "last_name": "ENDO",
1575 "first_name": "Masato"
1576 }
1577 ],
1578 "affiliation_list": [
1579 {
1580 "affiliation_name": "Tokyo University of Fisheries",
1581 "sequence": "1",
1582 "lang": "en"
1583 }
1584 ]
1585 },
1586 {
1587 "sequence": "4",
1588 "type": "person",
1589 "names": [
1590 {
1591 "lang": "en",
1592 "last_name": "TAKEUCHI",
1593 "first_name": "Toshio"
1594 }
1595 ],
1596 "affiliation_list": [
1597 {
1598 "affiliation_name": "Tokyo University of Fisheries",
1599 "sequence": "1",
1600 "lang": "en"
1601 }
1602 ]
1603 },
1604 {
1605 "sequence": "5",
1606 "type": "person",
1607 "names": [
1608 {
1609 "lang": "en",
1610 "last_name": "OGUCHI",
1611 "first_name": "Mitsuo"
1612 }
1613 ],
1614 "affiliation_list": [
1615 {
1616 "affiliation_name": "National Aerospace Laboratory of Japan",
1617 "sequence": "1",
1618 "lang": "en"
1619 }
1620 ]
1621 }
1622 ],
1623 "publication_date": {
1624 "publication_year": "2001"
1625 },
1626 "relation_list": [
1627 {
1628 "content": "https://www.jstage.jst.go.jp/article/jsts/17/1/17_1_11/_pdf",
1629 "type": "URL",
1630 "relation": "fullTextPdf"
1631 }
1632 ],
1633 "content_language": "en",
1634 "updated_date": "2014-12-09",
1635 "article_type": "pub",
1636 "journal_id_list": [
1637 {
1638 "journal_id": "0911-551X",
1639 "type": "ISSN",
1640 "issn_type": "print"
1641 },
1642 {
1643 "journal_id": "2186-4772",
1644 "type": "ISSN",
1645 "issn_type": "online"
1646 },
1647 {
1648 "journal_id": "jsts",
1649 "type": "JID"
1650 }
1651 ],
1652 "journal_title_name_list": [
1653 {
1654 "journal_title_name": "JSTS",
1655 "type": "abbreviation",
1656 "lang": "en"
1657 }
1658 ],
1659 "journal_classification": "01",
1660 "journal_txt_lang": "en",
1661 "recorded_year": "1985-2013",
1662 "volume": "17",
1663 "issue": "1",
1664 "first_page": "1_11",
1665 "last_page": "1_17",
1666 "date": "2013-08-21",
1667 "keyword_list": [
1668 {
1669 "keyword": "CERAS",
1670 "sequence": "1",
1671 "lang": "en"
1672 },
1673 {
1674 "keyword": "Closed Ecological Recirculating Aquaculture System",
1675 "sequence": "2",
1676 "lang": "en"
1677 },
1678 {
1679 "keyword": "Airtight Recirculating Zooplankton Culture Device",
1680 "sequence": "3",
1681 "lang": "en"
1682 }
1683 ],
1684 "citation_list": [
1685 {
1686 "sequence": "1",
1687 "title_list": [
1688 {
1689 "lang": "en",
1690 "title": "Japan's activities on CELSS in space."
1691 }
1692 ],
1693 "volume": "96",
1694 "first_page": "605",
1695 "last_page": "616",
1696 "publication_date": {
1697 "publication_year": "1997"
1698 },
1699 "content_language": "en",
1700 "original_text": "1) S. Kibe and K. Suzuki: Japan’s Activities on CELSS in Space. Adv. in the Astronautical Sci., 96, 605-616 (1997)."
1701 },
1702 {
1703 "sequence": "2",
1704 "doi": "10.11450/seitaikogaku1989.10.1",
1705 "title_list": [
1706 {
1707 "lang": "en",
1708 "title": "Study on the Development of Closed Ecological Recirculating Aquaculture System(CERAS). I. Development of Fish-rearing Closed Tank."
1709 }
1710 ],
1711 "volume": "10",
1712 "issue": "1",
1713 "first_page": "1",
1714 "last_page": "4",
1715 "publication_date": {
1716 "publication_year": "1997"
1717 },
1718 "content_language": "ja",
1719 "original_text": "2) T. Takeuchi, S. Noto, G. Yoshizaki, M. Toyobe, R. Kanki, M. Oguchi, S Kibe, and H. Tanaka: Study on the Development of Closed Ecological Recirculating Aquaculture System (CERAS) 1. Development of Fish-rearing Closed Tank. CELSS J., 10(1), 1-4 (1997)."
1720 },
1721 {
1722 "sequence": "3",
1723 "volume": "352",
1724 "first_page": "59",
1725 "publication_date": {
1726 "publication_year": "1997"
1727 },
1728 "original_text": "3) M. I. Gladyshev, A. P. Tolomeev and A. G. Degermendzhi: Dependence on Growth Rate of Moina macrocopa on the Concentration of Chlorella vulgaris in Differential-flow and Closed Fermenters. Doklady Biological. Sci., 352, 59-61 (1997)."
1729 },
1730 {
1731 "sequence": "4",
1732 "volume": "25",
1733 "first_page": "1",
1734 "publication_date": {
1735 "publication_year": "1991"
1736 },
1737 "original_text": "4) J. Urabe: Effect of Food Concentration on Growth, Reproduction and Survivorship of Bosmina longirostris (Cladocera): an Experiment Study. Freshwater Biol., 25, 1-8 (1991)."
1738 },
1739 {
1740 "sequence": "5",
1741 "original_text": "5) K. Omori, T. Takeuchi, and M. Oguchi: The Trial Model of the Recirculating Zooplankton-culture System. Eco-Engineering, 14(2), (2002) in press."
1742 },
1743 {
1744 "sequence": "6",
1745 "volume": "25",
1746 "issue": "4",
1747 "first_page": "134",
1748 "publication_date": {
1749 "publication_year": "1978"
1750 },
1751 "original_text": "6) T. Mochizuki, H. Shimizu, M. Tanaka, and K. Endo: Studies on Growth of Zooplankton. 1. Growth Rate of Batch Culture. Aqriculture, 25(4), 134-137 (1978)."
1752 },
1753 {
1754 "sequence": "7",
1755 "volume": "7",
1756 "issue": "11",
1757 "first_page": "44",
1758 "publication_date": {
1759 "publication_year": "1970"
1760 },
1761 "original_text": "7) S. Kitamura: Nutrition and Production of Daphnid. Fish Culture. 7(11), 44-49 (1970)."
1762 },
1763 {
1764 "sequence": "8",
1765 "volume": "18",
1766 "issue": "7",
1767 "first_page": "66",
1768 "publication_date": {
1769 "publication_year": "1981"
1770 },
1771 "original_text": "8) A. Oka: The Culture of Freshwater Daphnid. Fish Culture, 18(7), 66-68 (1981)."
1772 },
1773 {
1774 "sequence": "9",
1775 "first_page": "737pp",
1776 "publication_date": {
1777 "publication_year": "1991"
1778 },
1779 "original_text": "9) Agriculture, Forestry and Fisheries Research Council Secretariat, Ministry of Agriculture, Forestry and Fisheries (ed.): Biomass Conversion Program -Utilize Abundant Resources-, KORIN Publishing, Co., Ltd., Tokyo, 737pp (1991)."
1780 }
1781 ]
1782 }
1783 }
1784 jalc_processor = JalcProcessing()
1785 venue_name = jalc_processor._extract_venue(item_dict["data"])
1786 self.assertEqual(venue_name, 'JSTS [issn:0911-551X issn:2186-4772 jid:jsts]')
1788 def test_extract_venue_packed_multilang_single_entry(self):
1789 # Real JaLC record 10.24517/0002000619: the publisher collapsed two
1790 # languages into a single untagged entry separated by '\n' with an
1791 # inline "en:" prefix. The first unprefixed line is the Japanese
1792 # title; the extractor must recover it and must NOT emit a CSV cell
1793 # containing a literal newline.
1794 item = {
1795 "journal_title_name_list": [
1796 {
1797 "journal_title_name": "金大考古\nen: The Archaeological Journal of Kanazawa University"
1798 }
1799 ]
1800 }
1801 jalc_processor = JalcProcessing()
1802 venue_name = jalc_processor._extract_venue(item)
1803 self.assertEqual(venue_name, '金大考古')
1805 def test_extract_venue_unparseable_multiline_is_flattened(self):
1806 # A multiline entry that does NOT follow the "<lang>: ..." convention
1807 # must not be split (no unsafe heuristic). Whitespace is still
1808 # collapsed so the CSV cell stays single-line.
1809 item = {
1810 "journal_title_name_list": [
1811 {"journal_title_name": "foo\nbar baz"}
1812 ]
1813 }
1814 jalc_processor = JalcProcessing()
1815 venue_name = jalc_processor._extract_venue(item)
1816 self.assertEqual(venue_name, 'foo bar baz')
1818 def test_extract_agents_html_entity_whitespace(self):
1819 # Real JaLC record 10.14866/ajg.2009f.0.34.0: the source encodes a
1820 # CR/LF inside a Japanese surname as HTML numeric references
1821 # (`` ``). After decoding these must not survive into the
1822 # CSV author cell, otherwise the curator's regex chokes on the
1823 # embedded newline.
1824 item = {
1825 "creator_list": [
1826 {
1827 "sequence": "1",
1828 "type": "person",
1829 "names": [
1830 {"lang": "ja", "last_name": "桒 原", "first_name": "康裕"}
1831 ],
1832 }
1833 ]
1834 }
1835 jalc_processor = JalcProcessing()
1836 agents = jalc_processor._extract_agents(item)
1837 self.assertEqual(agents[0]["family"], "桒 原")
1838 self.assertEqual(agents[0]["name"], "桒 原, 康裕")
1840 def test_extract_publisher_collapses_embedded_whitespace(self):
1841 # Real JaLC record 10.34515/DATA.HSC-00000: publisher_name carries
1842 # raw newlines and tabs from the source. Must be flattened to a
1843 # single line before reaching the CSV.
1844 item = {
1845 "publisher_list": [
1846 {
1847 "publisher_name": "\n\t Hinode Science Center,\n\t Institute for Space-Earth Environmental Research, Nagoya University\n\t",
1848 "lang": "en",
1849 }
1850 ]
1851 }
1852 jalc_processor = JalcProcessing()
1853 publisher = jalc_processor._extract_publisher(item)
1854 self.assertEqual(
1855 publisher,
1856 "Hinode Science Center, Institute for Space-Earth Environmental Research, Nagoya University",
1857 )
1859 def test_extract_title_packed_multilang_single_entry(self):
1860 item = {
1861 "title_list": [
1862 {"title": "日本語タイトル\nen: English Title Here"}
1863 ]
1864 }
1865 jalc_processor = JalcProcessing()
1866 title = jalc_processor._extract_title(item)
1867 self.assertEqual(title, '日本語タイトル')
1869 def test_extract_pages_with_underscore(self):
1870 # first_page: 1_34, last_page: 1_48
1871 item_dict = {
1872 "status": "OK",
1873 "apiType": "doi",
1874 "apiVersion": "1.0.0",
1875 "message": {
1876 "total": 1,
1877 "rows": 1,
1878 "totalPages": 1,
1879 "page": 1
1880 },
1881 "data": {
1882 "siteId": "SI/JST.JSTAGE",
1883 "content_type": "JA",
1884 "doi": "10.11230/jsts.18.1_34",
1885 "url": "https://doi.org/10.11230/jsts.18.1_34",
1886 "ra": "JaLC",
1887 "prefix": "10.11230",
1888 "site_name": "J-STAGE",
1889 "publisher_list": [
1890 {
1891 "publisher_name": "Japanese Rocket Society",
1892 "lang": "en"
1893 },
1894 {
1895 "publisher_name": "特定非営利活動法人 日本ロケット協会",
1896 "lang": "ja"
1897 }
1898 ],
1899 "title_list": [
1900 {
1901 "lang": "en",
1902 "title": "Atomic Oxygen Protections in Polymeric Systems: A Review"
1903 }
1904 ],
1905 "creator_list": [
1906 {
1907 "sequence": "1",
1908 "type": "person",
1909 "names": [
1910 {
1911 "lang": "en",
1912 "last_name": "RIMDUSIT",
1913 "first_name": "Sarawut"
1914 }
1915 ],
1916 "affiliation_list": [
1917 {
1918 "affiliation_name": "Chulalongkorn University",
1919 "sequence": "1",
1920 "lang": "en"
1921 }
1922 ]
1923 },
1924 {
1925 "sequence": "2",
1926 "type": "person",
1927 "names": [
1928 {
1929 "lang": "en",
1930 "last_name": "YOKOTA",
1931 "first_name": "Rikio"
1932 }
1933 ],
1934 "affiliation_list": [
1935 {
1936 "affiliation_name": "Chulalongkorn University",
1937 "sequence": "1",
1938 "lang": "en"
1939 }
1940 ]
1941 }
1942 ],
1943 "publication_date": {
1944 "publication_year": "2002"
1945 },
1946 "relation_list": [
1947 {
1948 "content": "https://www.jstage.jst.go.jp/article/jsts/18/1/18_1_34/_pdf",
1949 "type": "URL",
1950 "relation": "fullTextPdf"
1951 }
1952 ],
1953 "content_language": "en",
1954 "updated_date": "2014-12-09",
1955 "article_type": "pub",
1956 "journal_id_list": [
1957 {
1958 "journal_id": "0911-551X",
1959 "type": "ISSN",
1960 "issn_type": "print"
1961 },
1962 {
1963 "journal_id": "2186-4772",
1964 "type": "ISSN",
1965 "issn_type": "online"
1966 },
1967 {
1968 "journal_id": "jsts",
1969 "type": "JID"
1970 }
1971 ],
1972 "journal_title_name_list": [
1973 {
1974 "journal_title_name": "The Journal of Space Technology and Science",
1975 "type": "full",
1976 "lang": "en"
1977 },
1978 {
1979 "journal_title_name": "JSTS",
1980 "type": "abbreviation",
1981 "lang": "en"
1982 }
1983 ],
1984 "journal_classification": "01",
1985 "journal_txt_lang": "en",
1986 "recorded_year": "1985-2013",
1987 "volume": "18",
1988 "issue": "1",
1989 "first_page": "1_34",
1990 "last_page": "1_48",
1991 "date": "2013-08-18",
1992 "keyword_list": [
1993 {
1994 "keyword": "Atomic Oxygen",
1995 "sequence": "1",
1996 "lang": "en"
1997 },
1998 {
1999 "keyword": "Immiscible Blends",
2000 "sequence": "2",
2001 "lang": "en"
2002 },
2003 {
2004 "keyword": "Phosphorus-containing Polyimide",
2005 "sequence": "3",
2006 "lang": "en"
2007 },
2008 {
2009 "keyword": "Silicon-containing Polyimide",
2010 "sequence": "4",
2011 "lang": "en"
2012 },
2013 {
2014 "keyword": "MLI",
2015 "sequence": "5",
2016 "lang": "en"
2017 }
2018 ],
2019 "citation_list": [
2020 {
2021 "sequence": "1",
2022 "original_text": "1) R. Yokota, Aerospace Materials, Chapter 5, B. Cantor, H. Assender, and P. Grant, eds., Institute ofPhysics Publishing, Bristol (2001) p. 47."
2023 },
2024 {
2025 "sequence": "2",
2026 "original_text": "2) C.K. Krishnaprakas, K. Badari Narayana, and Pradip Dutta, Cryogenics, 40 (2000) p.431."
2027 },
2028 {
2029 "sequence": "3",
2030 "doi": "10.2494/photopolymer.12.209",
2031 "title_list": [
2032 {
2033 "lang": "en",
2034 "title": "Recent Trends and Space Applications of Poylmides."
2035 }
2036 ],
2037 "volume": "12",
2038 "issue": "2",
2039 "first_page": "209",
2040 "last_page": "216",
2041 "publication_date": {
2042 "publication_year": "1999"
2043 },
2044 "creator_list": [
2045 {
2046 "sequence": "1",
2047 "type": "person",
2048 "names": [
2049 {
2050 "lang": "en",
2051 "last_name": "YOKOTA",
2052 "first_name": "RIKIO"
2053 }
2054 ]
2055 }
2056 ],
2057 "content_language": "en",
2058 "original_text": "3) R. Yokota, J. Photopolym. Sci. Tech., 12 (1999) p.209."
2059 },
2060 {
2061 "sequence": "4",
2062 "original_text": "4) E.M. Silverman, Environmental Effects on Spacecraft: LEO Materials Selection Guide, NASA Contractor Report 4661Part1 and Part 2 (1995)."
2063 },
2064 {
2065 "sequence": "5",
2066 "first_page": "1999",
2067 "publication_date": {
2068 "publication_year": "1999"
2069 },
2070 "original_text": "5) D. Dooling and M.M. Finckenor, Material Selection Guidelines to Limit Atomic Oxygen Effects on Spacecraft Surfaces, NASA/TP-1999-209260 (1999)."
2071 },
2072 {
2073 "sequence": "6",
2074 "original_text": "6) E. Grossman, and I. Gouzman, Nuclear Instruments cind Methods in Physics Research B (2003) in press."
2075 },
2076 {
2077 "sequence": "7",
2078 "original_text": "7) R. Yokota, A. Ohnishi, Y. Hashimoto, K. Toki, S. Kuroda, K. Akahori, and H. Nagano, Proc. 7th Materials in Space Environment, Toulouse, France, 16-20 Jurie 1997, p.293."
2079 },
2080 {
2081 "sequence": "8",
2082 "title_list": [
2083 {
2084 "lang": "en",
2085 "title": "Atomic oxygen effects on polymer-based materials."
2086 }
2087 ],
2088 "volume": "69",
2089 "issue": "8/9",
2090 "first_page": "1190",
2091 "last_page": "1208",
2092 "publication_date": {
2093 "publication_year": "1991"
2094 },
2095 "content_language": "en",
2096 "original_text": "8) RC. Tennyson, Can. J. Phys., 69 (1991) p.1190."
2097 },
2098 {
2099 "sequence": "9",
2100 "original_text": "9) R.H. Hansen, J.V. Pascale, T. De Benedictis, and P.M. Rentzepis, J. Polym. Sci.: Part A, 3 (1965) p.2205."
2101 },
2102 {
2103 "sequence": "10",
2104 "doi": "10.1007/BF00354389",
2105 "title_list": [
2106 {
2107 "lang": "en",
2108 "title": "Effect of low earth orbit atomic oxygen on spacecraft materials."
2109 }
2110 ],
2111 "volume": "30",
2112 "issue": "2",
2113 "first_page": "281",
2114 "last_page": "307",
2115 "publication_date": {
2116 "publication_year": "1995"
2117 },
2118 "content_language": "en",
2119 "original_text": "10) M. Raja Reddy, J. Mat. Sci., 30 (1995) p.281."
2120 },
2121 {
2122 "sequence": "11",
2123 "doi": "10.1007/BF00354390",
2124 "title_list": [
2125 {
2126 "lang": "en",
2127 "title": "Atomic oxygen resistant coatings for low earth orbit space structures."
2128 }
2129 ],
2130 "volume": "30",
2131 "issue": "2",
2132 "first_page": "308",
2133 "last_page": "320",
2134 "publication_date": {
2135 "publication_year": "1995"
2136 },
2137 "content_language": "en",
2138 "original_text": "11) S. Packirisamy, D. Schwam, and M.H. Litt, J. Mat. Sci., 30 (1995) p.308."
2139 },
2140 {
2141 "sequence": "12",
2142 "original_text": "12) L.L. Fewell, J. Appl. Polym. Sci., 41 (1990) p.391."
2143 },
2144 {
2145 "sequence": "13",
2146 "original_text": "13) M. Raja Reddy, N. Srinivasamurthy, and B.L. Agrawal, ESA J., 16 (1992) p.193."
2147 },
2148 {
2149 "sequence": "14",
2150 "doi": "10.1088/0954-0083/11/1/013",
2151 "title_list": [
2152 {
2153 "lang": "en",
2154 "title": "Protection of polymetric materials from atomic oxygen."
2155 }
2156 ],
2157 "volume": "11",
2158 "issue": "1",
2159 "first_page": "157",
2160 "last_page": "165",
2161 "publication_date": {
2162 "publication_year": "1999"
2163 },
2164 "content_language": "en",
2165 "original_text": "14) RC. Tennyson, High Perform. Polym., 11 (1999) p.157."
2166 },
2167 {
2168 "sequence": "15",
2169 "original_text": "15) Y. Huang, J. Liu, I. Ball, and T.K. Minton, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1788."
2170 },
2171 {
2172 "sequence": "16",
2173 "original_text": "16) B.A. Banks, and R. Demko, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.820."
2174 },
2175 {
2176 "sequence": "17",
2177 "original_text": "17) M.L. lliingsworth, J.A. Betancourt, L. He, Y. Chen, J.A. Terschak, B.A. Banks, S.K. Rutledge, and M. Cales, NASAITM-2001-211099 (2001)."
2178 },
2179 {
2180 "sequence": "18",
2181 "original_text": "18) R.L. Kiefer, RA. Anderson, M.H.Y. Kim, and S.A. Thibeault, Nuclear Instruments and Methods in Physics Research B, (2003) in press."
2182 },
2183 {
2184 "sequence": "19",
2185 "volume": "2002",
2186 "issue": "14",
2187 "first_page": "2002",
2188 "publication_date": {
2189 "publication_year": "2002"
2190 },
2191 "original_text": "19) C. Park, Z. Ounaies, K.A. Watson, K. Pawlowski, S.E. Lowther, J.W. Connell, E.J. Siochi, J.S. Harrison, and T.L. St Clair, NASA/CR-2002-211940 (2002)."
2192 },
2193 {
2194 "sequence": "20",
2195 "original_text": "20) Y. Huang, J. Liu, I. Ball, and T.K. Minton, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1788."
2196 },
2197 {
2198 "sequence": "21",
2199 "doi": "10.1177/0954008303015002003",
2200 "volume": "15",
2201 "first_page": "181",
2202 "publication_date": {
2203 "publication_year": "2003"
2204 },
2205 "original_text": "21) C.M. Thompson, J.G. Smith, Jr., andJ.W. Connell, High Perform. Polym., 15 (2003) p.181."
2206 },
2207 {
2208 "sequence": "22",
2209 "original_text": "22) K.A. Watson, and J.W. Connell, Proc. Fluoropolymer 2000, Savanah, Georgia, October 15.18, 2000."
2210 },
2211 {
2212 "sequence": "23",
2213 "original_text": "23) J.G. Smith Jr., J.W. Connell, and P.M. Hergenrother, Polymer, 35 (1994) p.2834."
2214 },
2215 {
2216 "sequence": "24",
2217 "original_text": "24) K.K. de Groh, B.A. Banks, and R. Demko, Proc. 47th Int. SAMPE Symp. Exh., B.M. Rasmussen, L.A. Pilato, and H.S. Kliger, Eds., Long Beach, Califonia, May 12-16, 2002, p.1279."
2218 },
2219 {
2220 "sequence": "25",
2221 "doi": "10.1021/ma0201779",
2222 "title_list": [
2223 {
2224 "lang": "en",
2225 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
2226 }
2227 ],
2228 "volume": "35",
2229 "issue": "13",
2230 "first_page": "4968",
2231 "last_page": "4974",
2232 "publication_date": {
2233 "publication_year": "2002"
2234 },
2235 "content_language": "en",
2236 "original_text": "25) K.A. Watson, F.L. Palmteri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
2237 },
2238 {
2239 "sequence": "25",
2240 "doi": "10.1021/ma0201779",
2241 "title_list": [
2242 {
2243 "lang": "en",
2244 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
2245 }
2246 ],
2247 "volume": "35",
2248 "issue": "13",
2249 "first_page": "4968",
2250 "last_page": "4974",
2251 "publication_date": {
2252 "publication_year": "2002"
2253 },
2254 "content_language": "en",
2255 "original_text": "46) K.A. Watson, F.L. Palmieri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
2256 },
2257 {
2258 "sequence": "26",
2259 "doi": "10.1246/cl.1997.333",
2260 "title_list": [
2261 {
2262 "lang": "en",
2263 "title": "In situ Formed Three Layer Film by Isomerization of Fluorinated Polyisoimide in Polyethersulfone as a Matrix Polymer."
2264 }
2265 ],
2266 "issue": "4",
2267 "first_page": "333",
2268 "last_page": "334",
2269 "publication_date": {
2270 "publication_year": "1997"
2271 },
2272 "creator_list": [
2273 {
2274 "sequence": "1",
2275 "type": "person",
2276 "names": [
2277 {
2278 "lang": "en",
2279 "last_name": "Mochizuki",
2280 "first_name": "Amane"
2281 }
2282 ],
2283 "affiliation_list": [
2284 {
2285 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
2286 "sequence": "1",
2287 "lang": "en"
2288 }
2289 ]
2290 },
2291 {
2292 "sequence": "2",
2293 "type": "person",
2294 "names": [
2295 {
2296 "lang": "en",
2297 "last_name": "Yamada",
2298 "first_name": "Kazuo"
2299 }
2300 ],
2301 "affiliation_list": [
2302 {
2303 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
2304 "sequence": "1",
2305 "lang": "en"
2306 }
2307 ]
2308 },
2309 {
2310 "sequence": "3",
2311 "type": "person",
2312 "names": [
2313 {
2314 "lang": "en",
2315 "last_name": "Ueda",
2316 "first_name": "Mitsuru"
2317 }
2318 ],
2319 "affiliation_list": [
2320 {
2321 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
2322 "sequence": "1",
2323 "lang": "en"
2324 }
2325 ]
2326 },
2327 {
2328 "sequence": "4",
2329 "type": "person",
2330 "names": [
2331 {
2332 "lang": "en",
2333 "last_name": "Yokota",
2334 "first_name": "Rikio"
2335 }
2336 ],
2337 "affiliation_list": [
2338 {
2339 "affiliation_name": "Institute of Space and Astronautical Science",
2340 "sequence": "1",
2341 "lang": "en"
2342 }
2343 ]
2344 }
2345 ],
2346 "content_language": "en",
2347 "original_text": "26) A. Mochizuki, K. Yamada, M. Ueda, and R. Yokota, Chem. Letts. (1997) 333."
2348 },
2349 {
2350 "sequence": "27",
2351 "original_text": "27) K.K. de Groh, J.R. Gaier, R.L. Hall, M.J. Norris, M.P. Espe, and D.R. Cato, Effects of Heating on Teflon FEP Thermal Control Material from the Hubble Space Telescope, NASAITM-2000-209085 (2000)."
2352 },
2353 {
2354 "sequence": "28",
2355 "original_text": "28) K.K. de Groh, and D.C. Smith, Investigation of Teflon FEP Embrittlement on Spacecraft in Low Earth Orbit, NASAITM-113153 (1997)."
2356 },
2357 {
2358 "sequence": "29",
2359 "doi": "10.1126/science.2563171",
2360 "title_list": [
2361 {
2362 "lang": "en",
2363 "title": "Effects of buried ionizable amino acids on the reduction potential of recombinant myoglobin."
2364 }
2365 ],
2366 "volume": "243",
2367 "issue": "4887",
2368 "first_page": "69",
2369 "last_page": "72",
2370 "publication_date": {
2371 "publication_year": "1989"
2372 },
2373 "content_language": "en",
2374 "original_text": "29) McGrath, D. Chen, and J.E. McGrath, Polyimides: Materials, Chemistry and Characterization, C. Feger, M.M. Khojasteh, and J.E. McGrath, eds., Elsevier Science Publishers B.V., Amsterdam (1989) p.69."
2375 },
2376 {
2377 "sequence": "30",
2378 "original_text": "30) J. Visentine, W. Kinard, D. Brinker, B.A Banks, and K. Albyn, J. Spacecraft and Rockets, 39 (2002) p.187."
2379 },
2380 {
2381 "sequence": "31",
2382 "original_text": "31) B.A. Banks, K.K. de Groh, S.K. Rutledge, and C.A. Haytas, Consequences of Atomic Oxygen Interaction with Silicone and Silicone Contamination on Surfaces in Low Earth Orbit, NASAITM-1999-209179 (1999)."
2383 },
2384 {
2385 "sequence": "32",
2386 "original_text": "32) N. Furukawa, Y. Yamada, M. Furukawa, M. Yuasa, and Y. Kimura, J. Polym. Sci., Part A: Polym. Chem., 35 (1997) p.2239."
2387 },
2388 {
2389 "sequence": "33",
2390 "original_text": "33) NASDA Rep. No. AU9-R02-K108 (2003)."
2391 },
2392 {
2393 "sequence": "34",
2394 "original_text": "34) G.B. Hoflund, RI. Gonzalez, and S.H. Phillips, J. Adhesion Sci. Technol., 15 (2001) p.1199."
2395 },
2396 {
2397 "sequence": "35",
2398 "original_text": "35) S.H. Phillips, RI. Gonzalez, R.L. Blanski, B.D. Viers, and G.B. Hoflund, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1488."
2399 },
2400 {
2401 "sequence": "36",
2402 "original_text": "36) RI. Ganzalez, Ph.D. Disseration, University ofFlorida, Gainesville, Florida (2002)."
2403 },
2404 {
2405 "sequence": "37",
2406 "original_text": "37) RI. Gonzalex, G.B. Holfund, S.A. Svejda, S.H. Phillips, and B.V. Viers, submitted to Macromolecules."
2407 },
2408 {
2409 "sequence": "38",
2410 "original_text": "38) J.E. McGrath et.al. US Pat. 5,420,225 (1995), US Pat. 5,407,528 (1995), US Pat. 5,387,629 (1995), and US. Pat. 5,134,207 (1992)."
2411 },
2412 {
2413 "sequence": "39",
2414 "doi": "10.1016/0032-3861(95)90668-R",
2415 "title_list": [
2416 {
2417 "lang": "en",
2418 "title": "Oxygen plasma-resistant phenylphosphine oxide-containing polyimides and poly(arylene ether heterocycle)s. 1."
2419 }
2420 ],
2421 "volume": "36",
2422 "issue": "1",
2423 "first_page": "5",
2424 "last_page": "11",
2425 "publication_date": {
2426 "publication_year": "1995"
2427 },
2428 "content_language": "en",
2429 "original_text": "39) J.W. Connell, J.G. Smith Jr., and P.M. Hergenrother, Polymer, 36 (1995) p.5."
2430 },
2431 {
2432 "sequence": "40",
2433 "doi": "10.1016/0032-3861(95)90669-S",
2434 "title_list": [
2435 {
2436 "lang": "en",
2437 "title": "Oxgen plasma-resistant phenylphosphine oxide-containing polyimides and poly(arylene ether heterocycle)s. 2."
2438 }
2439 ],
2440 "volume": "36",
2441 "issue": "1",
2442 "first_page": "13",
2443 "last_page": "19",
2444 "publication_date": {
2445 "publication_year": "1995"
2446 },
2447 "content_language": "en",
2448 "original_text": "40) J.W. Connell, J.G. Smith Jr., and P.M. Hergenrother, Polymer, 36 (1995) p.13."
2449 },
2450 {
2451 "sequence": "41",
2452 "original_text": "41) P. Schuler, R. Haghighat, and H. Mojazza, High Perform. Polym., 11 (1999) p.113."
2453 },
2454 {
2455 "sequence": "42",
2456 "original_text": "42) J.W. Connell, The Effect of Low Earth Orbit Atomic Oxygen Exposure on Phenylphosphine Oxide-Containing Polymers, 44th International SAMPE Symposium and Exhibition, Long Beach, California, May 23-27, 1999."
2457 },
2458 {
2459 "sequence": "43",
2460 "doi": "10.1088/0954-0083/11/1/008",
2461 "title_list": [
2462 {
2463 "lang": "en",
2464 "title": "Electrically conductive space-durable polymeric films for spacecraft thermal and charge control."
2465 }
2466 ],
2467 "volume": "11",
2468 "issue": "1",
2469 "first_page": "101",
2470 "last_page": "111",
2471 "publication_date": {
2472 "publication_year": "1999"
2473 },
2474 "content_language": "en",
2475 "original_text": "43) J. Lennhoff, G. Harris, J. Vaughn, D. Edwards, and J. Zwiener, High Perform. Polym., 11 (1999) p.101."
2476 },
2477 {
2478 "sequence": "44",
2479 "original_text": "44) T.C. Chang,, K.H. Wu, and Y.S. Chiu, Polym. Degrad Stability, 63 (1999) p.103."
2480 },
2481 {
2482 "sequence": "45",
2483 "doi": "10.1016/S0032-3861(02)00362-2",
2484 "original_text": "45) P.M. Hergenrother, K.A. Watson, J.G. Smith Jr., J.W. Connell, and R. Yokota, Polymer, 43 (2002) p.5077."
2485 },
2486 {
2487 "sequence": "46",
2488 "doi": "10.1021/ma0201779",
2489 "title_list": [
2490 {
2491 "lang": "en",
2492 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
2493 }
2494 ],
2495 "volume": "35",
2496 "issue": "13",
2497 "first_page": "4968",
2498 "last_page": "4974",
2499 "publication_date": {
2500 "publication_year": "2002"
2501 },
2502 "content_language": "en",
2503 "original_text": "25) K.A. Watson, F.L. Palmteri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
2504 },
2505 {
2506 "sequence": "46",
2507 "doi": "10.1021/ma0201779",
2508 "title_list": [
2509 {
2510 "lang": "en",
2511 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
2512 }
2513 ],
2514 "volume": "35",
2515 "issue": "13",
2516 "first_page": "4968",
2517 "last_page": "4974",
2518 "publication_date": {
2519 "publication_year": "2002"
2520 },
2521 "content_language": "en",
2522 "original_text": "46) K.A. Watson, F.L. Palmieri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
2523 },
2524 {
2525 "sequence": "47",
2526 "original_text": "47) K.A. Watson, and J.W. Connell, Space Environmentally Stable Polyimides and Copolyimides, 45th International SAMPE Symposium and Exhibit, Long Beach, California, May 21-25, 2000."
2527 },
2528 {
2529 "sequence": "48",
2530 "original_text": "48) C. M. Thompson, J. G. Smith, Jr., K. A. Watson and J. W. Connell, Polyimides Containing Pendent Phosphine Oxide Groups for Space Applications, 34th International SAMPE Technical Conference, Baltimore, Maryland, November 4-7, 2002."
2531 },
2532 {
2533 "sequence": "49",
2534 "original_text": "49) H. Zhuang, Ph.D. Dissertation, Virginia Polytechnic Institute and State University, Blacksburg, Virginir (1998)."
2535 },
2536 {
2537 "sequence": "50",
2538 "original_text": "50) S. Wang, Ph.D. Dissertation, Virginia Polytechnic Institute and State University, Blacksburg, Virginir (2000)."
2539 },
2540 {
2541 "sequence": "51",
2542 "original_text": "51) S. Y. Lu, and I. Hamerton, Prag. Polym. Sci., 27 (2002) p.1661."
2543 }
2544 ]
2545 }
2546 }
2547 jalc_processor = JalcProcessing()
2548 pages = jalc_processor._extract_pages(item_dict["data"])
2549 self.assertEqual(pages, '1_34-1_48')
2552 def test_extract_pages_wrong_letter(self):
2553 #first_page: 1_34b
2554 item_dict = {
2555 "status": "OK",
2556 "apiType": "doi",
2557 "apiVersion": "1.0.0",
2558 "message": {
2559 "total": 1,
2560 "rows": 1,
2561 "totalPages": 1,
2562 "page": 1
2563 },
2564 "data": {
2565 "siteId": "SI/JST.JSTAGE",
2566 "content_type": "JA",
2567 "doi": "10.11230/jsts.18.1_34",
2568 "url": "https://doi.org/10.11230/jsts.18.1_34",
2569 "ra": "JaLC",
2570 "prefix": "10.11230",
2571 "site_name": "J-STAGE",
2572 "publisher_list": [
2573 {
2574 "publisher_name": "Japanese Rocket Society",
2575 "lang": "en"
2576 },
2577 {
2578 "publisher_name": "特定非営利活動法人 日本ロケット協会",
2579 "lang": "ja"
2580 }
2581 ],
2582 "title_list": [
2583 {
2584 "lang": "en",
2585 "title": "Atomic Oxygen Protections in Polymeric Systems: A Review"
2586 }
2587 ],
2588 "creator_list": [
2589 {
2590 "sequence": "1",
2591 "type": "person",
2592 "names": [
2593 {
2594 "lang": "en",
2595 "last_name": "RIMDUSIT",
2596 "first_name": "Sarawut"
2597 }
2598 ],
2599 "affiliation_list": [
2600 {
2601 "affiliation_name": "Chulalongkorn University",
2602 "sequence": "1",
2603 "lang": "en"
2604 }
2605 ]
2606 },
2607 {
2608 "sequence": "2",
2609 "type": "person",
2610 "names": [
2611 {
2612 "lang": "en",
2613 "last_name": "YOKOTA",
2614 "first_name": "Rikio"
2615 }
2616 ],
2617 "affiliation_list": [
2618 {
2619 "affiliation_name": "Chulalongkorn University",
2620 "sequence": "1",
2621 "lang": "en"
2622 }
2623 ]
2624 }
2625 ],
2626 "publication_date": {
2627 "publication_year": "2002"
2628 },
2629 "relation_list": [
2630 {
2631 "content": "https://www.jstage.jst.go.jp/article/jsts/18/1/18_1_34/_pdf",
2632 "type": "URL",
2633 "relation": "fullTextPdf"
2634 }
2635 ],
2636 "content_language": "en",
2637 "updated_date": "2014-12-09",
2638 "article_type": "pub",
2639 "journal_id_list": [
2640 {
2641 "journal_id": "0911-551X",
2642 "type": "ISSN",
2643 "issn_type": "print"
2644 },
2645 {
2646 "journal_id": "2186-4772",
2647 "type": "ISSN",
2648 "issn_type": "online"
2649 },
2650 {
2651 "journal_id": "jsts",
2652 "type": "JID"
2653 }
2654 ],
2655 "journal_title_name_list": [
2656 {
2657 "journal_title_name": "The Journal of Space Technology and Science",
2658 "type": "full",
2659 "lang": "en"
2660 },
2661 {
2662 "journal_title_name": "JSTS",
2663 "type": "abbreviation",
2664 "lang": "en"
2665 }
2666 ],
2667 "journal_classification": "01",
2668 "journal_txt_lang": "en",
2669 "recorded_year": "1985-2013",
2670 "volume": "18",
2671 "issue": "1",
2672 "first_page": "1_34b",
2673 "last_page": "1_48",
2674 "date": "2013-08-18",
2675 "keyword_list": [
2676 {
2677 "keyword": "Atomic Oxygen",
2678 "sequence": "1",
2679 "lang": "en"
2680 },
2681 {
2682 "keyword": "Immiscible Blends",
2683 "sequence": "2",
2684 "lang": "en"
2685 },
2686 {
2687 "keyword": "Phosphorus-containing Polyimide",
2688 "sequence": "3",
2689 "lang": "en"
2690 },
2691 {
2692 "keyword": "Silicon-containing Polyimide",
2693 "sequence": "4",
2694 "lang": "en"
2695 },
2696 {
2697 "keyword": "MLI",
2698 "sequence": "5",
2699 "lang": "en"
2700 }
2701 ],
2702 "citation_list": [
2703 {
2704 "sequence": "1",
2705 "original_text": "1) R. Yokota, Aerospace Materials, Chapter 5, B. Cantor, H. Assender, and P. Grant, eds., Institute ofPhysics Publishing, Bristol (2001) p. 47."
2706 },
2707 {
2708 "sequence": "2",
2709 "original_text": "2) C.K. Krishnaprakas, K. Badari Narayana, and Pradip Dutta, Cryogenics, 40 (2000) p.431."
2710 },
2711 {
2712 "sequence": "3",
2713 "doi": "10.2494/photopolymer.12.209",
2714 "title_list": [
2715 {
2716 "lang": "en",
2717 "title": "Recent Trends and Space Applications of Poylmides."
2718 }
2719 ],
2720 "volume": "12",
2721 "issue": "2",
2722 "first_page": "209",
2723 "last_page": "216",
2724 "publication_date": {
2725 "publication_year": "1999"
2726 },
2727 "creator_list": [
2728 {
2729 "sequence": "1",
2730 "type": "person",
2731 "names": [
2732 {
2733 "lang": "en",
2734 "last_name": "YOKOTA",
2735 "first_name": "RIKIO"
2736 }
2737 ]
2738 }
2739 ],
2740 "content_language": "en",
2741 "original_text": "3) R. Yokota, J. Photopolym. Sci. Tech., 12 (1999) p.209."
2742 },
2743 {
2744 "sequence": "4",
2745 "original_text": "4) E.M. Silverman, Environmental Effects on Spacecraft: LEO Materials Selection Guide, NASA Contractor Report 4661Part1 and Part 2 (1995)."
2746 },
2747 {
2748 "sequence": "5",
2749 "first_page": "1999",
2750 "publication_date": {
2751 "publication_year": "1999"
2752 },
2753 "original_text": "5) D. Dooling and M.M. Finckenor, Material Selection Guidelines to Limit Atomic Oxygen Effects on Spacecraft Surfaces, NASA/TP-1999-209260 (1999)."
2754 },
2755 {
2756 "sequence": "6",
2757 "original_text": "6) E. Grossman, and I. Gouzman, Nuclear Instruments cind Methods in Physics Research B (2003) in press."
2758 },
2759 {
2760 "sequence": "7",
2761 "original_text": "7) R. Yokota, A. Ohnishi, Y. Hashimoto, K. Toki, S. Kuroda, K. Akahori, and H. Nagano, Proc. 7th Materials in Space Environment, Toulouse, France, 16-20 Jurie 1997, p.293."
2762 },
2763 {
2764 "sequence": "8",
2765 "title_list": [
2766 {
2767 "lang": "en",
2768 "title": "Atomic oxygen effects on polymer-based materials."
2769 }
2770 ],
2771 "volume": "69",
2772 "issue": "8/9",
2773 "first_page": "1190",
2774 "last_page": "1208",
2775 "publication_date": {
2776 "publication_year": "1991"
2777 },
2778 "content_language": "en",
2779 "original_text": "8) RC. Tennyson, Can. J. Phys., 69 (1991) p.1190."
2780 },
2781 {
2782 "sequence": "9",
2783 "original_text": "9) R.H. Hansen, J.V. Pascale, T. De Benedictis, and P.M. Rentzepis, J. Polym. Sci.: Part A, 3 (1965) p.2205."
2784 },
2785 {
2786 "sequence": "10",
2787 "doi": "10.1007/BF00354389",
2788 "title_list": [
2789 {
2790 "lang": "en",
2791 "title": "Effect of low earth orbit atomic oxygen on spacecraft materials."
2792 }
2793 ],
2794 "volume": "30",
2795 "issue": "2",
2796 "first_page": "281",
2797 "last_page": "307",
2798 "publication_date": {
2799 "publication_year": "1995"
2800 },
2801 "content_language": "en",
2802 "original_text": "10) M. Raja Reddy, J. Mat. Sci., 30 (1995) p.281."
2803 },
2804 {
2805 "sequence": "11",
2806 "doi": "10.1007/BF00354390",
2807 "title_list": [
2808 {
2809 "lang": "en",
2810 "title": "Atomic oxygen resistant coatings for low earth orbit space structures."
2811 }
2812 ],
2813 "volume": "30",
2814 "issue": "2",
2815 "first_page": "308",
2816 "last_page": "320",
2817 "publication_date": {
2818 "publication_year": "1995"
2819 },
2820 "content_language": "en",
2821 "original_text": "11) S. Packirisamy, D. Schwam, and M.H. Litt, J. Mat. Sci., 30 (1995) p.308."
2822 },
2823 {
2824 "sequence": "12",
2825 "original_text": "12) L.L. Fewell, J. Appl. Polym. Sci., 41 (1990) p.391."
2826 },
2827 {
2828 "sequence": "13",
2829 "original_text": "13) M. Raja Reddy, N. Srinivasamurthy, and B.L. Agrawal, ESA J., 16 (1992) p.193."
2830 },
2831 {
2832 "sequence": "14",
2833 "doi": "10.1088/0954-0083/11/1/013",
2834 "title_list": [
2835 {
2836 "lang": "en",
2837 "title": "Protection of polymetric materials from atomic oxygen."
2838 }
2839 ],
2840 "volume": "11",
2841 "issue": "1",
2842 "first_page": "157",
2843 "last_page": "165",
2844 "publication_date": {
2845 "publication_year": "1999"
2846 },
2847 "content_language": "en",
2848 "original_text": "14) RC. Tennyson, High Perform. Polym., 11 (1999) p.157."
2849 },
2850 {
2851 "sequence": "15",
2852 "original_text": "15) Y. Huang, J. Liu, I. Ball, and T.K. Minton, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1788."
2853 },
2854 {
2855 "sequence": "16",
2856 "original_text": "16) B.A. Banks, and R. Demko, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.820."
2857 },
2858 {
2859 "sequence": "17",
2860 "original_text": "17) M.L. lliingsworth, J.A. Betancourt, L. He, Y. Chen, J.A. Terschak, B.A. Banks, S.K. Rutledge, and M. Cales, NASAITM-2001-211099 (2001)."
2861 },
2862 {
2863 "sequence": "18",
2864 "original_text": "18) R.L. Kiefer, RA. Anderson, M.H.Y. Kim, and S.A. Thibeault, Nuclear Instruments and Methods in Physics Research B, (2003) in press."
2865 },
2866 {
2867 "sequence": "19",
2868 "volume": "2002",
2869 "issue": "14",
2870 "first_page": "2002",
2871 "publication_date": {
2872 "publication_year": "2002"
2873 },
2874 "original_text": "19) C. Park, Z. Ounaies, K.A. Watson, K. Pawlowski, S.E. Lowther, J.W. Connell, E.J. Siochi, J.S. Harrison, and T.L. St Clair, NASA/CR-2002-211940 (2002)."
2875 },
2876 {
2877 "sequence": "20",
2878 "original_text": "20) Y. Huang, J. Liu, I. Ball, and T.K. Minton, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1788."
2879 },
2880 {
2881 "sequence": "21",
2882 "doi": "10.1177/0954008303015002003",
2883 "volume": "15",
2884 "first_page": "181",
2885 "publication_date": {
2886 "publication_year": "2003"
2887 },
2888 "original_text": "21) C.M. Thompson, J.G. Smith, Jr., andJ.W. Connell, High Perform. Polym., 15 (2003) p.181."
2889 },
2890 {
2891 "sequence": "22",
2892 "original_text": "22) K.A. Watson, and J.W. Connell, Proc. Fluoropolymer 2000, Savanah, Georgia, October 15.18, 2000."
2893 },
2894 {
2895 "sequence": "23",
2896 "original_text": "23) J.G. Smith Jr., J.W. Connell, and P.M. Hergenrother, Polymer, 35 (1994) p.2834."
2897 },
2898 {
2899 "sequence": "24",
2900 "original_text": "24) K.K. de Groh, B.A. Banks, and R. Demko, Proc. 47th Int. SAMPE Symp. Exh., B.M. Rasmussen, L.A. Pilato, and H.S. Kliger, Eds., Long Beach, Califonia, May 12-16, 2002, p.1279."
2901 },
2902 {
2903 "sequence": "25",
2904 "doi": "10.1021/ma0201779",
2905 "title_list": [
2906 {
2907 "lang": "en",
2908 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
2909 }
2910 ],
2911 "volume": "35",
2912 "issue": "13",
2913 "first_page": "4968",
2914 "last_page": "4974",
2915 "publication_date": {
2916 "publication_year": "2002"
2917 },
2918 "content_language": "en",
2919 "original_text": "25) K.A. Watson, F.L. Palmteri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
2920 },
2921 {
2922 "sequence": "25",
2923 "doi": "10.1021/ma0201779",
2924 "title_list": [
2925 {
2926 "lang": "en",
2927 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
2928 }
2929 ],
2930 "volume": "35",
2931 "issue": "13",
2932 "first_page": "4968",
2933 "last_page": "4974",
2934 "publication_date": {
2935 "publication_year": "2002"
2936 },
2937 "content_language": "en",
2938 "original_text": "46) K.A. Watson, F.L. Palmieri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
2939 },
2940 {
2941 "sequence": "26",
2942 "doi": "10.1246/cl.1997.333",
2943 "title_list": [
2944 {
2945 "lang": "en",
2946 "title": "In situ Formed Three Layer Film by Isomerization of Fluorinated Polyisoimide in Polyethersulfone as a Matrix Polymer."
2947 }
2948 ],
2949 "issue": "4",
2950 "first_page": "333",
2951 "last_page": "334",
2952 "publication_date": {
2953 "publication_year": "1997"
2954 },
2955 "creator_list": [
2956 {
2957 "sequence": "1",
2958 "type": "person",
2959 "names": [
2960 {
2961 "lang": "en",
2962 "last_name": "Mochizuki",
2963 "first_name": "Amane"
2964 }
2965 ],
2966 "affiliation_list": [
2967 {
2968 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
2969 "sequence": "1",
2970 "lang": "en"
2971 }
2972 ]
2973 },
2974 {
2975 "sequence": "2",
2976 "type": "person",
2977 "names": [
2978 {
2979 "lang": "en",
2980 "last_name": "Yamada",
2981 "first_name": "Kazuo"
2982 }
2983 ],
2984 "affiliation_list": [
2985 {
2986 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
2987 "sequence": "1",
2988 "lang": "en"
2989 }
2990 ]
2991 },
2992 {
2993 "sequence": "3",
2994 "type": "person",
2995 "names": [
2996 {
2997 "lang": "en",
2998 "last_name": "Ueda",
2999 "first_name": "Mitsuru"
3000 }
3001 ],
3002 "affiliation_list": [
3003 {
3004 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
3005 "sequence": "1",
3006 "lang": "en"
3007 }
3008 ]
3009 },
3010 {
3011 "sequence": "4",
3012 "type": "person",
3013 "names": [
3014 {
3015 "lang": "en",
3016 "last_name": "Yokota",
3017 "first_name": "Rikio"
3018 }
3019 ],
3020 "affiliation_list": [
3021 {
3022 "affiliation_name": "Institute of Space and Astronautical Science",
3023 "sequence": "1",
3024 "lang": "en"
3025 }
3026 ]
3027 }
3028 ],
3029 "content_language": "en",
3030 "original_text": "26) A. Mochizuki, K. Yamada, M. Ueda, and R. Yokota, Chem. Letts. (1997) 333."
3031 },
3032 {
3033 "sequence": "27",
3034 "original_text": "27) K.K. de Groh, J.R. Gaier, R.L. Hall, M.J. Norris, M.P. Espe, and D.R. Cato, Effects of Heating on Teflon FEP Thermal Control Material from the Hubble Space Telescope, NASAITM-2000-209085 (2000)."
3035 },
3036 {
3037 "sequence": "28",
3038 "original_text": "28) K.K. de Groh, and D.C. Smith, Investigation of Teflon FEP Embrittlement on Spacecraft in Low Earth Orbit, NASAITM-113153 (1997)."
3039 },
3040 {
3041 "sequence": "29",
3042 "doi": "10.1126/science.2563171",
3043 "title_list": [
3044 {
3045 "lang": "en",
3046 "title": "Effects of buried ionizable amino acids on the reduction potential of recombinant myoglobin."
3047 }
3048 ],
3049 "volume": "243",
3050 "issue": "4887",
3051 "first_page": "69",
3052 "last_page": "72",
3053 "publication_date": {
3054 "publication_year": "1989"
3055 },
3056 "content_language": "en",
3057 "original_text": "29) McGrath, D. Chen, and J.E. McGrath, Polyimides: Materials, Chemistry and Characterization, C. Feger, M.M. Khojasteh, and J.E. McGrath, eds., Elsevier Science Publishers B.V., Amsterdam (1989) p.69."
3058 },
3059 {
3060 "sequence": "30",
3061 "original_text": "30) J. Visentine, W. Kinard, D. Brinker, B.A Banks, and K. Albyn, J. Spacecraft and Rockets, 39 (2002) p.187."
3062 },
3063 {
3064 "sequence": "31",
3065 "original_text": "31) B.A. Banks, K.K. de Groh, S.K. Rutledge, and C.A. Haytas, Consequences of Atomic Oxygen Interaction with Silicone and Silicone Contamination on Surfaces in Low Earth Orbit, NASAITM-1999-209179 (1999)."
3066 },
3067 {
3068 "sequence": "32",
3069 "original_text": "32) N. Furukawa, Y. Yamada, M. Furukawa, M. Yuasa, and Y. Kimura, J. Polym. Sci., Part A: Polym. Chem., 35 (1997) p.2239."
3070 },
3071 {
3072 "sequence": "33",
3073 "original_text": "33) NASDA Rep. No. AU9-R02-K108 (2003)."
3074 },
3075 {
3076 "sequence": "34",
3077 "original_text": "34) G.B. Hoflund, RI. Gonzalez, and S.H. Phillips, J. Adhesion Sci. Technol., 15 (2001) p.1199."
3078 },
3079 {
3080 "sequence": "35",
3081 "original_text": "35) S.H. Phillips, RI. Gonzalez, R.L. Blanski, B.D. Viers, and G.B. Hoflund, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1488."
3082 },
3083 {
3084 "sequence": "36",
3085 "original_text": "36) RI. Ganzalez, Ph.D. Disseration, University ofFlorida, Gainesville, Florida (2002)."
3086 },
3087 {
3088 "sequence": "37",
3089 "original_text": "37) RI. Gonzalex, G.B. Holfund, S.A. Svejda, S.H. Phillips, and B.V. Viers, submitted to Macromolecules."
3090 },
3091 {
3092 "sequence": "38",
3093 "original_text": "38) J.E. McGrath et.al. US Pat. 5,420,225 (1995), US Pat. 5,407,528 (1995), US Pat. 5,387,629 (1995), and US. Pat. 5,134,207 (1992)."
3094 },
3095 {
3096 "sequence": "39",
3097 "doi": "10.1016/0032-3861(95)90668-R",
3098 "title_list": [
3099 {
3100 "lang": "en",
3101 "title": "Oxygen plasma-resistant phenylphosphine oxide-containing polyimides and poly(arylene ether heterocycle)s. 1."
3102 }
3103 ],
3104 "volume": "36",
3105 "issue": "1",
3106 "first_page": "5",
3107 "last_page": "11",
3108 "publication_date": {
3109 "publication_year": "1995"
3110 },
3111 "content_language": "en",
3112 "original_text": "39) J.W. Connell, J.G. Smith Jr., and P.M. Hergenrother, Polymer, 36 (1995) p.5."
3113 },
3114 {
3115 "sequence": "40",
3116 "doi": "10.1016/0032-3861(95)90669-S",
3117 "title_list": [
3118 {
3119 "lang": "en",
3120 "title": "Oxgen plasma-resistant phenylphosphine oxide-containing polyimides and poly(arylene ether heterocycle)s. 2."
3121 }
3122 ],
3123 "volume": "36",
3124 "issue": "1",
3125 "first_page": "13",
3126 "last_page": "19",
3127 "publication_date": {
3128 "publication_year": "1995"
3129 },
3130 "content_language": "en",
3131 "original_text": "40) J.W. Connell, J.G. Smith Jr., and P.M. Hergenrother, Polymer, 36 (1995) p.13."
3132 },
3133 {
3134 "sequence": "41",
3135 "original_text": "41) P. Schuler, R. Haghighat, and H. Mojazza, High Perform. Polym., 11 (1999) p.113."
3136 },
3137 {
3138 "sequence": "42",
3139 "original_text": "42) J.W. Connell, The Effect of Low Earth Orbit Atomic Oxygen Exposure on Phenylphosphine Oxide-Containing Polymers, 44th International SAMPE Symposium and Exhibition, Long Beach, California, May 23-27, 1999."
3140 },
3141 {
3142 "sequence": "43",
3143 "doi": "10.1088/0954-0083/11/1/008",
3144 "title_list": [
3145 {
3146 "lang": "en",
3147 "title": "Electrically conductive space-durable polymeric films for spacecraft thermal and charge control."
3148 }
3149 ],
3150 "volume": "11",
3151 "issue": "1",
3152 "first_page": "101",
3153 "last_page": "111",
3154 "publication_date": {
3155 "publication_year": "1999"
3156 },
3157 "content_language": "en",
3158 "original_text": "43) J. Lennhoff, G. Harris, J. Vaughn, D. Edwards, and J. Zwiener, High Perform. Polym., 11 (1999) p.101."
3159 },
3160 {
3161 "sequence": "44",
3162 "original_text": "44) T.C. Chang,, K.H. Wu, and Y.S. Chiu, Polym. Degrad Stability, 63 (1999) p.103."
3163 },
3164 {
3165 "sequence": "45",
3166 "doi": "10.1016/S0032-3861(02)00362-2",
3167 "original_text": "45) P.M. Hergenrother, K.A. Watson, J.G. Smith Jr., J.W. Connell, and R. Yokota, Polymer, 43 (2002) p.5077."
3168 },
3169 {
3170 "sequence": "46",
3171 "doi": "10.1021/ma0201779",
3172 "title_list": [
3173 {
3174 "lang": "en",
3175 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
3176 }
3177 ],
3178 "volume": "35",
3179 "issue": "13",
3180 "first_page": "4968",
3181 "last_page": "4974",
3182 "publication_date": {
3183 "publication_year": "2002"
3184 },
3185 "content_language": "en",
3186 "original_text": "25) K.A. Watson, F.L. Palmteri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
3187 },
3188 {
3189 "sequence": "46",
3190 "doi": "10.1021/ma0201779",
3191 "title_list": [
3192 {
3193 "lang": "en",
3194 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
3195 }
3196 ],
3197 "volume": "35",
3198 "issue": "13",
3199 "first_page": "4968",
3200 "last_page": "4974",
3201 "publication_date": {
3202 "publication_year": "2002"
3203 },
3204 "content_language": "en",
3205 "original_text": "46) K.A. Watson, F.L. Palmieri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
3206 },
3207 {
3208 "sequence": "47",
3209 "original_text": "47) K.A. Watson, and J.W. Connell, Space Environmentally Stable Polyimides and Copolyimides, 45th International SAMPE Symposium and Exhibit, Long Beach, California, May 21-25, 2000."
3210 },
3211 {
3212 "sequence": "48",
3213 "original_text": "48) C. M. Thompson, J. G. Smith, Jr., K. A. Watson and J. W. Connell, Polyimides Containing Pendent Phosphine Oxide Groups for Space Applications, 34th International SAMPE Technical Conference, Baltimore, Maryland, November 4-7, 2002."
3214 },
3215 {
3216 "sequence": "49",
3217 "original_text": "49) H. Zhuang, Ph.D. Dissertation, Virginia Polytechnic Institute and State University, Blacksburg, Virginir (1998)."
3218 },
3219 {
3220 "sequence": "50",
3221 "original_text": "50) S. Wang, Ph.D. Dissertation, Virginia Polytechnic Institute and State University, Blacksburg, Virginir (2000)."
3222 },
3223 {
3224 "sequence": "51",
3225 "original_text": "51) S. Y. Lu, and I. Hamerton, Prag. Polym. Sci., 27 (2002) p.1661."
3226 }
3227 ]
3228 }
3229 }
3230 jalc_processor = JalcProcessing()
3231 pages = jalc_processor._extract_pages(item_dict["data"])
3232 self.assertEqual(pages, '1_34-1_48')
3234 def test_extract_pages_just_one_page(self):
3235 item_dict = {
3236 "status": "OK",
3237 "apiType": "doi",
3238 "apiVersion": "1.0.0",
3239 "message": {
3240 "total": 1,
3241 "rows": 1,
3242 "totalPages": 1,
3243 "page": 1
3244 },
3245 "data": {
3246 "siteId": "SI/JST.JSTAGE",
3247 "content_type": "JA",
3248 "doi": "10.11230/jsts.18.1_34",
3249 "url": "https://doi.org/10.11230/jsts.18.1_34",
3250 "ra": "JaLC",
3251 "prefix": "10.11230",
3252 "site_name": "J-STAGE",
3253 "publisher_list": [
3254 {
3255 "publisher_name": "Japanese Rocket Society",
3256 "lang": "en"
3257 },
3258 {
3259 "publisher_name": "特定非営利活動法人 日本ロケット協会",
3260 "lang": "ja"
3261 }
3262 ],
3263 "title_list": [
3264 {
3265 "lang": "en",
3266 "title": "Atomic Oxygen Protections in Polymeric Systems: A Review"
3267 }
3268 ],
3269 "creator_list": [
3270 {
3271 "sequence": "1",
3272 "type": "person",
3273 "names": [
3274 {
3275 "lang": "en",
3276 "last_name": "RIMDUSIT",
3277 "first_name": "Sarawut"
3278 }
3279 ],
3280 "affiliation_list": [
3281 {
3282 "affiliation_name": "Chulalongkorn University",
3283 "sequence": "1",
3284 "lang": "en"
3285 }
3286 ]
3287 },
3288 {
3289 "sequence": "2",
3290 "type": "person",
3291 "names": [
3292 {
3293 "lang": "en",
3294 "last_name": "YOKOTA",
3295 "first_name": "Rikio"
3296 }
3297 ],
3298 "affiliation_list": [
3299 {
3300 "affiliation_name": "Chulalongkorn University",
3301 "sequence": "1",
3302 "lang": "en"
3303 }
3304 ]
3305 }
3306 ],
3307 "publication_date": {
3308 "publication_year": "2002"
3309 },
3310 "relation_list": [
3311 {
3312 "content": "https://www.jstage.jst.go.jp/article/jsts/18/1/18_1_34/_pdf",
3313 "type": "URL",
3314 "relation": "fullTextPdf"
3315 }
3316 ],
3317 "content_language": "en",
3318 "updated_date": "2014-12-09",
3319 "article_type": "pub",
3320 "journal_id_list": [
3321 {
3322 "journal_id": "0911-551X",
3323 "type": "ISSN",
3324 "issn_type": "print"
3325 },
3326 {
3327 "journal_id": "2186-4772",
3328 "type": "ISSN",
3329 "issn_type": "online"
3330 },
3331 {
3332 "journal_id": "jsts",
3333 "type": "JID"
3334 }
3335 ],
3336 "journal_title_name_list": [
3337 {
3338 "journal_title_name": "The Journal of Space Technology and Science",
3339 "type": "full",
3340 "lang": "en"
3341 },
3342 {
3343 "journal_title_name": "JSTS",
3344 "type": "abbreviation",
3345 "lang": "en"
3346 }
3347 ],
3348 "journal_classification": "01",
3349 "journal_txt_lang": "en",
3350 "recorded_year": "1985-2013",
3351 "volume": "18",
3352 "issue": "1",
3353 "first_page": "1_34",
3354 "date": "2013-08-18",
3355 "keyword_list": [
3356 {
3357 "keyword": "Atomic Oxygen",
3358 "sequence": "1",
3359 "lang": "en"
3360 },
3361 {
3362 "keyword": "Immiscible Blends",
3363 "sequence": "2",
3364 "lang": "en"
3365 },
3366 {
3367 "keyword": "Phosphorus-containing Polyimide",
3368 "sequence": "3",
3369 "lang": "en"
3370 },
3371 {
3372 "keyword": "Silicon-containing Polyimide",
3373 "sequence": "4",
3374 "lang": "en"
3375 },
3376 {
3377 "keyword": "MLI",
3378 "sequence": "5",
3379 "lang": "en"
3380 }
3381 ],
3382 "citation_list": [
3383 {
3384 "sequence": "1",
3385 "original_text": "1) R. Yokota, Aerospace Materials, Chapter 5, B. Cantor, H. Assender, and P. Grant, eds., Institute ofPhysics Publishing, Bristol (2001) p. 47."
3386 },
3387 {
3388 "sequence": "2",
3389 "original_text": "2) C.K. Krishnaprakas, K. Badari Narayana, and Pradip Dutta, Cryogenics, 40 (2000) p.431."
3390 },
3391 {
3392 "sequence": "3",
3393 "doi": "10.2494/photopolymer.12.209",
3394 "title_list": [
3395 {
3396 "lang": "en",
3397 "title": "Recent Trends and Space Applications of Poylmides."
3398 }
3399 ],
3400 "volume": "12",
3401 "issue": "2",
3402 "first_page": "209",
3403 "last_page": "216",
3404 "publication_date": {
3405 "publication_year": "1999"
3406 },
3407 "creator_list": [
3408 {
3409 "sequence": "1",
3410 "type": "person",
3411 "names": [
3412 {
3413 "lang": "en",
3414 "last_name": "YOKOTA",
3415 "first_name": "RIKIO"
3416 }
3417 ]
3418 }
3419 ],
3420 "content_language": "en",
3421 "original_text": "3) R. Yokota, J. Photopolym. Sci. Tech., 12 (1999) p.209."
3422 },
3423 {
3424 "sequence": "4",
3425 "original_text": "4) E.M. Silverman, Environmental Effects on Spacecraft: LEO Materials Selection Guide, NASA Contractor Report 4661Part1 and Part 2 (1995)."
3426 },
3427 {
3428 "sequence": "5",
3429 "first_page": "1999",
3430 "publication_date": {
3431 "publication_year": "1999"
3432 },
3433 "original_text": "5) D. Dooling and M.M. Finckenor, Material Selection Guidelines to Limit Atomic Oxygen Effects on Spacecraft Surfaces, NASA/TP-1999-209260 (1999)."
3434 },
3435 {
3436 "sequence": "6",
3437 "original_text": "6) E. Grossman, and I. Gouzman, Nuclear Instruments cind Methods in Physics Research B (2003) in press."
3438 },
3439 {
3440 "sequence": "7",
3441 "original_text": "7) R. Yokota, A. Ohnishi, Y. Hashimoto, K. Toki, S. Kuroda, K. Akahori, and H. Nagano, Proc. 7th Materials in Space Environment, Toulouse, France, 16-20 Jurie 1997, p.293."
3442 },
3443 {
3444 "sequence": "8",
3445 "title_list": [
3446 {
3447 "lang": "en",
3448 "title": "Atomic oxygen effects on polymer-based materials."
3449 }
3450 ],
3451 "volume": "69",
3452 "issue": "8/9",
3453 "first_page": "1190",
3454 "last_page": "1208",
3455 "publication_date": {
3456 "publication_year": "1991"
3457 },
3458 "content_language": "en",
3459 "original_text": "8) RC. Tennyson, Can. J. Phys., 69 (1991) p.1190."
3460 },
3461 {
3462 "sequence": "9",
3463 "original_text": "9) R.H. Hansen, J.V. Pascale, T. De Benedictis, and P.M. Rentzepis, J. Polym. Sci.: Part A, 3 (1965) p.2205."
3464 },
3465 {
3466 "sequence": "10",
3467 "doi": "10.1007/BF00354389",
3468 "title_list": [
3469 {
3470 "lang": "en",
3471 "title": "Effect of low earth orbit atomic oxygen on spacecraft materials."
3472 }
3473 ],
3474 "volume": "30",
3475 "issue": "2",
3476 "first_page": "281",
3477 "last_page": "307",
3478 "publication_date": {
3479 "publication_year": "1995"
3480 },
3481 "content_language": "en",
3482 "original_text": "10) M. Raja Reddy, J. Mat. Sci., 30 (1995) p.281."
3483 },
3484 {
3485 "sequence": "11",
3486 "doi": "10.1007/BF00354390",
3487 "title_list": [
3488 {
3489 "lang": "en",
3490 "title": "Atomic oxygen resistant coatings for low earth orbit space structures."
3491 }
3492 ],
3493 "volume": "30",
3494 "issue": "2",
3495 "first_page": "308",
3496 "last_page": "320",
3497 "publication_date": {
3498 "publication_year": "1995"
3499 },
3500 "content_language": "en",
3501 "original_text": "11) S. Packirisamy, D. Schwam, and M.H. Litt, J. Mat. Sci., 30 (1995) p.308."
3502 },
3503 {
3504 "sequence": "12",
3505 "original_text": "12) L.L. Fewell, J. Appl. Polym. Sci., 41 (1990) p.391."
3506 },
3507 {
3508 "sequence": "13",
3509 "original_text": "13) M. Raja Reddy, N. Srinivasamurthy, and B.L. Agrawal, ESA J., 16 (1992) p.193."
3510 },
3511 {
3512 "sequence": "14",
3513 "doi": "10.1088/0954-0083/11/1/013",
3514 "title_list": [
3515 {
3516 "lang": "en",
3517 "title": "Protection of polymetric materials from atomic oxygen."
3518 }
3519 ],
3520 "volume": "11",
3521 "issue": "1",
3522 "first_page": "157",
3523 "last_page": "165",
3524 "publication_date": {
3525 "publication_year": "1999"
3526 },
3527 "content_language": "en",
3528 "original_text": "14) RC. Tennyson, High Perform. Polym., 11 (1999) p.157."
3529 },
3530 {
3531 "sequence": "15",
3532 "original_text": "15) Y. Huang, J. Liu, I. Ball, and T.K. Minton, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1788."
3533 },
3534 {
3535 "sequence": "16",
3536 "original_text": "16) B.A. Banks, and R. Demko, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.820."
3537 },
3538 {
3539 "sequence": "17",
3540 "original_text": "17) M.L. lliingsworth, J.A. Betancourt, L. He, Y. Chen, J.A. Terschak, B.A. Banks, S.K. Rutledge, and M. Cales, NASAITM-2001-211099 (2001)."
3541 },
3542 {
3543 "sequence": "18",
3544 "original_text": "18) R.L. Kiefer, RA. Anderson, M.H.Y. Kim, and S.A. Thibeault, Nuclear Instruments and Methods in Physics Research B, (2003) in press."
3545 },
3546 {
3547 "sequence": "19",
3548 "volume": "2002",
3549 "issue": "14",
3550 "first_page": "2002",
3551 "publication_date": {
3552 "publication_year": "2002"
3553 },
3554 "original_text": "19) C. Park, Z. Ounaies, K.A. Watson, K. Pawlowski, S.E. Lowther, J.W. Connell, E.J. Siochi, J.S. Harrison, and T.L. St Clair, NASA/CR-2002-211940 (2002)."
3555 },
3556 {
3557 "sequence": "20",
3558 "original_text": "20) Y. Huang, J. Liu, I. Ball, and T.K. Minton, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1788."
3559 },
3560 {
3561 "sequence": "21",
3562 "doi": "10.1177/0954008303015002003",
3563 "volume": "15",
3564 "first_page": "181",
3565 "publication_date": {
3566 "publication_year": "2003"
3567 },
3568 "original_text": "21) C.M. Thompson, J.G. Smith, Jr., andJ.W. Connell, High Perform. Polym., 15 (2003) p.181."
3569 },
3570 {
3571 "sequence": "22",
3572 "original_text": "22) K.A. Watson, and J.W. Connell, Proc. Fluoropolymer 2000, Savanah, Georgia, October 15.18, 2000."
3573 },
3574 {
3575 "sequence": "23",
3576 "original_text": "23) J.G. Smith Jr., J.W. Connell, and P.M. Hergenrother, Polymer, 35 (1994) p.2834."
3577 },
3578 {
3579 "sequence": "24",
3580 "original_text": "24) K.K. de Groh, B.A. Banks, and R. Demko, Proc. 47th Int. SAMPE Symp. Exh., B.M. Rasmussen, L.A. Pilato, and H.S. Kliger, Eds., Long Beach, Califonia, May 12-16, 2002, p.1279."
3581 },
3582 {
3583 "sequence": "25",
3584 "doi": "10.1021/ma0201779",
3585 "title_list": [
3586 {
3587 "lang": "en",
3588 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
3589 }
3590 ],
3591 "volume": "35",
3592 "issue": "13",
3593 "first_page": "4968",
3594 "last_page": "4974",
3595 "publication_date": {
3596 "publication_year": "2002"
3597 },
3598 "content_language": "en",
3599 "original_text": "25) K.A. Watson, F.L. Palmteri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
3600 },
3601 {
3602 "sequence": "25",
3603 "doi": "10.1021/ma0201779",
3604 "title_list": [
3605 {
3606 "lang": "en",
3607 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
3608 }
3609 ],
3610 "volume": "35",
3611 "issue": "13",
3612 "first_page": "4968",
3613 "last_page": "4974",
3614 "publication_date": {
3615 "publication_year": "2002"
3616 },
3617 "content_language": "en",
3618 "original_text": "46) K.A. Watson, F.L. Palmieri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
3619 },
3620 {
3621 "sequence": "26",
3622 "doi": "10.1246/cl.1997.333",
3623 "title_list": [
3624 {
3625 "lang": "en",
3626 "title": "In situ Formed Three Layer Film by Isomerization of Fluorinated Polyisoimide in Polyethersulfone as a Matrix Polymer."
3627 }
3628 ],
3629 "issue": "4",
3630 "first_page": "333",
3631 "last_page": "334",
3632 "publication_date": {
3633 "publication_year": "1997"
3634 },
3635 "creator_list": [
3636 {
3637 "sequence": "1",
3638 "type": "person",
3639 "names": [
3640 {
3641 "lang": "en",
3642 "last_name": "Mochizuki",
3643 "first_name": "Amane"
3644 }
3645 ],
3646 "affiliation_list": [
3647 {
3648 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
3649 "sequence": "1",
3650 "lang": "en"
3651 }
3652 ]
3653 },
3654 {
3655 "sequence": "2",
3656 "type": "person",
3657 "names": [
3658 {
3659 "lang": "en",
3660 "last_name": "Yamada",
3661 "first_name": "Kazuo"
3662 }
3663 ],
3664 "affiliation_list": [
3665 {
3666 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
3667 "sequence": "1",
3668 "lang": "en"
3669 }
3670 ]
3671 },
3672 {
3673 "sequence": "3",
3674 "type": "person",
3675 "names": [
3676 {
3677 "lang": "en",
3678 "last_name": "Ueda",
3679 "first_name": "Mitsuru"
3680 }
3681 ],
3682 "affiliation_list": [
3683 {
3684 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
3685 "sequence": "1",
3686 "lang": "en"
3687 }
3688 ]
3689 },
3690 {
3691 "sequence": "4",
3692 "type": "person",
3693 "names": [
3694 {
3695 "lang": "en",
3696 "last_name": "Yokota",
3697 "first_name": "Rikio"
3698 }
3699 ],
3700 "affiliation_list": [
3701 {
3702 "affiliation_name": "Institute of Space and Astronautical Science",
3703 "sequence": "1",
3704 "lang": "en"
3705 }
3706 ]
3707 }
3708 ],
3709 "content_language": "en",
3710 "original_text": "26) A. Mochizuki, K. Yamada, M. Ueda, and R. Yokota, Chem. Letts. (1997) 333."
3711 },
3712 {
3713 "sequence": "27",
3714 "original_text": "27) K.K. de Groh, J.R. Gaier, R.L. Hall, M.J. Norris, M.P. Espe, and D.R. Cato, Effects of Heating on Teflon FEP Thermal Control Material from the Hubble Space Telescope, NASAITM-2000-209085 (2000)."
3715 },
3716 {
3717 "sequence": "28",
3718 "original_text": "28) K.K. de Groh, and D.C. Smith, Investigation of Teflon FEP Embrittlement on Spacecraft in Low Earth Orbit, NASAITM-113153 (1997)."
3719 },
3720 {
3721 "sequence": "29",
3722 "doi": "10.1126/science.2563171",
3723 "title_list": [
3724 {
3725 "lang": "en",
3726 "title": "Effects of buried ionizable amino acids on the reduction potential of recombinant myoglobin."
3727 }
3728 ],
3729 "volume": "243",
3730 "issue": "4887",
3731 "first_page": "69",
3732 "last_page": "72",
3733 "publication_date": {
3734 "publication_year": "1989"
3735 },
3736 "content_language": "en",
3737 "original_text": "29) McGrath, D. Chen, and J.E. McGrath, Polyimides: Materials, Chemistry and Characterization, C. Feger, M.M. Khojasteh, and J.E. McGrath, eds., Elsevier Science Publishers B.V., Amsterdam (1989) p.69."
3738 },
3739 {
3740 "sequence": "30",
3741 "original_text": "30) J. Visentine, W. Kinard, D. Brinker, B.A Banks, and K. Albyn, J. Spacecraft and Rockets, 39 (2002) p.187."
3742 },
3743 {
3744 "sequence": "31",
3745 "original_text": "31) B.A. Banks, K.K. de Groh, S.K. Rutledge, and C.A. Haytas, Consequences of Atomic Oxygen Interaction with Silicone and Silicone Contamination on Surfaces in Low Earth Orbit, NASAITM-1999-209179 (1999)."
3746 },
3747 {
3748 "sequence": "32",
3749 "original_text": "32) N. Furukawa, Y. Yamada, M. Furukawa, M. Yuasa, and Y. Kimura, J. Polym. Sci., Part A: Polym. Chem., 35 (1997) p.2239."
3750 },
3751 {
3752 "sequence": "33",
3753 "original_text": "33) NASDA Rep. No. AU9-R02-K108 (2003)."
3754 },
3755 {
3756 "sequence": "34",
3757 "original_text": "34) G.B. Hoflund, RI. Gonzalez, and S.H. Phillips, J. Adhesion Sci. Technol., 15 (2001) p.1199."
3758 },
3759 {
3760 "sequence": "35",
3761 "original_text": "35) S.H. Phillips, RI. Gonzalez, R.L. Blanski, B.D. Viers, and G.B. Hoflund, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1488."
3762 },
3763 {
3764 "sequence": "36",
3765 "original_text": "36) RI. Ganzalez, Ph.D. Disseration, University ofFlorida, Gainesville, Florida (2002)."
3766 },
3767 {
3768 "sequence": "37",
3769 "original_text": "37) RI. Gonzalex, G.B. Holfund, S.A. Svejda, S.H. Phillips, and B.V. Viers, submitted to Macromolecules."
3770 },
3771 {
3772 "sequence": "38",
3773 "original_text": "38) J.E. McGrath et.al. US Pat. 5,420,225 (1995), US Pat. 5,407,528 (1995), US Pat. 5,387,629 (1995), and US. Pat. 5,134,207 (1992)."
3774 },
3775 {
3776 "sequence": "39",
3777 "doi": "10.1016/0032-3861(95)90668-R",
3778 "title_list": [
3779 {
3780 "lang": "en",
3781 "title": "Oxygen plasma-resistant phenylphosphine oxide-containing polyimides and poly(arylene ether heterocycle)s. 1."
3782 }
3783 ],
3784 "volume": "36",
3785 "issue": "1",
3786 "first_page": "5",
3787 "last_page": "11",
3788 "publication_date": {
3789 "publication_year": "1995"
3790 },
3791 "content_language": "en",
3792 "original_text": "39) J.W. Connell, J.G. Smith Jr., and P.M. Hergenrother, Polymer, 36 (1995) p.5."
3793 },
3794 {
3795 "sequence": "40",
3796 "doi": "10.1016/0032-3861(95)90669-S",
3797 "title_list": [
3798 {
3799 "lang": "en",
3800 "title": "Oxgen plasma-resistant phenylphosphine oxide-containing polyimides and poly(arylene ether heterocycle)s. 2."
3801 }
3802 ],
3803 "volume": "36",
3804 "issue": "1",
3805 "first_page": "13",
3806 "last_page": "19",
3807 "publication_date": {
3808 "publication_year": "1995"
3809 },
3810 "content_language": "en",
3811 "original_text": "40) J.W. Connell, J.G. Smith Jr., and P.M. Hergenrother, Polymer, 36 (1995) p.13."
3812 },
3813 {
3814 "sequence": "41",
3815 "original_text": "41) P. Schuler, R. Haghighat, and H. Mojazza, High Perform. Polym., 11 (1999) p.113."
3816 },
3817 {
3818 "sequence": "42",
3819 "original_text": "42) J.W. Connell, The Effect of Low Earth Orbit Atomic Oxygen Exposure on Phenylphosphine Oxide-Containing Polymers, 44th International SAMPE Symposium and Exhibition, Long Beach, California, May 23-27, 1999."
3820 },
3821 {
3822 "sequence": "43",
3823 "doi": "10.1088/0954-0083/11/1/008",
3824 "title_list": [
3825 {
3826 "lang": "en",
3827 "title": "Electrically conductive space-durable polymeric films for spacecraft thermal and charge control."
3828 }
3829 ],
3830 "volume": "11",
3831 "issue": "1",
3832 "first_page": "101",
3833 "last_page": "111",
3834 "publication_date": {
3835 "publication_year": "1999"
3836 },
3837 "content_language": "en",
3838 "original_text": "43) J. Lennhoff, G. Harris, J. Vaughn, D. Edwards, and J. Zwiener, High Perform. Polym., 11 (1999) p.101."
3839 },
3840 {
3841 "sequence": "44",
3842 "original_text": "44) T.C. Chang,, K.H. Wu, and Y.S. Chiu, Polym. Degrad Stability, 63 (1999) p.103."
3843 },
3844 {
3845 "sequence": "45",
3846 "doi": "10.1016/S0032-3861(02)00362-2",
3847 "original_text": "45) P.M. Hergenrother, K.A. Watson, J.G. Smith Jr., J.W. Connell, and R. Yokota, Polymer, 43 (2002) p.5077."
3848 },
3849 {
3850 "sequence": "46",
3851 "doi": "10.1021/ma0201779",
3852 "title_list": [
3853 {
3854 "lang": "en",
3855 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
3856 }
3857 ],
3858 "volume": "35",
3859 "issue": "13",
3860 "first_page": "4968",
3861 "last_page": "4974",
3862 "publication_date": {
3863 "publication_year": "2002"
3864 },
3865 "content_language": "en",
3866 "original_text": "25) K.A. Watson, F.L. Palmteri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
3867 },
3868 {
3869 "sequence": "46",
3870 "doi": "10.1021/ma0201779",
3871 "title_list": [
3872 {
3873 "lang": "en",
3874 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
3875 }
3876 ],
3877 "volume": "35",
3878 "issue": "13",
3879 "first_page": "4968",
3880 "last_page": "4974",
3881 "publication_date": {
3882 "publication_year": "2002"
3883 },
3884 "content_language": "en",
3885 "original_text": "46) K.A. Watson, F.L. Palmieri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
3886 },
3887 {
3888 "sequence": "47",
3889 "original_text": "47) K.A. Watson, and J.W. Connell, Space Environmentally Stable Polyimides and Copolyimides, 45th International SAMPE Symposium and Exhibit, Long Beach, California, May 21-25, 2000."
3890 },
3891 {
3892 "sequence": "48",
3893 "original_text": "48) C. M. Thompson, J. G. Smith, Jr., K. A. Watson and J. W. Connell, Polyimides Containing Pendent Phosphine Oxide Groups for Space Applications, 34th International SAMPE Technical Conference, Baltimore, Maryland, November 4-7, 2002."
3894 },
3895 {
3896 "sequence": "49",
3897 "original_text": "49) H. Zhuang, Ph.D. Dissertation, Virginia Polytechnic Institute and State University, Blacksburg, Virginir (1998)."
3898 },
3899 {
3900 "sequence": "50",
3901 "original_text": "50) S. Wang, Ph.D. Dissertation, Virginia Polytechnic Institute and State University, Blacksburg, Virginir (2000)."
3902 },
3903 {
3904 "sequence": "51",
3905 "original_text": "51) S. Y. Lu, and I. Hamerton, Prag. Polym. Sci., 27 (2002) p.1661."
3906 }
3907 ]
3908 }
3909 }
3910 jalc_processor = JalcProcessing()
3911 pages = jalc_processor._extract_pages(item_dict["data"])
3912 self.assertEqual(pages, '1_34-1_34')
3914 def test_extract_pages_non_roman_letters(self):
3915 item_dict = {
3916 "status": "OK",
3917 "apiType": "doi",
3918 "apiVersion": "1.0.0",
3919 "message": {
3920 "total": 1,
3921 "rows": 1,
3922 "totalPages": 1,
3923 "page": 1
3924 },
3925 "data": {
3926 "siteId": "SI/JST.JSTAGE",
3927 "content_type": "JA",
3928 "doi": "10.11230/jsts.18.1_34",
3929 "url": "https://doi.org/10.11230/jsts.18.1_34",
3930 "ra": "JaLC",
3931 "prefix": "10.11230",
3932 "site_name": "J-STAGE",
3933 "publisher_list": [
3934 {
3935 "publisher_name": "Japanese Rocket Society",
3936 "lang": "en"
3937 },
3938 {
3939 "publisher_name": "特定非営利活動法人 日本ロケット協会",
3940 "lang": "ja"
3941 }
3942 ],
3943 "title_list": [
3944 {
3945 "lang": "en",
3946 "title": "Atomic Oxygen Protections in Polymeric Systems: A Review"
3947 }
3948 ],
3949 "creator_list": [
3950 {
3951 "sequence": "1",
3952 "type": "person",
3953 "names": [
3954 {
3955 "lang": "en",
3956 "last_name": "RIMDUSIT",
3957 "first_name": "Sarawut"
3958 }
3959 ],
3960 "affiliation_list": [
3961 {
3962 "affiliation_name": "Chulalongkorn University",
3963 "sequence": "1",
3964 "lang": "en"
3965 }
3966 ]
3967 },
3968 {
3969 "sequence": "2",
3970 "type": "person",
3971 "names": [
3972 {
3973 "lang": "en",
3974 "last_name": "YOKOTA",
3975 "first_name": "Rikio"
3976 }
3977 ],
3978 "affiliation_list": [
3979 {
3980 "affiliation_name": "Chulalongkorn University",
3981 "sequence": "1",
3982 "lang": "en"
3983 }
3984 ]
3985 }
3986 ],
3987 "publication_date": {
3988 "publication_year": "2002"
3989 },
3990 "relation_list": [
3991 {
3992 "content": "https://www.jstage.jst.go.jp/article/jsts/18/1/18_1_34/_pdf",
3993 "type": "URL",
3994 "relation": "fullTextPdf"
3995 }
3996 ],
3997 "content_language": "en",
3998 "updated_date": "2014-12-09",
3999 "article_type": "pub",
4000 "journal_id_list": [
4001 {
4002 "journal_id": "0911-551X",
4003 "type": "ISSN",
4004 "issn_type": "print"
4005 },
4006 {
4007 "journal_id": "2186-4772",
4008 "type": "ISSN",
4009 "issn_type": "online"
4010 },
4011 {
4012 "journal_id": "jsts",
4013 "type": "JID"
4014 }
4015 ],
4016 "journal_title_name_list": [
4017 {
4018 "journal_title_name": "The Journal of Space Technology and Science",
4019 "type": "full",
4020 "lang": "en"
4021 },
4022 {
4023 "journal_title_name": "JSTS",
4024 "type": "abbreviation",
4025 "lang": "en"
4026 }
4027 ],
4028 "journal_classification": "01",
4029 "journal_txt_lang": "en",
4030 "recorded_year": "1985-2013",
4031 "volume": "18",
4032 "issue": "1",
4033 "first_page": "kio",
4034 "last_page": "jpj",
4035 "date": "2013-08-18",
4036 "keyword_list": [
4037 {
4038 "keyword": "Atomic Oxygen",
4039 "sequence": "1",
4040 "lang": "en"
4041 },
4042 {
4043 "keyword": "Immiscible Blends",
4044 "sequence": "2",
4045 "lang": "en"
4046 },
4047 {
4048 "keyword": "Phosphorus-containing Polyimide",
4049 "sequence": "3",
4050 "lang": "en"
4051 },
4052 {
4053 "keyword": "Silicon-containing Polyimide",
4054 "sequence": "4",
4055 "lang": "en"
4056 },
4057 {
4058 "keyword": "MLI",
4059 "sequence": "5",
4060 "lang": "en"
4061 }
4062 ],
4063 "citation_list": [
4064 {
4065 "sequence": "1",
4066 "original_text": "1) R. Yokota, Aerospace Materials, Chapter 5, B. Cantor, H. Assender, and P. Grant, eds., Institute ofPhysics Publishing, Bristol (2001) p. 47."
4067 },
4068 {
4069 "sequence": "2",
4070 "original_text": "2) C.K. Krishnaprakas, K. Badari Narayana, and Pradip Dutta, Cryogenics, 40 (2000) p.431."
4071 },
4072 {
4073 "sequence": "3",
4074 "doi": "10.2494/photopolymer.12.209",
4075 "title_list": [
4076 {
4077 "lang": "en",
4078 "title": "Recent Trends and Space Applications of Poylmides."
4079 }
4080 ],
4081 "volume": "12",
4082 "issue": "2",
4083 "first_page": "209",
4084 "last_page": "216",
4085 "publication_date": {
4086 "publication_year": "1999"
4087 },
4088 "creator_list": [
4089 {
4090 "sequence": "1",
4091 "type": "person",
4092 "names": [
4093 {
4094 "lang": "en",
4095 "last_name": "YOKOTA",
4096 "first_name": "RIKIO"
4097 }
4098 ]
4099 }
4100 ],
4101 "content_language": "en",
4102 "original_text": "3) R. Yokota, J. Photopolym. Sci. Tech., 12 (1999) p.209."
4103 },
4104 {
4105 "sequence": "4",
4106 "original_text": "4) E.M. Silverman, Environmental Effects on Spacecraft: LEO Materials Selection Guide, NASA Contractor Report 4661Part1 and Part 2 (1995)."
4107 },
4108 {
4109 "sequence": "5",
4110 "first_page": "1999",
4111 "publication_date": {
4112 "publication_year": "1999"
4113 },
4114 "original_text": "5) D. Dooling and M.M. Finckenor, Material Selection Guidelines to Limit Atomic Oxygen Effects on Spacecraft Surfaces, NASA/TP-1999-209260 (1999)."
4115 },
4116 {
4117 "sequence": "6",
4118 "original_text": "6) E. Grossman, and I. Gouzman, Nuclear Instruments cind Methods in Physics Research B (2003) in press."
4119 },
4120 {
4121 "sequence": "7",
4122 "original_text": "7) R. Yokota, A. Ohnishi, Y. Hashimoto, K. Toki, S. Kuroda, K. Akahori, and H. Nagano, Proc. 7th Materials in Space Environment, Toulouse, France, 16-20 Jurie 1997, p.293."
4123 },
4124 {
4125 "sequence": "8",
4126 "title_list": [
4127 {
4128 "lang": "en",
4129 "title": "Atomic oxygen effects on polymer-based materials."
4130 }
4131 ],
4132 "volume": "69",
4133 "issue": "8/9",
4134 "first_page": "1190",
4135 "last_page": "1208",
4136 "publication_date": {
4137 "publication_year": "1991"
4138 },
4139 "content_language": "en",
4140 "original_text": "8) RC. Tennyson, Can. J. Phys., 69 (1991) p.1190."
4141 },
4142 {
4143 "sequence": "9",
4144 "original_text": "9) R.H. Hansen, J.V. Pascale, T. De Benedictis, and P.M. Rentzepis, J. Polym. Sci.: Part A, 3 (1965) p.2205."
4145 },
4146 {
4147 "sequence": "10",
4148 "doi": "10.1007/BF00354389",
4149 "title_list": [
4150 {
4151 "lang": "en",
4152 "title": "Effect of low earth orbit atomic oxygen on spacecraft materials."
4153 }
4154 ],
4155 "volume": "30",
4156 "issue": "2",
4157 "first_page": "281",
4158 "last_page": "307",
4159 "publication_date": {
4160 "publication_year": "1995"
4161 },
4162 "content_language": "en",
4163 "original_text": "10) M. Raja Reddy, J. Mat. Sci., 30 (1995) p.281."
4164 },
4165 {
4166 "sequence": "11",
4167 "doi": "10.1007/BF00354390",
4168 "title_list": [
4169 {
4170 "lang": "en",
4171 "title": "Atomic oxygen resistant coatings for low earth orbit space structures."
4172 }
4173 ],
4174 "volume": "30",
4175 "issue": "2",
4176 "first_page": "308",
4177 "last_page": "320",
4178 "publication_date": {
4179 "publication_year": "1995"
4180 },
4181 "content_language": "en",
4182 "original_text": "11) S. Packirisamy, D. Schwam, and M.H. Litt, J. Mat. Sci., 30 (1995) p.308."
4183 },
4184 {
4185 "sequence": "12",
4186 "original_text": "12) L.L. Fewell, J. Appl. Polym. Sci., 41 (1990) p.391."
4187 },
4188 {
4189 "sequence": "13",
4190 "original_text": "13) M. Raja Reddy, N. Srinivasamurthy, and B.L. Agrawal, ESA J., 16 (1992) p.193."
4191 },
4192 {
4193 "sequence": "14",
4194 "doi": "10.1088/0954-0083/11/1/013",
4195 "title_list": [
4196 {
4197 "lang": "en",
4198 "title": "Protection of polymetric materials from atomic oxygen."
4199 }
4200 ],
4201 "volume": "11",
4202 "issue": "1",
4203 "first_page": "157",
4204 "last_page": "165",
4205 "publication_date": {
4206 "publication_year": "1999"
4207 },
4208 "content_language": "en",
4209 "original_text": "14) RC. Tennyson, High Perform. Polym., 11 (1999) p.157."
4210 },
4211 {
4212 "sequence": "15",
4213 "original_text": "15) Y. Huang, J. Liu, I. Ball, and T.K. Minton, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1788."
4214 },
4215 {
4216 "sequence": "16",
4217 "original_text": "16) B.A. Banks, and R. Demko, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.820."
4218 },
4219 {
4220 "sequence": "17",
4221 "original_text": "17) M.L. lliingsworth, J.A. Betancourt, L. He, Y. Chen, J.A. Terschak, B.A. Banks, S.K. Rutledge, and M. Cales, NASAITM-2001-211099 (2001)."
4222 },
4223 {
4224 "sequence": "18",
4225 "original_text": "18) R.L. Kiefer, RA. Anderson, M.H.Y. Kim, and S.A. Thibeault, Nuclear Instruments and Methods in Physics Research B, (2003) in press."
4226 },
4227 {
4228 "sequence": "19",
4229 "volume": "2002",
4230 "issue": "14",
4231 "first_page": "2002",
4232 "publication_date": {
4233 "publication_year": "2002"
4234 },
4235 "original_text": "19) C. Park, Z. Ounaies, K.A. Watson, K. Pawlowski, S.E. Lowther, J.W. Connell, E.J. Siochi, J.S. Harrison, and T.L. St Clair, NASA/CR-2002-211940 (2002)."
4236 },
4237 {
4238 "sequence": "20",
4239 "original_text": "20) Y. Huang, J. Liu, I. Ball, and T.K. Minton, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1788."
4240 },
4241 {
4242 "sequence": "21",
4243 "doi": "10.1177/0954008303015002003",
4244 "volume": "15",
4245 "first_page": "181",
4246 "publication_date": {
4247 "publication_year": "2003"
4248 },
4249 "original_text": "21) C.M. Thompson, J.G. Smith, Jr., andJ.W. Connell, High Perform. Polym., 15 (2003) p.181."
4250 },
4251 {
4252 "sequence": "22",
4253 "original_text": "22) K.A. Watson, and J.W. Connell, Proc. Fluoropolymer 2000, Savanah, Georgia, October 15.18, 2000."
4254 },
4255 {
4256 "sequence": "23",
4257 "original_text": "23) J.G. Smith Jr., J.W. Connell, and P.M. Hergenrother, Polymer, 35 (1994) p.2834."
4258 },
4259 {
4260 "sequence": "24",
4261 "original_text": "24) K.K. de Groh, B.A. Banks, and R. Demko, Proc. 47th Int. SAMPE Symp. Exh., B.M. Rasmussen, L.A. Pilato, and H.S. Kliger, Eds., Long Beach, Califonia, May 12-16, 2002, p.1279."
4262 },
4263 {
4264 "sequence": "25",
4265 "doi": "10.1021/ma0201779",
4266 "title_list": [
4267 {
4268 "lang": "en",
4269 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
4270 }
4271 ],
4272 "volume": "35",
4273 "issue": "13",
4274 "first_page": "4968",
4275 "last_page": "4974",
4276 "publication_date": {
4277 "publication_year": "2002"
4278 },
4279 "content_language": "en",
4280 "original_text": "25) K.A. Watson, F.L. Palmteri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
4281 },
4282 {
4283 "sequence": "25",
4284 "doi": "10.1021/ma0201779",
4285 "title_list": [
4286 {
4287 "lang": "en",
4288 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
4289 }
4290 ],
4291 "volume": "35",
4292 "issue": "13",
4293 "first_page": "4968",
4294 "last_page": "4974",
4295 "publication_date": {
4296 "publication_year": "2002"
4297 },
4298 "content_language": "en",
4299 "original_text": "46) K.A. Watson, F.L. Palmieri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
4300 },
4301 {
4302 "sequence": "26",
4303 "doi": "10.1246/cl.1997.333",
4304 "title_list": [
4305 {
4306 "lang": "en",
4307 "title": "In situ Formed Three Layer Film by Isomerization of Fluorinated Polyisoimide in Polyethersulfone as a Matrix Polymer."
4308 }
4309 ],
4310 "issue": "4",
4311 "first_page": "333",
4312 "last_page": "334",
4313 "publication_date": {
4314 "publication_year": "1997"
4315 },
4316 "creator_list": [
4317 {
4318 "sequence": "1",
4319 "type": "person",
4320 "names": [
4321 {
4322 "lang": "en",
4323 "last_name": "Mochizuki",
4324 "first_name": "Amane"
4325 }
4326 ],
4327 "affiliation_list": [
4328 {
4329 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
4330 "sequence": "1",
4331 "lang": "en"
4332 }
4333 ]
4334 },
4335 {
4336 "sequence": "2",
4337 "type": "person",
4338 "names": [
4339 {
4340 "lang": "en",
4341 "last_name": "Yamada",
4342 "first_name": "Kazuo"
4343 }
4344 ],
4345 "affiliation_list": [
4346 {
4347 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
4348 "sequence": "1",
4349 "lang": "en"
4350 }
4351 ]
4352 },
4353 {
4354 "sequence": "3",
4355 "type": "person",
4356 "names": [
4357 {
4358 "lang": "en",
4359 "last_name": "Ueda",
4360 "first_name": "Mitsuru"
4361 }
4362 ],
4363 "affiliation_list": [
4364 {
4365 "affiliation_name": "Department of Materials Science and Engineering, Faculty of Engineering, Yamagata University",
4366 "sequence": "1",
4367 "lang": "en"
4368 }
4369 ]
4370 },
4371 {
4372 "sequence": "4",
4373 "type": "person",
4374 "names": [
4375 {
4376 "lang": "en",
4377 "last_name": "Yokota",
4378 "first_name": "Rikio"
4379 }
4380 ],
4381 "affiliation_list": [
4382 {
4383 "affiliation_name": "Institute of Space and Astronautical Science",
4384 "sequence": "1",
4385 "lang": "en"
4386 }
4387 ]
4388 }
4389 ],
4390 "content_language": "en",
4391 "original_text": "26) A. Mochizuki, K. Yamada, M. Ueda, and R. Yokota, Chem. Letts. (1997) 333."
4392 },
4393 {
4394 "sequence": "27",
4395 "original_text": "27) K.K. de Groh, J.R. Gaier, R.L. Hall, M.J. Norris, M.P. Espe, and D.R. Cato, Effects of Heating on Teflon FEP Thermal Control Material from the Hubble Space Telescope, NASAITM-2000-209085 (2000)."
4396 },
4397 {
4398 "sequence": "28",
4399 "original_text": "28) K.K. de Groh, and D.C. Smith, Investigation of Teflon FEP Embrittlement on Spacecraft in Low Earth Orbit, NASAITM-113153 (1997)."
4400 },
4401 {
4402 "sequence": "29",
4403 "doi": "10.1126/science.2563171",
4404 "title_list": [
4405 {
4406 "lang": "en",
4407 "title": "Effects of buried ionizable amino acids on the reduction potential of recombinant myoglobin."
4408 }
4409 ],
4410 "volume": "243",
4411 "issue": "4887",
4412 "first_page": "69",
4413 "last_page": "72",
4414 "publication_date": {
4415 "publication_year": "1989"
4416 },
4417 "content_language": "en",
4418 "original_text": "29) McGrath, D. Chen, and J.E. McGrath, Polyimides: Materials, Chemistry and Characterization, C. Feger, M.M. Khojasteh, and J.E. McGrath, eds., Elsevier Science Publishers B.V., Amsterdam (1989) p.69."
4419 },
4420 {
4421 "sequence": "30",
4422 "original_text": "30) J. Visentine, W. Kinard, D. Brinker, B.A Banks, and K. Albyn, J. Spacecraft and Rockets, 39 (2002) p.187."
4423 },
4424 {
4425 "sequence": "31",
4426 "original_text": "31) B.A. Banks, K.K. de Groh, S.K. Rutledge, and C.A. Haytas, Consequences of Atomic Oxygen Interaction with Silicone and Silicone Contamination on Surfaces in Low Earth Orbit, NASAITM-1999-209179 (1999)."
4427 },
4428 {
4429 "sequence": "32",
4430 "original_text": "32) N. Furukawa, Y. Yamada, M. Furukawa, M. Yuasa, and Y. Kimura, J. Polym. Sci., Part A: Polym. Chem., 35 (1997) p.2239."
4431 },
4432 {
4433 "sequence": "33",
4434 "original_text": "33) NASDA Rep. No. AU9-R02-K108 (2003)."
4435 },
4436 {
4437 "sequence": "34",
4438 "original_text": "34) G.B. Hoflund, RI. Gonzalez, and S.H. Phillips, J. Adhesion Sci. Technol., 15 (2001) p.1199."
4439 },
4440 {
4441 "sequence": "35",
4442 "original_text": "35) S.H. Phillips, RI. Gonzalez, R.L. Blanski, B.D. Viers, and G.B. Hoflund, Proc. SAMPE 2002, May 12-16, 2002, Long Beach, California, p.1488."
4443 },
4444 {
4445 "sequence": "36",
4446 "original_text": "36) RI. Ganzalez, Ph.D. Disseration, University ofFlorida, Gainesville, Florida (2002)."
4447 },
4448 {
4449 "sequence": "37",
4450 "original_text": "37) RI. Gonzalex, G.B. Holfund, S.A. Svejda, S.H. Phillips, and B.V. Viers, submitted to Macromolecules."
4451 },
4452 {
4453 "sequence": "38",
4454 "original_text": "38) J.E. McGrath et.al. US Pat. 5,420,225 (1995), US Pat. 5,407,528 (1995), US Pat. 5,387,629 (1995), and US. Pat. 5,134,207 (1992)."
4455 },
4456 {
4457 "sequence": "39",
4458 "doi": "10.1016/0032-3861(95)90668-R",
4459 "title_list": [
4460 {
4461 "lang": "en",
4462 "title": "Oxygen plasma-resistant phenylphosphine oxide-containing polyimides and poly(arylene ether heterocycle)s. 1."
4463 }
4464 ],
4465 "volume": "36",
4466 "issue": "1",
4467 "first_page": "5",
4468 "last_page": "11",
4469 "publication_date": {
4470 "publication_year": "1995"
4471 },
4472 "content_language": "en",
4473 "original_text": "39) J.W. Connell, J.G. Smith Jr., and P.M. Hergenrother, Polymer, 36 (1995) p.5."
4474 },
4475 {
4476 "sequence": "40",
4477 "doi": "10.1016/0032-3861(95)90669-S",
4478 "title_list": [
4479 {
4480 "lang": "en",
4481 "title": "Oxgen plasma-resistant phenylphosphine oxide-containing polyimides and poly(arylene ether heterocycle)s. 2."
4482 }
4483 ],
4484 "volume": "36",
4485 "issue": "1",
4486 "first_page": "13",
4487 "last_page": "19",
4488 "publication_date": {
4489 "publication_year": "1995"
4490 },
4491 "content_language": "en",
4492 "original_text": "40) J.W. Connell, J.G. Smith Jr., and P.M. Hergenrother, Polymer, 36 (1995) p.13."
4493 },
4494 {
4495 "sequence": "41",
4496 "original_text": "41) P. Schuler, R. Haghighat, and H. Mojazza, High Perform. Polym., 11 (1999) p.113."
4497 },
4498 {
4499 "sequence": "42",
4500 "original_text": "42) J.W. Connell, The Effect of Low Earth Orbit Atomic Oxygen Exposure on Phenylphosphine Oxide-Containing Polymers, 44th International SAMPE Symposium and Exhibition, Long Beach, California, May 23-27, 1999."
4501 },
4502 {
4503 "sequence": "43",
4504 "doi": "10.1088/0954-0083/11/1/008",
4505 "title_list": [
4506 {
4507 "lang": "en",
4508 "title": "Electrically conductive space-durable polymeric films for spacecraft thermal and charge control."
4509 }
4510 ],
4511 "volume": "11",
4512 "issue": "1",
4513 "first_page": "101",
4514 "last_page": "111",
4515 "publication_date": {
4516 "publication_year": "1999"
4517 },
4518 "content_language": "en",
4519 "original_text": "43) J. Lennhoff, G. Harris, J. Vaughn, D. Edwards, and J. Zwiener, High Perform. Polym., 11 (1999) p.101."
4520 },
4521 {
4522 "sequence": "44",
4523 "original_text": "44) T.C. Chang,, K.H. Wu, and Y.S. Chiu, Polym. Degrad Stability, 63 (1999) p.103."
4524 },
4525 {
4526 "sequence": "45",
4527 "doi": "10.1016/S0032-3861(02)00362-2",
4528 "original_text": "45) P.M. Hergenrother, K.A. Watson, J.G. Smith Jr., J.W. Connell, and R. Yokota, Polymer, 43 (2002) p.5077."
4529 },
4530 {
4531 "sequence": "46",
4532 "doi": "10.1021/ma0201779",
4533 "title_list": [
4534 {
4535 "lang": "en",
4536 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
4537 }
4538 ],
4539 "volume": "35",
4540 "issue": "13",
4541 "first_page": "4968",
4542 "last_page": "4974",
4543 "publication_date": {
4544 "publication_year": "2002"
4545 },
4546 "content_language": "en",
4547 "original_text": "25) K.A. Watson, F.L. Palmteri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
4548 },
4549 {
4550 "sequence": "46",
4551 "doi": "10.1021/ma0201779",
4552 "title_list": [
4553 {
4554 "lang": "en",
4555 "title": "Space Environmentally Stable Polyimides and Copolyimides Derived from [2,4-Bis(3-aminophenoxy)phenyl]diphenylphosphine Oxide."
4556 }
4557 ],
4558 "volume": "35",
4559 "issue": "13",
4560 "first_page": "4968",
4561 "last_page": "4974",
4562 "publication_date": {
4563 "publication_year": "2002"
4564 },
4565 "content_language": "en",
4566 "original_text": "46) K.A. Watson, F.L. Palmieri, and J.W. Connell, Macromolecules, 35 (2002) p.4968."
4567 },
4568 {
4569 "sequence": "47",
4570 "original_text": "47) K.A. Watson, and J.W. Connell, Space Environmentally Stable Polyimides and Copolyimides, 45th International SAMPE Symposium and Exhibit, Long Beach, California, May 21-25, 2000."
4571 },
4572 {
4573 "sequence": "48",
4574 "original_text": "48) C. M. Thompson, J. G. Smith, Jr., K. A. Watson and J. W. Connell, Polyimides Containing Pendent Phosphine Oxide Groups for Space Applications, 34th International SAMPE Technical Conference, Baltimore, Maryland, November 4-7, 2002."
4575 },
4576 {
4577 "sequence": "49",
4578 "original_text": "49) H. Zhuang, Ph.D. Dissertation, Virginia Polytechnic Institute and State University, Blacksburg, Virginir (1998)."
4579 },
4580 {
4581 "sequence": "50",
4582 "original_text": "50) S. Wang, Ph.D. Dissertation, Virginia Polytechnic Institute and State University, Blacksburg, Virginir (2000)."
4583 },
4584 {
4585 "sequence": "51",
4586 "original_text": "51) S. Y. Lu, and I. Hamerton, Prag. Polym. Sci., 27 (2002) p.1661."
4587 }
4588 ]
4589 }
4590 }
4591 jalc_processor = JalcProcessing()
4592 pages = jalc_processor._extract_pages(item_dict["data"])
4593 self.assertEqual(pages, '')
4595 def test_get_ja_with_japanese(self):
4596 list_input = [{"publisher_name": "Japanese Rocket Society", "lang": "en"}, {"publisher_name": "特定非営利活動法人 日本ロケット協会", "lang": "ja"}]
4597 jalc_processor = JalcProcessing()
4598 ja = jalc_processor.get_ja(list_input)
4599 expected_out = [{"publisher_name": "特定非営利活動法人 日本ロケット協会", "lang": "ja"}]
4600 self.assertEqual(ja, expected_out)
4602 def test_get_ja_without_japanese(self):
4603 list_input = [{"lang": "en", "title": "Ozone Measurement by MT-135 Rocket"}]
4604 jalc_processor = JalcProcessing()
4605 en = jalc_processor.get_ja(list_input)
4606 expected_out = [{"lang": "en", "title": "Ozone Measurement by MT-135 Rocket"}]
4607 self.assertEqual(en, expected_out)
4609 def test_to_validated_id_list(self):
4610 inp_1 = {'id': 'doi:10.13039/100005522', 'schema': 'doi'}
4611 j_p = JalcProcessing()
4612 # CASE1_1: No already validated ids + 1 id to be validated, which is valid
4613 out_1 = j_p.to_validated_id_list(inp_1)
4614 exp_1 = ['doi:10.13039/100005522']
4615 self.assertEqual(out_1, exp_1)
4616 j_p.storage_manager.delete_storage()
4618 def test_get_agents_strings_list_with_orcid_index(self):
4619 """Test aggiunta ORCID da index per autore"""
4620 jalc_processor = JalcProcessing()
4621 csv_manager = CSVManager()
4622 csv_manager.data = {
4623 'doi:10.11178/example.1': {
4624 '山田, 太郎 [0000-0001-2345-6789]'
4625 }
4626 }
4627 jalc_processor.orcid_index = csv_manager
4628 jalc_processor.prefetch_doi_orcid_index([self.entity_dict_single_author["data"]["doi"]])
4630 authors_list = jalc_processor._extract_agents(self.entity_dict_single_author["data"])
4631 authors_strings_list, _ = jalc_processor.get_agents_strings_list(
4632 self.entity_dict_single_author["data"]["doi"],
4633 authors_list
4634 )
4636 expected_authors = ['山田, 太郎 [orcid:0000-0001-2345-6789]']
4637 self.assertEqual(authors_strings_list, expected_authors)
4639 def test_get_agents_strings_list_partial_orcid_index(self):
4640 """Test quando l'ORCID index contiene solo uno degli autori omonimi"""
4641 jalc_processor = JalcProcessing()
4642 csv_manager = CSVManager()
4643 csv_manager.data = {
4644 'doi:10.11178/example.2': {
4645 '田中, 一郎 [0000-0003-4567-8901]'
4646 }
4647 }
4648 jalc_processor.orcid_index = csv_manager
4649 jalc_processor.prefetch_doi_orcid_index([self.entity_dict_homonyms["data"]["doi"]])
4651 authors_list = jalc_processor._extract_agents(self.entity_dict_homonyms["data"])
4652 authors_strings_list, _ = jalc_processor.get_agents_strings_list(
4653 self.entity_dict_homonyms["data"]["doi"],
4654 authors_list
4655 )
4657 # In caso di omonimi perfetti, l'ORCID non viene assegnato a nessuno
4658 expected_authors = ['田中, 一郎', '田中, 一郎']
4659 self.assertEqual(authors_strings_list, expected_authors)
4661 def test_get_agents_strings_list_empty_orcid_index(self):
4662 """Test quando l'ORCID index è vuoto"""
4663 jalc_processor = JalcProcessing()
4664 csv_manager = CSVManager()
4665 csv_manager.data = {}
4666 jalc_processor.orcid_index = csv_manager
4667 jalc_processor.prefetch_doi_orcid_index([self.entity_dict_single_author["data"]["doi"]])
4669 authors_list = jalc_processor._extract_agents(self.entity_dict_single_author["data"])
4670 authors_strings_list, _ = jalc_processor.get_agents_strings_list(
4671 self.entity_dict_single_author["data"]["doi"],
4672 authors_list
4673 )
4675 expected_authors = ['山田, 太郎']
4676 self.assertEqual(authors_strings_list, expected_authors)
4678 def test_extract_agents_with_orcid_from_researcher_id_list(self):
4679 """Test extraction of ORCID from researcher_id_list in creator metadata"""
4680 jalc_processor = JalcProcessing()
4681 authors_list = jalc_processor._extract_agents(
4682 self.entity_dict_with_orcid_in_metadata["data"]
4683 )
4685 self.assertEqual(len(authors_list), 2)
4686 self.assertEqual(authors_list[0]['family'], 'LIN')
4687 self.assertEqual(authors_list[0]['given'], 'Weiren')
4688 self.assertEqual(authors_list[0]['orcid'], 'http://orcid.org/0000-0003-3228-2789')
4689 self.assertNotIn('orcid', authors_list[1])
4691 def test_get_agents_strings_list_with_orcid_from_researcher_id_list(self):
4692 """Test that ORCID from researcher_id_list is included in author string"""
4693 jalc_processor = JalcProcessing()
4694 csv_manager = CSVManager()
4695 csv_manager.data = {}
4696 jalc_processor.orcid_index = csv_manager
4698 authors_list = jalc_processor._extract_agents(
4699 self.entity_dict_with_orcid_in_metadata["data"]
4700 )
4701 authors_strings_list, _ = jalc_processor.get_agents_strings_list(
4702 self.entity_dict_with_orcid_in_metadata["data"]["doi"],
4703 authors_list
4704 )
4706 expected_authors = ['LIN, Weiren [orcid:0000-0003-3228-2789]', 'SMITH, John']
4707 self.assertEqual(authors_strings_list, expected_authors)
4710if __name__ == '__main__':
4711 unittest.main()