-
Notifications
You must be signed in to change notification settings - Fork 302
/
test_module.py
877 lines (777 loc) · 41.6 KB
/
test_module.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
import unittest
import os
import sys
from collections import Counter
from scholarly import scholarly, ProxyGenerator
from scholarly.data_types import Mandate
from scholarly.publication_parser import PublicationParser
import random
import json
import csv
import requests
from bs4 import BeautifulSoup
from contextlib import contextmanager
try:
import pandas as pd
except ImportError:
pd = None
class TestLuminati(unittest.TestCase):
skipUnless = os.getenv("USERNAME") and os.getenv("PASSWORD") and os.getenv("PORT")
@unittest.skipUnless(skipUnless, reason="No Luminati credentials found.")
def test_luminati(self):
"""
Test that we can set up Luminati (Bright Data) successfully
"""
proxy_generator = ProxyGenerator()
success = proxy_generator.Luminati(usr=os.getenv("USERNAME"),
passwd=os.getenv("PASSWORD"),
proxy_port=os.getenv("PORT"))
self.assertTrue(success)
self.assertEqual(proxy_generator.proxy_mode, "LUMINATI")
class TestScraperAPI(unittest.TestCase):
skipUnless = os.getenv('SCRAPER_API_KEY')
@unittest.skipUnless(skipUnless, reason="No ScraperAPI key found")
def test_scraperapi(self):
"""
Test that we can set up ScraperAPI successfully
"""
proxy_generator = ProxyGenerator()
success = proxy_generator.ScraperAPI(os.getenv('SCRAPER_API_KEY'))
self.assertTrue(success)
self.assertEqual(proxy_generator.proxy_mode, "SCRAPERAPI")
class TestTorInternal(unittest.TestCase):
skipUnless = [_bin for path in sys.path if os.path.isdir(path) for _bin in os.listdir(path)
if _bin in ('tor', 'tor.exe')]
@unittest.skipUnless(skipUnless, reason='Tor executable not found')
def test_tor_launch_own_process(self):
"""
Test that we can launch a Tor process
"""
proxy_generator = ProxyGenerator()
if sys.platform.startswith("linux") or sys.platform.startswith("darwin"):
tor_cmd = 'tor'
elif sys.platform.startswith("win"):
tor_cmd = 'tor.exe'
else:
tor_cmd = None
tor_sock_port = random.randrange(9000, 9500)
tor_control_port = random.randrange(9500, 9999)
result = proxy_generator.Tor_Internal(tor_cmd, tor_sock_port, tor_control_port)
self.assertTrue(result["proxy_works"])
self.assertTrue(result["refresh_works"])
self.assertEqual(result["tor_control_port"], tor_control_port)
self.assertEqual(result["tor_sock_port"], tor_sock_port)
# Check that we can issue a query as well
query = 'Ipeirotis'
scholarly.use_proxy(proxy_generator)
authors = [a for a in scholarly.search_author(query)]
self.assertGreaterEqual(len(authors), 1)
class TestScholarly(unittest.TestCase):
@classmethod
def setUpClass(cls):
scholarly.set_timeout(5)
scholarly.set_retries(5)
pg = ProxyGenerator()
pg.FreeProxies()
scholarly.use_proxy(pg, ProxyGenerator())
# Try storing the file temporarily as `scholarly.csv` and delete it.
# If there exists already a file with that name, generate a random name
# that does not exist yet, so we can safely delete it.
cls.mandates_filename = "scholarly.csv"
while os.path.exists(cls.mandates_filename):
cls.mandates_filename = ''.join(random.choices('abcdefghijklmnopqrstuvwxyz', k=10)) + ".csv"
@classmethod
def tearDownClass(cls):
"""
Clean up the mandates csv fiile downloaded.
"""
if os.path.exists(cls.mandates_filename):
os.remove(cls.mandates_filename)
@staticmethod
@contextmanager
def suppress_stdout():
with open(os.devnull, "w") as devnull:
old_stdout = sys.stdout
sys.stdout = devnull
try:
yield
finally:
sys.stdout = old_stdout
def test_search_author_empty_author(self):
"""
Test that sholarly.search_author('') returns no authors
"""
authors = [a for a in scholarly.search_author('')]
self.assertIs(len(authors), 0)
def test_search_keywords(self):
query = scholarly.search_keywords(['crowdsourcing', 'privacy'])
author = next(query)
self.assertEqual(author['scholar_id'], '_cMw1IUAAAAJ')
self.assertEqual(author['name'], 'Arpita Ghosh')
self.assertEqual(author['affiliation'], 'Cornell University')
def test_search_keyword_empty_keyword(self):
"""
As of 2020-04-30, there are 6 individuals that match the name 'label'
"""
# TODO this seems like undesirable functionality for
# scholarly.search_keyword() with empty string. Surely, no authors
# should be returned. Consider modifying the method itself.
authors = [a for a in scholarly.search_keyword('')]
self.assertGreaterEqual(len(authors), 6)
def test_search_keyword(self):
"""
Test that we can search based on specific keywords
When we search for the keyword "3d shape" the author
Steven A. Cholewiak should be among those listed.
When we search for the keyword "Haptics", Oussama Khatib
should be listed first.
"""
# Example 1
authors = [a['name'] for a in scholarly.search_keyword('3d shape')]
self.assertIsNot(len(authors), 0)
self.assertIn(u'Steven A. Cholewiak, PhD', authors)
# Example 2
expected_author = {'affiliation': 'Stanford University',
'citedby': 43856,
'email_domain': '@cs.stanford.edu',
'filled': [],
'interests': ['Robotics',
'Haptics',
'Human Motion Understanding'],
'name': 'Oussama Khatib',
'scholar_id': '4arkOLcAAAAJ',
'source': 'SEARCH_AUTHOR_SNIPPETS',
'url_picture': 'https://scholar.google.com/citations?view_op=medium_photo&user=4arkOLcAAAAJ'
}
search_query = scholarly.search_keyword('Haptics')
author = next(search_query)
for key in author:
if (key not in {"citedby", "container_type", "interests"}) and (key in expected_author):
self.assertEqual(author[key], expected_author[key])
self.assertEqual(set(author["interests"]), set(expected_author["interests"]))
# Example 3
expected_author = {'affiliation': "CEA, Département d'Astrophysique",
'citedby': 98936,
'email_domain': '@cea.fr',
'filled': [],
'interests': ['Cosmology (CMB',
'weak-lensing',
'large scale structure)',
'Statistics',
'Image Processing'],
'name': 'Jean-Luc Starck',
'scholar_id': 'IAaAiXgAAAAJ',
'source': 'SEARCH_AUTHOR_SNIPPETS',
'url_picture': 'https://scholar.google.com/citations?view_op=medium_photo&user=IAaAiXgAAAAJ'
}
search_query = scholarly.search_keyword('large-scale structure')
author = next(search_query)
for key in author:
if (key not in {"citedby", "container_type", "interests"}) and (key in expected_author):
self.assertEqual(author[key], expected_author[key])
scholarly.pprint(author)
self.assertEqual(set(author["interests"]), set(expected_author["interests"]))
def test_search_author_single_author(self):
query = 'Steven A. Cholewiak'
authors = [a for a in scholarly.search_author(query)]
self.assertGreaterEqual(len(authors), 1)
author = scholarly.fill(authors[0])
self.assertEqual(author['name'], u'Steven A. Cholewiak, PhD')
self.assertEqual(author['scholar_id'], u'4bahYMkAAAAJ')
self.assertEqual(author['homepage'], "http://steven.cholewiak.com/")
self.assertEqual(author['organization'], 6518679690484165796)
self.assertGreaterEqual(author['public_access']['available'], 10)
self.assertEqual(author['public_access']['available'],
sum(pub.get('public_access', None) is True for pub in author['publications']))
self.assertEqual(author['public_access']['not_available'],
sum(pub.get('public_access', None) is False for pub in author['publications']))
pub = author['publications'][2]
self.assertEqual(pub['author_pub_id'], u'4bahYMkAAAAJ:LI9QrySNdTsC')
self.assertTrue('5738786554683183717' in pub['cites_id'])
scholarly.fill(pub)
mandate = Mandate(agency="US National Science Foundation", effective_date="2016/1", embargo="12 months",
url_policy="https://www.nsf.gov/pubs/2015/nsf15052/nsf15052.pdf",
url_policy_cached="/mandates/nsf-2021-02-13.pdf",
grant="BCS-1354029")
self.assertIn(mandate, pub['mandates'])
# Trigger the pprint method, but suppress the output
with self.suppress_stdout():
scholarly.pprint(author)
scholarly.pprint(pub)
# Check for the complete list of coauthors
self.assertGreaterEqual(len(author['coauthors']), 20)
if len(author['coauthors']) > 20:
self.assertGreaterEqual(len(author['coauthors']), 36)
self.assertTrue('I23YUh8AAAAJ' in [_coauth['scholar_id'] for _coauth in author['coauthors']])
def test_search_author_multiple_authors(self):
"""
As of May 12, 2020 there are at least 24 'Cattanis's listed as authors
and Giordano Cattani is one of them
"""
authors = [a['name'] for a in scholarly.search_author('cattani')]
self.assertGreaterEqual(len(authors), 24)
self.assertIn(u'Giordano Cattani', authors)
def test_search_author_id(self):
"""
Test the search by author ID. Marie Skłodowska-Curie's ID is
EmD_lTEAAAAJ and these IDs are permenant
"""
author = scholarly.search_author_id('EmD_lTEAAAAJ')
self.assertEqual(author['name'], u'Marie Skłodowska-Curie')
self.assertEqual(author['affiliation'],
u'Institut du radium, University of Paris')
def test_search_author_id_filled(self):
"""
Test the search by author ID. Marie Skłodowska-Curie's ID is
EmD_lTEAAAAJ and these IDs are permenant.
As of July 2020, Marie Skłodowska-Curie has 1963 citations
on Google Scholar and 179 publications
"""
author = scholarly.search_author_id('EmD_lTEAAAAJ', filled=True)
self.assertEqual(author['name'], u'Marie Skłodowska-Curie')
self.assertEqual(author['affiliation'],
u'Institut du radium, University of Paris')
self.assertEqual(author['interests'], [])
self.assertEqual(author['public_access']['available'], 0)
self.assertEqual(author['public_access']['not_available'], 0)
self.assertGreaterEqual(author['citedby'], 2090)
self.assertGreaterEqual(len(author['publications']), 218)
cpy = {1986:4, 2011: 137, 2018: 100}
for year, count in cpy.items():
self.assertEqual(author["cites_per_year"][year], count)
pub = author['publications'][1]
self.assertEqual(pub["citedby_url"],
"https://scholar.google.com/scholar?oi=bibs&hl=en&cites=9976400141451962702")
def test_extract_author_id_list(self):
'''
This unit test tests the extraction of the author id field from the html to populate the `author_id` field
in the Publication object.
'''
author_html_full = '<a href="/citations?user=4bahYMkAAAAJ&hl=en&oi=sra">SA Cholewiak</a>, <a href="/citations?user=3xJXtlwAAAAJ&hl=en&oi=sra">GD Love</a>, <a href="/citations?user=Smr99uEAAAAJ&hl=en&oi=sra">MS Banks</a> - Journal of vision, 2018 - jov.arvojournals.org'
pub_parser = PublicationParser(None)
author_id_list = pub_parser._get_author_id_list(author_html_full)
self.assertTrue(author_id_list[0] == '4bahYMkAAAAJ')
self.assertTrue(author_id_list[1] == '3xJXtlwAAAAJ')
self.assertTrue(author_id_list[2] == 'Smr99uEAAAAJ')
author_html_partial = "A Bateman, J O'Connell, N Lorenzini, <a href=\"/citations?user=TEndP-sAAAAJ&hl=en&oi=sra\">T Gardner</a>… - BMC psychiatry, 2016 - Springer"
pub_parser = PublicationParser(None)
author_id_list = pub_parser._get_author_id_list(author_html_partial)
self.assertTrue(author_id_list[3] == 'TEndP-sAAAAJ')
def test_serialiazation(self):
"""
Test that we can serialize the Author and Publication types
Note: JSON converts integer keys to strings, resulting in the years
in `cites_per_year` dictionary as `str` type instead of `int`.
To ensure consistency with the typing, use `object_hook` option
when loading to convert the keys to integers.
"""
# Test that a filled Author with unfilled Publication
# is serializable.
def cpy_decoder(di):
"""A utility function to convert the keys in `cites_per_year` to `int` type.
This ensures consistency with `CitesPerYear` typing.
"""
if "cites_per_year" in di:
di["cites_per_year"] = {int(k): v for k,v in di["cites_per_year"].items()}
return di
author = scholarly.search_author_id('EmD_lTEAAAAJ', filled=True)
serialized = json.dumps(author)
author_loaded = json.loads(serialized, object_hook=cpy_decoder)
self.assertEqual(author, author_loaded)
# Test that a loaded publication is still fillable and serializable.
pub = author_loaded['publications'][0]
scholarly.fill(pub)
serialized = json.dumps(pub)
pub_loaded = json.loads(serialized, object_hook=cpy_decoder)
self.assertEqual(pub, pub_loaded)
def test_full_title(self):
"""
Test if the full title of a long title-publication gets retrieved.
The code under test gets executed if:
publication['source'] == PublicationSource.AUTHOR_PUBLICATION_ENTRY
so the long title-publication is taken from an author object.
"""
author = scholarly.search_author_id('Xxjj6IsAAAAJ')
author = scholarly.fill(author, sections=['publications'])
pub_index = -1
# Skip this part of the test since u_35RYKgDlwC has vanished from Google Scholar
if False:
for i in range(len(author['publications'])):
if author['publications'][i]['author_pub_id'] == 'Xxjj6IsAAAAJ:u_35RYKgDlwC':
pub_index = i
self.assertGreaterEqual(i, 0)
# elided title
self.assertEqual(author['publications'][pub_index]['bib']['title'],
u'Evaluation of toxicity of Dichlorvos (Nuvan) to fresh water fish Anabas testudineus and possible modulation by crude aqueous extract of Andrographis paniculata: A preliminary …')
# full text
pub = scholarly.fill(author['publications'][pub_index])
self.assertEqual(pub['bib']['title'],
u'Evaluation of toxicity of Dichlorvos (Nuvan) to fresh water fish Anabas testudineus and possible modulation by crude aqueous extract of Andrographis paniculata: A preliminary investigation')
self.assertEqual(pub['bib']['citation'], "")
for i in range(len(author['publications'])):
if author['publications'][i]['author_pub_id'] == 'Xxjj6IsAAAAJ:ldfaerwXgEUC':
pub_index = i
self.assertGreaterEqual(i, 0)
# elided title
self.assertEqual(author['publications'][pub_index]['bib']['title'],
u'Evaluation of toxicity of Dichlorvos (Nuvan) to fresh water fish Anabas testudineus and possible modulation by crude aqueous extract of Andrographis paniculata: A preliminary …')
# full text
pub = scholarly.fill(author['publications'][pub_index])
self.assertEqual(pub['bib']['title'],
u'Evaluation of toxicity of Dichlorvos (Nuvan) to fresh water fish Anabas testudineus and possible modulation by crude aqueous extract of Andrographis paniculata: A preliminary …')
self.assertEqual(pub['bib']['citation'], "Journal of Fisheries and Life Sciences 5 (2), 74-84, 2020")
def test_author_organization(self):
"""
"""
organization_id = 4836318610601440500 # Princeton University
organizations = scholarly.search_org("Princeton University")
self.assertEqual(len(organizations), 1)
organization = organizations[0]
self.assertEqual(organization['Organization'], "Princeton University")
self.assertEqual(organization['id'], str(organization_id))
search_query = scholarly.search_author_by_organization(organization_id)
author = next(search_query)
self.assertEqual(author['scholar_id'], "ImhakoAAAAAJ")
self.assertEqual(author['name'], "Daniel Kahneman")
self.assertEqual(author['email_domain'], "@princeton.edu")
self.assertEqual(author['affiliation'], "Princeton University (Emeritus)")
self.assertGreaterEqual(author['citedby'], 438891)
def test_coauthors(self):
"""
Test that we can fetch long (20+) and short list of coauthors
"""
author = scholarly.search_author_id('7Jl3PIoAAAAJ')
scholarly.fill(author, sections=['basics', 'coauthors'])
self.assertEqual(author['name'], "Victor Silva")
self.assertLessEqual(len(author['coauthors']), 20)
# If the above assertion fails, pick a different author profile
self.assertGreaterEqual(len(author['coauthors']), 6)
self.assertIn('Eleni Stroulia', [_coauth['name'] for _coauth in author['coauthors']])
self.assertIn('TyM1dLwAAAAJ', [_coauth['scholar_id'] for _coauth in author['coauthors']])
# Fill co-authors
for _coauth in author['coauthors']:
scholarly.fill(_coauth, sections=['basics'])
self.assertIn(16627554827500071773, [_coauth.get('organization', None) for _coauth in author['coauthors']])
author = scholarly.search_author_id('PA9La6oAAAAJ')
scholarly.fill(author, sections=['basics', 'coauthors'])
self.assertEqual(author['name'], "Panos Ipeirotis")
self.assertGreaterEqual(len(author['coauthors']), 66)
# Break the build if the long list cannot be fetched.
self.assertIn('Eduardo Ruiz', [_coauth['name'] for _coauth in author['coauthors']])
self.assertIn('hWq7jFQAAAAJ', [_coauth['scholar_id'] for _coauth in author['coauthors']])
def test_public_access(self):
"""
Test that we obtain public access information
We check two cases: 1) when number of public access mandates exceeds
100, thus requiring fetching information from a second page and 2) fill
public access counts without fetching publications.
"""
author = scholarly.search_author_id("f4KlrXIAAAAJ")
scholarly.fill(author, sections=['basics', 'public_access', 'publications'])
self.assertGreaterEqual(author["public_access"]["available"], 1150)
self.assertEqual(author["public_access"]["available"],
sum(pub.get("public_access", None) is True for pub in author["publications"]))
self.assertEqual(author["public_access"]["not_available"],
sum(pub.get("public_access", None) is False for pub in author["publications"]))
author = next(scholarly.search_author("Daniel Kahneman"))
self.assertEqual(author["scholar_id"], "ImhakoAAAAAJ")
self.assertEqual(author["interests"], [])
scholarly.fill(author, sections=["public_access"])
self.assertGreaterEqual(author["public_access"]["available"], 5)
def test_mandates(self):
"""
Test that we can fetch the funding information of a paper from an author
"""
author = scholarly.search_author_id("kUDCLXAAAAAJ")
scholarly.fill(author, sections=['public_access', 'publications'])
for pub in author['publications']:
if pub['author_pub_id'] == "kUDCLXAAAAAJ:tzM49s52ZIMC":
scholarly.fill(pub)
break
# The hard-coded reference mandate may need regular updates.
mandate = Mandate(agency="European Commission", effective_date="2013/12", embargo="6 months", grant="647112",
url_policy="https://erc.europa.eu/sites/default/files/document/file/ERC%20Open%20Access%20guidelines-Version%201.1._10.04.2017.pdf",
url_policy_cached="/mandates/horizon2020_eu-2021-02-13-en.pdf",
)
self.assertIn(mandate, pub['mandates'])
def test_author_custom_url(self):
"""
Test that we can use custom URLs for retrieving author data
"""
query_url = "/citations?hl=en&view_op=search_authors&mauthors=label%3A3d_shape"
authors = scholarly.search_author_custom_url(query_url)
self.assertIn(u'Steven A. Cholewiak, PhD', [author['name'] for author in authors])
@unittest.skipIf(sys.platform.startswith("win"), reason="File read is empty in Windows")
def test_download_mandates_csv(self):
"""
Test that we can download the mandates CSV and read it.
"""
if not os.path.exists(self.mandates_filename):
text = scholarly.download_mandates_csv(self.mandates_filename)
self.assertGreater(len(text), 0)
funder, policy, percentage2020, percentageOverall = [], [], [], []
with open(self.mandates_filename, "r") as f:
csv_reader = csv.DictReader(f)
for row in csv_reader:
funder.append(row['\ufeffFunder'])
policy.append(row['Policy'])
percentage2020.append(row['2020'])
percentageOverall.append(row['Overall'])
agency_policy = {
"US National Science Foundation": "https://www.nsf.gov/pubs/2015/nsf15052/nsf15052.pdf",
"Department of Science & Technology, India": "http://www.dst.gov.in/sites/default/files/APPROVED%20OPEN%20ACCESS%20POLICY-DBT%26DST%2812.12.2014%29_1.pdf",
"Swedish Research Council": "https://www.vr.se/english/applying-for-funding/requirements-terms-and-conditions/publishing-open-access.html",
"Swedish Research Council for Environment, Agricultural Sciences and Spatial Planning": ""
}
agency_2020 = {
"US National Science Foundation": "87%",
"Department of Science & Technology, India": "49%",
"Swedish Research Council": "89%",
"Swedish Research Council for Environment, Agricultural Sciences and Spatial Planning": "88%"
}
response = requests.get("https://scholar.google.com/citations?view_op=mandates_leaderboard&hl=en")
soup = BeautifulSoup(response.text, "html.parser")
agency_overall = soup.find_all("td", class_="gsc_mlt_n gsc_mlt_bd")
# These hardcoded numbers need some regular updates.
for agency, index in zip(agency_policy, [5-1,9-1, 21-1, 63-1]):
agency_index = funder.index(agency)
self.assertEqual(policy[agency_index], agency_policy[agency])
# Check that the percentage values from CSV and on the page agree.
self.assertEqual(percentageOverall[agency_index], agency_overall[index].text)
# The percentage fluctuates, so we can't check the exact value.
self.assertAlmostEqual(int(percentage2020[agency_index][:-1]), int(agency_2020[agency][:-1]), delta=2)
@unittest.skipIf(sys.platform.startswith("win"), reason="File read is empty in Windows")
@unittest.skipIf(pd is None, reason="pandas is not installed")
def test_download_mandates_csv_with_pandas(self):
"""
Test that we can use pandas to read the CSV file
"""
if not os.path.exists(self.mandates_filename):
text = scholarly.download_mandates_csv(self.mandates_filename)
self.assertGreater(len(text), 0)
df = pd.read_csv(self.mandates_filename, usecols=["Funder", "Policy", "2020", "Overall"]).fillna("")
self.assertGreater(len(df), 0)
funders = ["US National Science Foundation",
"Department of Science & Technology, India",
"Swedish Research Council",
"Swedish Research Council for Environment, Agricultural Sciences and Spatial Planning"
]
policies = ["https://www.nsf.gov/pubs/2015/nsf15052/nsf15052.pdf",
"http://www.dst.gov.in/sites/default/files/APPROVED%20OPEN%20ACCESS%20POLICY-DBT%26DST%2812.12.2014%29_1.pdf",
"https://www.vr.se/english/applying-for-funding/requirements-terms-and-conditions/publishing-open-access.html",
""
]
percentage_overall = [84, 54, 83, 83]
percentage_2020 = [87, 49, 89, 88]
rows = df["Funder"].isin(funders)
self.assertEqual(rows.sum(), 4)
self.assertEqual(df["Policy"][rows].tolist(), policies)
df_overall = df["Overall"][rows].tolist()
df_2020 = df["2020"][rows].tolist()
for idx in range(4):
self.assertAlmostEqual(int(df_overall[idx][:-1]), percentage_overall[idx], delta=2)
self.assertAlmostEqual(int(df_2020[idx][:-1]), percentage_2020[idx], delta=2)
def test_save_journal_leaderboard(self):
"""
Test that we can save the journal leaderboard to a file
"""
filename = "journals.csv"
while os.path.exists(filename):
filename = ''.join(random.choices('abcdefghijklmnopqrstuvwxyz', k=10)) + ".csv"
try:
scholarly.save_journals_csv(category="Physics & Mathematics", subcategory="Astronomy & Astrophysics",
filename=filename, include_comments=True)
with open(filename, "r") as f:
csv_reader = csv.DictReader(f)
for row in csv_reader:
# These hard-coded values need regular updates.
self.assertEqual(row['Publication'], 'The Astrophysical Journal')
self.assertEqual(row['h5-index'], '167')
self.assertEqual(row['h5-median'], '234')
self.assertEqual(row['Comment'], '#1 Astronomy & Astrophysics; #2 Physics & Mathematics; ')
break
finally:
if os.path.exists(filename):
os.remove(filename)
def test_bin_citations_by_year(self):
"""Test an internal optimization function to bin cites_per_year
while keeping the citation counts less than 1000 per bin.
"""
cpy = {2022: 490, 2021: 340, 2020:327, 2019:298, 2018: 115, 2017: 49, 2016: 20, 2015: 8, 2014: 3, 2013: 1, 2012: 1}
years = scholarly._bin_citations_by_year(cpy, 2022)
for y_hi, y_lo in years:
self.assertLessEqual(y_lo, y_hi)
self.assertLessEqual(sum(cpy[y] for y in range(y_lo, y_hi+1)), 1000)
def test_cites_per_year(self):
"""Test that the cites_per_year is correctly filled in,
including any gap years.
"""
author = scholarly.search_author_id('DW_bVcEAAAAJ')
scholarly.fill(author, sections=['counts'])
cpy = {2014: 1, 2015: 2, 2016: 2, 2017: 0, 2018: 2, 2019: 1, 2020: 12, 2021: 21, 2022: 35}
for year, count in cpy.items():
self.assertEqual(author['cites_per_year'][year], count)
def test_redirect(self):
"""Test that we can handle redirects when the scholar_id is approximate.
"""
author = scholarly.search_author_id("oMaIg8sAAAAJ")
self.assertEqual(author["scholar_id"], "PEJ42J0AAAAJ")
scholarly.fill(author, sections=["basics"])
self.assertEqual(author["name"], "Kiran Bhatia")
self.assertGreaterEqual(author["citedby"], 135)
class TestScholarlyWithProxy(unittest.TestCase):
@classmethod
def setUpClass(cls):
"""
Setup the proxy methods for unit tests
"""
scholarly.set_timeout(5)
scholarly.set_retries(5)
if "CONNECTION_METHOD" in scholarly.env:
cls.connection_method = os.getenv("CONNECTION_METHOD")
else:
cls.connection_method = "none"
scholarly.use_proxy(None)
return
# Use dual proxies for unit testing
secondary_proxy_generator = ProxyGenerator()
secondary_proxy_generator.FreeProxies()
proxy_generator = ProxyGenerator()
if cls.connection_method == "tor":
tor_password = "scholarly_password"
# Tor uses the 9050 port as the default socks port
# on windows 9150 for socks and 9151 for control
if sys.platform.startswith("linux") or sys.platform.startswith("darwin"):
tor_sock_port = 9050
tor_control_port = 9051
elif sys.platform.startswith("win"):
tor_sock_port = 9150
tor_control_port = 9151
else:
tor_sock_port = None
tor_control_port = None
proxy_generator.Tor_External(tor_sock_port, tor_control_port,
tor_password)
elif cls.connection_method == "tor_internal":
if sys.platform.startswith("linux") or sys.platform.startswith("darwin"):
tor_cmd = 'tor'
elif sys.platform.startswith("win"):
tor_cmd = 'tor.exe'
else:
tor_cmd = None
proxy_generator.Tor_Internal(tor_cmd = tor_cmd)
elif cls.connection_method == "luminati":
scholarly.set_retries(10)
proxy_generator.Luminati(usr=os.getenv("USERNAME"),
passwd=os.getenv("PASSWORD"),
proxy_port=os.getenv("PORT"))
elif cls.connection_method == "freeproxy":
# Use different instances for primary and secondary
proxy_generator = ProxyGenerator()
proxy_generator.FreeProxies()
elif cls.connection_method == "scraperapi":
proxy_generator.ScraperAPI(os.getenv('SCRAPER_API_KEY'))
else:
scholarly.use_proxy(None)
scholarly.use_proxy(proxy_generator, secondary_proxy_generator)
def test_search_pubs_empty_publication(self):
"""
Test that searching for an empty publication returns zero results
"""
pubs = [p for p in scholarly.search_pubs('')]
self.assertIs(len(pubs), 0)
def test_search_pubs_citedby(self):
"""
Testing that when we retrieve the list of publications that cite
a publication, the number of citing publication is the same as
the number of papers that are returned. We use a publication
with a small number of citations, so that the test runs quickly.
The 'Machine-learned epidemiology' paper had 11 citations as of
June 1, 2020.
"""
query = 'Machine-learned epidemiology: real-time detection of foodborne illness at scale'
pubs = [p for p in scholarly.search_pubs(query)]
self.assertGreaterEqual(len(pubs), 1)
filled = scholarly.fill(pubs[0])
cites = [c for c in scholarly.citedby(filled)]
self.assertEqual(len(cites), filled['num_citations'])
def test_search_pubs_citedby_id(self):
"""
Test querying for citations by paper ID.
The 'Machine-learned epidemiology' paper had 11 citations as of
June 1, 2020.
"""
# Machine-learned epidemiology: real-time detection of foodborne illness at scale
publication_id = 2244396665447968936
pubs = [p for p in scholarly.search_citedby(publication_id)]
self.assertGreaterEqual(len(pubs), 11)
@unittest.skip(reason="The BiBTeX comparison is not reliable")
def test_bibtex(self):
"""
Test that we get the BiBTeX entry correctly
"""
expected_result = \
("""@inproceedings{ester1996density,
abstract = {Clustering algorithms are attractive for the task of class identification in spatial databases. """
"""However, the application to large spatial databases rises the following requirements for clustering algorithms: """
"""minimal requirements of domain knowledge to determine the input},
author = {Ester, Martin and Kriegel, Hans-Peter and Sander, J{\\"o}rg and Xu, Xiaowei and others},
booktitle = {kdd},
number = {34},
pages = {226--231},
pub_year = {1996},
title = {A density-based algorithm for discovering clusters in large spatial databases with noise.},
venue = {kdd},
volume = {96}
}
"""
)
pub = scholarly.search_single_pub("A density-based algorithm for discovering clusters in large "
"spatial databases with noise", filled=True)
result = scholarly.bibtex(pub)
self.assertEqual(result, expected_result.replace("\n ", "\n"))
def test_search_pubs(self):
"""
As of May 12, 2020 there are at least 29 pubs that fit the search term:
["naive physics" stability "3d shape"].
Check that the paper "Visual perception of the physical stability of asymmetric three-dimensional objects"
is among them
"""
pub = scholarly.search_single_pub("naive physics stability 3d shape")
pubs = list(scholarly.search_pubs('"naive physics" stability "3d shape"'))
# Check that the first entry in pubs is the same as pub.
# Checking for quality holds for non-dict entries only.
for key in {'author_id', 'pub_url', 'num_citations'}:
self.assertEqual(pub[key], pubs[0][key])
for key in {'title', 'pub_year', 'venue'}:
self.assertEqual(pub['bib'][key], pubs[0]['bib'][key])
self.assertGreaterEqual(len(pubs), 27)
titles = [p['bib']['title'] for p in pubs]
self.assertIn('Visual perception of the physical stability of asymmetric three-dimensional objects', titles)
def test_search_pubs_total_results(self):
"""
As of September 16, 2021 there are 32 pubs that fit the search term:
["naive physics" stability "3d shape"], and 17'000 results that fit
the search term ["WIEN2k Blaha"] and none for ["sdfsdf+24r+asdfasdf"].
Check that the total results for that search term equals 32.
"""
pubs = scholarly.search_pubs('"naive physics" stability "3d shape"')
self.assertGreaterEqual(pubs.total_results, 32)
pubs = scholarly.search_pubs('WIEN2k Blaha')
self.assertGreaterEqual(pubs.total_results, 10000)
pubs = scholarly.search_pubs('sdfsdf+24r+asdfasdf')
self.assertEqual(pubs.total_results, 0)
def test_search_pubs_filling_publication_contents(self):
'''
This process checks the process of filling a publication that is derived
from the search publication snippets.
'''
query = 'Creating correct blur and its effect on accommodation'
results = scholarly.search_pubs(query)
pubs = [p for p in results]
self.assertGreaterEqual(len(pubs), 1)
f = scholarly.fill(pubs[0])
self.assertTrue(f['bib']['author'] == u'Cholewiak, Steven A and Love, Gordon D and Banks, Martin S')
self.assertTrue(f['author_id'] == ['4bahYMkAAAAJ', '3xJXtlwAAAAJ', 'Smr99uEAAAAJ'])
self.assertTrue(f['bib']['journal'] == u'Journal of Vision')
self.assertTrue(f['bib']['number'] == '9')
self.assertTrue(f['bib']['pages'] == u'1--1')
self.assertTrue(f['bib']['publisher'] == u'The Association for Research in Vision and Ophthalmology')
self.assertTrue(f['bib']['title'] == u'Creating correct blur and its effect on accommodation')
self.assertTrue(f['pub_url'] == u'https://jov.arvojournals.org/article.aspx?articleid=2701817')
self.assertTrue(f['bib']['volume'] == '18')
self.assertTrue(f['bib']['pub_year'] == u'2018')
def test_related_articles_from_author(self):
"""
Test that we obtain related articles to an article from an author
"""
author = scholarly.search_author_id("ImhakoAAAAAJ")
scholarly.fill(author, sections=['basics', 'publications'])
pub = author['publications'][0]
self.assertEqual(pub['bib']['title'], 'Prospect theory: An analysis of decision under risk')
self.assertEqual(pub['bib']['citation'], 'Handbook of the fundamentals of financial decision making: Part I, 99-127, 2013')
related_articles = scholarly.get_related_articles(pub)
# Typically, the same publication is returned as the most related article
same_article = next(related_articles)
self.assertEqual(pub["pub_url"], same_article["pub_url"])
for key in {'title', 'pub_year'}:
self.assertEqual(str(pub['bib'][key]), (same_article['bib'][key]))
# These may change with time
related_article = next(related_articles)
self.assertEqual(related_article['bib']['title'], 'Advances in prospect theory: Cumulative representation of uncertainty')
self.assertEqual(related_article['bib']['pub_year'], '1992')
self.assertGreaterEqual(related_article['num_citations'], 18673)
self.assertIn("A Tversky", related_article['bib']['author'])
def test_related_articles_from_publication(self):
"""
Test that we obtain related articles to an article from a search
"""
pub = scholarly.search_single_pub("Planck 2018 results-VI. Cosmological parameters")
related_articles = scholarly.get_related_articles(pub)
# Typically, the same publication is returned as the most related article
same_article = next(related_articles)
for key in {'author_id', 'pub_url', 'num_citations'}:
self.assertEqual(pub[key], same_article[key])
for key in {'title', 'pub_year'}:
self.assertEqual(pub['bib'][key], same_article['bib'][key])
# These may change with time
related_article = next(related_articles)
self.assertEqual(related_article['bib']['title'], 'Large Magellanic Cloud Cepheid standards provide '
'a 1% foundation for the determination of the Hubble constant and stronger evidence '
'for physics beyond ΛCDM')
self.assertEqual(related_article['bib']['pub_year'], '2019')
self.assertGreaterEqual(related_article['num_citations'], 1388)
self.assertIn("AG Riess", related_article['bib']['author'])
def test_pubs_custom_url(self):
"""
Test that we can use custom URLs for retrieving publication data
"""
query_url = ('/scholar?as_q=&as_epq=&as_oq=SFDI+"modulated+imaging"&as_eq=&as_occt=any&as_sauthors=&'
'as_publication=&as_ylo=2005&as_yhi=2020&hl=en&as_sdt=0%2C31')
pubs = scholarly.search_pubs_custom_url(query_url)
pub = next(pubs)
self.assertEqual(pub['bib']['title'], 'Quantitation and mapping of tissue optical properties using modulated imaging')
self.assertEqual(set(pub['author_id']), {'V-ab9U4AAAAJ', '4k-k6SEAAAAJ', 'GLm-SaQAAAAJ'})
self.assertEqual(pub['bib']['pub_year'], '2009')
self.assertGreaterEqual(pub['num_citations'], 581)
def check_citedby_1k(self, pub):
"""A common checking method to check
"""
original_citation_count = pub["num_citations"]
# Trigger a different code path
if original_citation_count <= 1000:
pub["num_citations"] = 1001
citations = scholarly.citedby(pub)
citation_list = list(citations)
self.assertEqual(len(citation_list), original_citation_count)
return citation_list
def test_citedby_1k_citations(self):
"""Test that scholarly can fetch 1000+ citations from an author
"""
author = scholarly.search_author_id('QoX9bu8AAAAJ')
scholarly.fill(author, sections=['publications'])
pub = [_p for _p in author['publications'] if _p["author_pub_id"]=="QoX9bu8AAAAJ:L8Ckcad2t8MC"][0]
scholarly.fill(pub)
citation_list = self.check_citedby_1k(pub)
yearwise_counter = Counter([c["bib"]["pub_year"] for c in citation_list])
for year, count in pub["cites_per_year"].items():
self.assertEqual(yearwise_counter.get(str(year), 0), count)
def test_citedby_1k_scholar(self):
"""Test that scholarly can fetch 1000+ citations from a pub search.
"""
title = "Persistent entanglement in a class of eigenstates of quantum Heisenberg spin glasses"
pubs = scholarly.search_pubs(title)
pub = next(pubs)
self.check_citedby_1k(pub)
def test_citedby(self):
"""Test that we can search citations of a paper from author's profile.
"""
# Retrieve the author's data, fill-in, and print
search_query = scholarly.search_author('Steven A Cholewiak')
author = scholarly.fill(next(search_query))
pub = scholarly.fill(author['publications'][0])
# Which papers cited that publication?
top10_citations = [citation for num, citation in enumerate(scholarly.citedby(pub)) if num<10]
self.assertEqual(len(top10_citations), 10)
if __name__ == '__main__':
unittest.main()