use of org.jabref.model.cleanup.FieldFormatterCleanups in project jabref by JabRef.
the class CleanupWorkerTest method cleanupPageNumbersConvertsSingleDashToDouble.
@Test
public void cleanupPageNumbersConvertsSingleDashToDouble() {
CleanupPreset preset = new CleanupPreset(new FieldFormatterCleanups(true, Collections.singletonList(new FieldFormatterCleanup("pages", new NormalizePagesFormatter()))));
BibEntry entry = new BibEntry();
entry.setField("pages", "1-2");
worker.cleanup(preset, entry);
Assert.assertEquals(Optional.of("1--2"), entry.getField("pages"));
}
use of org.jabref.model.cleanup.FieldFormatterCleanups in project jabref by JabRef.
the class CleanupWorkerTest method cleanupLatexMergesTwoLatexMathEnvironments.
@Test
public void cleanupLatexMergesTwoLatexMathEnvironments() {
CleanupPreset preset = new CleanupPreset(new FieldFormatterCleanups(true, Collections.singletonList(new FieldFormatterCleanup("title", new LatexCleanupFormatter()))));
BibEntry entry = new BibEntry();
entry.setField("title", "$\\alpha$$\\beta$");
worker.cleanup(preset, entry);
Assert.assertEquals(Optional.of("$\\alpha\\beta$"), entry.getField("title"));
}
use of org.jabref.model.cleanup.FieldFormatterCleanups in project jabref by JabRef.
the class FieldFormatterCleanupsTest method checkSimpleUseCase.
@Test
public void checkSimpleUseCase() {
FieldFormatterCleanups actions = new FieldFormatterCleanups(true, Cleanups.parse("title[identity]"));
FieldFormatterCleanup identityInTitle = new FieldFormatterCleanup("title", new IdentityFormatter());
assertEquals(Collections.singletonList(identityInTitle), actions.getConfiguredActions());
actions.applySaveActions(entry);
assertEquals(Optional.of("Educational session 1"), entry.getField("title"));
}
use of org.jabref.model.cleanup.FieldFormatterCleanups in project jabref by JabRef.
the class FieldFormatterCleanupsTest method invalidSaveActionSting.
@Test
public void invalidSaveActionSting() {
FieldFormatterCleanups actions = new FieldFormatterCleanups(true, Cleanups.parse("title"));
assertEquals(Collections.emptyList(), actions.getConfiguredActions());
actions.applySaveActions(entry);
assertEquals(Optional.of("Educational session 1"), entry.getField("title"));
}
use of org.jabref.model.cleanup.FieldFormatterCleanups in project jabref by JabRef.
the class FieldFormatterCleanupsTest method checkTwoSaveActionsForOneField.
@Test
public void checkTwoSaveActionsForOneField() {
FieldFormatterCleanups actions = new FieldFormatterCleanups(true, Cleanups.parse("title[lower_case,identity]"));
FieldFormatterCleanup lowerCaseTitle = new FieldFormatterCleanup("title", new LowerCaseFormatter());
FieldFormatterCleanup identityInTitle = new FieldFormatterCleanup("title", new IdentityFormatter());
assertEquals(Arrays.asList(lowerCaseTitle, identityInTitle), actions.getConfiguredActions());
actions.applySaveActions(entry);
assertEquals(Optional.of("educational session 1"), entry.getField("title"));
}
Aggregations