Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve page checker #4498

Merged
merged 1 commit into from
Nov 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
- We fixed an issue where the custom file column were sorted incorrectly. https://github.com/JabRef/jabref/issues/3119
- We fixed an issues where the entry losses focus when a field is edited and at the same time used for sorting. https://github.com/JabRef/jabref/issues/3373
- We fixed an issue where the menu on Mac OS was not displayed in the usual Mac-specific way. https://github.com/JabRef/jabref/issues/3146
- We improved the integrity check for page numbers. [#4113](https://github.com/JabRef/jabref/issues/4113) and [feature request in the forum](http://discourse.jabref.org/t/pages-field-allow-use-of-en-dash/1199)
- We fixed an issue where the order of fields in customized entry types was not saved correctly. [#4033](http://github.com/JabRef/jabref/issues/4033)
- We fixed an issue where the groups tree of the last database was still shown even after the database was already closed.
- We fixed an issue where the "Open file dialog" may disappear behind other windows. https://github.com/JabRef/jabref/issues/3410
Expand Down
42 changes: 22 additions & 20 deletions src/main/java/org/jabref/logic/integrity/PagesChecker.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,29 @@

public class PagesChecker implements ValueChecker {

private static final String PAGES_EXP_BIBTEX = "" + "\\A" // begin String
+ "\\d+" // number
+ "(?:" // non-capture group
+ "\\+|\\-{2}\\d+" // + or --number (range)
+ ")?" // optional group
+ "(?:" // non-capture group
+ "," // comma
+ "\\d+(?:\\+|\\-{2}\\d+)?" // repeat former pattern
+ ")*" // repeat group 0,*
+ "\\z"; // end String
private static final String PAGES_EXP_BIBTEX = ""
+ "\\A" // begin String
+ "("
+ "[A-Za-z]?\\d*" // optional prefix and number
+ "("
+ "\\+|-{2}" // separator
+ "[A-Za-z]?\\d*" // optional prefix and number
+ ")?"
+ ",?" // page range separation
+ ")*"
+ "\\z"; // end String

private static final String PAGES_EXP_BIBLATEX = "" + "\\A" // begin String
+ "\\d+" // number
+ "(?:" // non-capture group
+ "\\+|\\-{1,2}\\d+" // + or --number (range)
+ ")?" // optional group
+ "(?:" // non-capture group
+ "," // comma
+ "\\d+(?:\\+|\\-{1,2}\\d+)?" // repeat former pattern
+ ")*" // repeat group 0,*
+ "\\z"; // end String
private static final String PAGES_EXP_BIBLATEX = ""
+ "\\A" // begin String
+ "("
+ "[A-Za-z]?\\d*" // optional prefix and number
+ "("
+ "\\+|-{1,2}|\u2013" // separator
+ "[A-Za-z]?\\d*" // optional prefix and number
+ ")?"
+ ",?" // page range separation
+ ")*"
+ "\\z"; // end String

private final Predicate<String> isValidPageNumber;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
package org.jabref.logic.integrity;

import java.util.Optional;

import org.jabref.model.database.BibDatabaseContext;
import org.jabref.model.database.BibDatabaseMode;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

class PagesCheckerBibLatexTest {

private PagesChecker checker;

@BeforeEach
void setUp() {
BibDatabaseContext database = new BibDatabaseContext();
database.setMode(BibDatabaseMode.BIBLATEX);
checker = new PagesChecker(database);
}

@Test
void acceptsSinglePage() {
assertEquals(Optional.empty(), checker.checkValue("12"));
}

@Test
void acceptsSinglePageRange() {
assertEquals(Optional.empty(), checker.checkValue("12-15"));
}

@Test
void acceptsSinglePageRangeWithDoubleDashes() {
assertEquals(Optional.empty(), checker.checkValue("12--15"));
}

@Test
void acceptsSinglePageRangeWithEnDashes() {
assertEquals(Optional.empty(), checker.checkValue("12–15"));
}

@Test
void acceptsSinglePageRangeWithPagePrefix() {
assertEquals(Optional.empty(), checker.checkValue("R795--R804"));
}

@Test
void acceptsMultiplePageRange() {
assertEquals(Optional.empty(), checker.checkValue("12-15,18-29"));
}

@Test
void acceptsOpenEndPageRange() {
assertEquals(Optional.empty(), checker.checkValue("-15"));
}

@Test
void acceptsOpenStartPageRange() {
assertEquals(Optional.empty(), checker.checkValue("12-"));
}

@Test
void complainsAboutPPrefix() {
assertEquals(Optional.of("should contain a valid page number range"), checker.checkValue("p. 12"));
}

@Test
void complainsAboutPPPrefix() {
assertEquals(Optional.of("should contain a valid page number range"), checker.checkValue("pp. 12-15"));
}
}