mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
# Description of Changes Please provide a summary of the changes, including: Refactor test imports and update Gradle file to include all Java files from the src directory --- ## Checklist ### General - [x] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [x] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToAddNewLanguage.md) (if applicable) - [x] I have performed a self-review of my own code - [x] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/DeveloperGuide.md#6-testing) for more details.
158 lines
5.5 KiB
Java
158 lines
5.5 KiB
Java
package stirling.software.SPDF.utils;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
|
import java.util.List;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class GeneralUtilsTest {
|
|
|
|
@Test
|
|
void testParsePageListWithAll() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"all"}, 5, false);
|
|
assertEquals(List.of(0, 1, 2, 3, 4), result, "'All' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void testParsePageListWithAllOneBased() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"all"}, 5, true);
|
|
assertEquals(List.of(1, 2, 3, 4, 5), result, "'All' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void nFunc() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"n"}, 5, true);
|
|
assertEquals(List.of(1, 2, 3, 4, 5), result, "'n' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void nFuncAdvanced() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"4n"}, 9, true);
|
|
// skip 0 as not valid
|
|
assertEquals(List.of(4, 8), result, "'All' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void nFuncAdvancedZero() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"4n"}, 9, false);
|
|
// skip 0 as not valid
|
|
assertEquals(List.of(3, 7), result, "'All' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void nFuncAdvanced2() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"4n-1"}, 9, true);
|
|
// skip -1 as not valid
|
|
assertEquals(List.of(3, 7), result, "4n-1 should do (0-1), (4-1), (8-1)");
|
|
}
|
|
|
|
@Test
|
|
void nFuncAdvanced3() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"4n+1"}, 9, true);
|
|
assertEquals(List.of(5, 9), result, "'All' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void nFunc_spaces() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"n + 1"}, 9, true);
|
|
assertEquals(List.of(2, 3, 4, 5, 6, 7, 8, 9), result);
|
|
}
|
|
|
|
@Test
|
|
void nFunc_consecutive_Ns_nnn() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"nnn"}, 9, true);
|
|
assertEquals(List.of(1, 8), result);
|
|
}
|
|
|
|
@Test
|
|
void nFunc_consecutive_Ns_nn() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"nn"}, 9, true);
|
|
assertEquals(List.of(1, 4, 9), result);
|
|
}
|
|
|
|
@Test
|
|
void nFunc_opening_closing_round_brackets() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"(n-1)(n-2)"}, 9, true);
|
|
assertEquals(List.of(2, 6), result);
|
|
}
|
|
|
|
@Test
|
|
void nFunc_opening_round_brackets() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"2(n-1)"}, 9, true);
|
|
assertEquals(List.of(2, 4, 6, 8), result);
|
|
}
|
|
|
|
@Test
|
|
void nFunc_opening_round_brackets_n() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"n(n-1)"}, 9, true);
|
|
assertEquals(List.of(2, 6), result);
|
|
}
|
|
|
|
@Test
|
|
void nFunc_closing_round_brackets() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"(n-1)2"}, 9, true);
|
|
assertEquals(List.of(2, 4, 6, 8), result);
|
|
}
|
|
|
|
@Test
|
|
void nFunc_closing_round_brackets_n() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"(n-1)n"}, 9, true);
|
|
assertEquals(List.of(2, 6), result);
|
|
}
|
|
|
|
@Test
|
|
void nFunc_function_surrounded_with_brackets() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"(n-1)"}, 9, true);
|
|
assertEquals(List.of(1, 2, 3, 4, 5, 6, 7, 8), result);
|
|
}
|
|
|
|
@Test
|
|
void nFuncAdvanced4() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"3+2n"}, 9, true);
|
|
assertEquals(List.of(5, 7, 9), result, "'All' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void nFuncAdvancedZerobased() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"4n"}, 9, false);
|
|
assertEquals(List.of(3, 7), result, "'All' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void nFuncAdvanced2Zerobased() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"4n-1"}, 9, false);
|
|
assertEquals(List.of(2, 6), result, "'All' keyword should return all pages.");
|
|
}
|
|
|
|
@Test
|
|
void testParsePageListWithRangeOneBasedOutput() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"1-3"}, 5, true);
|
|
assertEquals(List.of(1, 2, 3), result, "Range should be parsed correctly.");
|
|
}
|
|
|
|
@Test
|
|
void testParsePageListWithRangeZeroBaseOutput() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"1-3"}, 5, false);
|
|
assertEquals(List.of(0, 1, 2), result, "Range should be parsed correctly.");
|
|
}
|
|
|
|
@Test
|
|
void testParsePageListWithRangeOneBasedOutputFull() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"1,3,7-8"}, 8, true);
|
|
assertEquals(List.of(1, 3, 7, 8), result, "Range should be parsed correctly.");
|
|
}
|
|
|
|
@Test
|
|
void testParsePageListWithRangeOneBasedOutputFullOutOfRange() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"1,3,7-8"}, 5, true);
|
|
assertEquals(List.of(1, 3), result, "Range should be parsed correctly.");
|
|
}
|
|
|
|
@Test
|
|
void testParsePageListWithRangeZeroBaseOutputFull() {
|
|
List<Integer> result = GeneralUtils.parsePageList(new String[] {"1,3,7-8"}, 8, false);
|
|
assertEquals(List.of(0, 2, 6, 7), result, "Range should be parsed correctly.");
|
|
}
|
|
}
|