Fetcher OttoBib#5125
Conversation
|
look at the WebFetchersTest class under |
Hi @Siedlerchr ! Thanks for answering me. I think the problem with WebFetchersTest has been fixed. |
Siedlerchr
left a comment
There was a problem hiding this comment.
Thanks for your contribution , looks good to me know!
Just remove the unused method and add a change log entry, e.g. We improved fetching bibtex data from an ISBN
| } | ||
|
|
||
| @Override | ||
| public void doPostCleanup(BibEntry entry) { |
There was a problem hiding this comment.
You can remove that method if it's not used
There was a problem hiding this comment.
I removed the method I was not using. I'll do the unit test soon.
Siedlerchr
left a comment
There was a problem hiding this comment.
I forgot, please also add a unit test for the new fetcher
Siedlerchr
left a comment
There was a problem hiding this comment.
Thanks for your contribution! Now it's good!
If a second JabRef dev gives his okay, we can merge (Ideally a PR should be always reviewed by at least 2 JabRef devs)
LinusDietz
left a comment
There was a problem hiding this comment.
I have some rather nitpicky, but hopefully useful remarks. Functionality looks good, though. Can be merged after addressing the comments.
|
|
||
| try { | ||
| postResponse = Unirest.post(BASE_URL) | ||
| .asString(); |
There was a problem hiding this comment.
Please put this into the line before
| * @return null, because the identifier is passed using form data. This method is not used. | ||
| */ | ||
| @Override | ||
| public URL getURLForID(String identifier) throws URISyntaxException, MalformedURLException, FetcherException { |
There was a problem hiding this comment.
Please remove these exceptions. They can never be thrown.
There was a problem hiding this comment.
@LinusDietz You are right that those exceptions can never be thrown, but the Exception declaration is coming from the interface IdBasedParserFetcher
There was a problem hiding this comment.
Why is it not possible to implement the ottobib fetcher by properly overwriting getURLForID as e.g here:
I don't really see why the performSearchById has to be overwritten (which is more work as you have to manually post the request and parse the response).
|
|
||
| HttpResponse<String> postResponse; | ||
|
|
||
| String BASE_URL = "https://www.ottobib.com/isbn/" + identifier + "/bibtex"; |
There was a problem hiding this comment.
I would propose to make BASE_URL final.
Also, I would prefer a String.format(): String.format("https://www.ottobib.com/isbn/%s/bibtex", identifier);
| public class IsbnViaOttoBibFetcherTest extends AbstractIsbnFetcherTest { | ||
|
|
||
| @BeforeEach | ||
| public void setUp() { |
There was a problem hiding this comment.
I would suggest to convert this into a static method createSampleBibEntry(). See Java by Comparison, "Favor Standalone Tests".
| bibEntry.setField("isbn", "978-2-8195-02746"); | ||
| bibEntry.setField("url", "https://www.ottobib.com/isbn/9782819502746/bibtex"); | ||
|
|
||
| fetcher = new IsbnViaOttoBibFetcher(mock(ImportFormatPreferences.class, Answers.RETURNS_DEEP_STUBS)); |
There was a problem hiding this comment.
Move fetcher into the respective tests to adhere to the 'given-then-when' structure of tests.
There was a problem hiding this comment.
Just out of interest to learn something, but doesn't this give (needless ?) code duplication especially since all tests are of the form "for-input-x-verify-output-y". If the state of the fetcher needs to be varied then a test of the form
@Test
public void test() throws FetcherException {
fetcher.setSomething(value);
Entry fetchedEntry = fetcher.fetch(input);
assertEquals(expected, fetchedEntry);
}still perfectly adheres to the usual test pattern.
Fetcher does not return bibtex data in plain text, instead it's part of an html text area Fix ISBN tests Update user agent Follow up from #5125
|
Superseeded by #5196 |
a20406d Added name of the editors of a given edition (#5140) 9881fc5 Ping on push, not PR, document role of dist-updater (#5137) 04668cc Create nouvelles-perspectives-en-sciences-sociales.csl (#5063) 1d94e21 Update bursa-uludag-universitesi-saglik-bilimleri-enstitusu.csl (#5047) 84f3893 Add Harvard style for Metropolia University of Applied Sciences (#5086) 8e43e79 Create opto-electronic-advances.csl (#5135) 36e4fba Update society-for-american-archaeology.csl (#5124) 69ca360 St. Paul Canon Law new style (#5138) b490ab0 Update and rename st-paul-university-faculty-of-canon-law.csl to saint-paul-university-faculty-of-canon-law.csl b498116 There is no en-CA locale 3c35f28 Metadata 7059cca Create tu-dortmund-agvm.csl (#5088) c321c98 Create new Citation type (#5093) a7edc8d Update international-organization.csl (#5103) 3d1a052 The AWS load balancer is messing things up (#5133) ca3839b Fix sort by a single macro (#5136) 5d1a7e8 Update chungara-revista-de-antropologia-chilena.csl (#5123) cd75d5d ping distribution-updater (#5132) dcf473a Update wirtschaftsuniversitat-wien-health-care-management.csl (#5125) a87085e Fix Harvard Praxisforschung Editors (#5130) d4176ca Switch automated tests to Github Actions (#5111) 726d0d8 Radiology, MPP, CORR -- small fixes: https://forums.zotero.org/discussion/85883/doi-radiology#latest https://forums.zotero.org/discussion/51058/style-request-molecular-plant-pathology#latest https://forums.zotero.org/discussion/85678/citing-style-clinical-orthopaedics-and-related-research#latest e23db68 Update to la-trobe-university-harvard style (#5119) c54b278 Create wirtschaftsuniversitat-wien-health-care-management.csl (#5110) 62fb019 Create austral-entomology.csl (#5118) afa328c Update iso690-author-date-en.csl (#5113) 5468dce Update iso690-author-date-fr-no-abstract.csl (#5112) 98af86c Update iso690-numeric-fr.csl (#5115) 09f84c4 Update iso690-author-date-fr.csl (#5114) 178a9e4 Fix current biology to superscript 1fa5ce7 Create droit-belge-centre-de-droit-prive-ulb.csl (#5107) 3a6a4bc Fix file modes (#5106) 48f50e5 Create chungara-revista-de-antropologia-chilena.csl (#5096) 1e848f8 Create the-journal-of-the-indian-law-institute.csl (#5100) 856524c Create molecular-biology.csl (#5101) eeebbf4 Create harvard-harper-adams-university.csl (#5104) d90993d Fix tests d4037bf WIP: St Paul Canon Law style git-subtree-dir: src/main/resources/csl-styles git-subtree-split: a20406d
I developed the fetcher to use ottobib, then after it try the ebook.de and chimbori.com is made the requisition for ottobib. #2581