From 0032089b5c7dedf057c60fcee17cbdd2b0f8bb87 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 10 Oct 2023 23:51:20 +0200 Subject: Added more complete test for SRC_write; renamed tests for clarity --- test/010_io_H48/00_garbage.in | 3 --- test/010_io_H48/00_garbage.out | 1 - test/010_io_H48/01_solved_oneline.in | 1 - test/010_io_H48/01_solved_oneline.out | 1 - test/010_io_H48/02_solved_oneline_whitespace.in | 1 - test/010_io_H48/02_solved_oneline_whitespace.out | 1 - test/010_io_H48/03_solved_multiline.in | 9 ------- test/010_io_H48/03_solved_multiline.out | 1 - test/010_io_H48/04_unsolvable_ep.in | 1 - test/010_io_H48/04_unsolvable_ep.out | 1 - test/010_io_H48/05_unsolvable_eo.in | 1 - test/010_io_H48/05_unsolvable_eo.out | 1 - test/010_io_H48/06_unsolvable_cp.in | 1 - test/010_io_H48/06_unsolvable_cp.out | 1 - test/010_io_H48/07_unsolvable_co.in | 1 - test/010_io_H48/07_unsolvable_co.out | 1 - test/010_io_H48/08_unsolved.in | 6 ----- test/010_io_H48/08_unsolved.out | 1 - test/010_io_H48/io_H48_tests.c | 28 ---------------------- test/010_io_H48_read_write/00_garbage.in | 3 +++ test/010_io_H48_read_write/00_garbage.out | 1 + test/010_io_H48_read_write/01_solved_oneline.in | 1 + test/010_io_H48_read_write/01_solved_oneline.out | 1 + .../02_solved_oneline_whitespace.in | 1 + .../02_solved_oneline_whitespace.out | 1 + test/010_io_H48_read_write/03_solved_multiline.in | 9 +++++++ test/010_io_H48_read_write/03_solved_multiline.out | 1 + test/010_io_H48_read_write/04_unsolvable_ep.in | 1 + test/010_io_H48_read_write/04_unsolvable_ep.out | 1 + test/010_io_H48_read_write/05_unsolvable_eo.in | 1 + test/010_io_H48_read_write/05_unsolvable_eo.out | 1 + test/010_io_H48_read_write/06_unsolvable_cp.in | 1 + test/010_io_H48_read_write/06_unsolvable_cp.out | 1 + test/010_io_H48_read_write/07_unsolvable_co.in | 1 + test/010_io_H48_read_write/07_unsolvable_co.out | 1 + test/010_io_H48_read_write/08_unsolved.in | 6 +++++ test/010_io_H48_read_write/08_unsolved.out | 1 + test/010_io_H48_read_write/io_H48_tests.c | 28 ++++++++++++++++++++++ test/011_io_SRC/01_solved.in | 1 - test/011_io_SRC/01_solved.out | 4 ---- test/011_io_SRC/io_SRC_tests.c | 28 ---------------------- test/011_io_SRC_write/01_solved.in | 1 + test/011_io_SRC_write/01_solved.out | 4 ++++ test/011_io_SRC_write/02_scrambled.in | 1 + test/011_io_SRC_write/02_scrambled.out | 4 ++++ test/011_io_SRC_write/io_SRC_tests.c | 28 ++++++++++++++++++++++ 46 files changed, 99 insertions(+), 94 deletions(-) delete mode 100644 test/010_io_H48/00_garbage.in delete mode 100644 test/010_io_H48/00_garbage.out delete mode 100644 test/010_io_H48/01_solved_oneline.in delete mode 100644 test/010_io_H48/01_solved_oneline.out delete mode 100644 test/010_io_H48/02_solved_oneline_whitespace.in delete mode 100644 test/010_io_H48/02_solved_oneline_whitespace.out delete mode 100644 test/010_io_H48/03_solved_multiline.in delete mode 100644 test/010_io_H48/03_solved_multiline.out delete mode 100644 test/010_io_H48/04_unsolvable_ep.in delete mode 100644 test/010_io_H48/04_unsolvable_ep.out delete mode 100644 test/010_io_H48/05_unsolvable_eo.in delete mode 100644 test/010_io_H48/05_unsolvable_eo.out delete mode 100644 test/010_io_H48/06_unsolvable_cp.in delete mode 100644 test/010_io_H48/06_unsolvable_cp.out delete mode 100644 test/010_io_H48/07_unsolvable_co.in delete mode 100644 test/010_io_H48/07_unsolvable_co.out delete mode 100644 test/010_io_H48/08_unsolved.in delete mode 100644 test/010_io_H48/08_unsolved.out delete mode 100644 test/010_io_H48/io_H48_tests.c create mode 100644 test/010_io_H48_read_write/00_garbage.in create mode 100644 test/010_io_H48_read_write/00_garbage.out create mode 100644 test/010_io_H48_read_write/01_solved_oneline.in create mode 100644 test/010_io_H48_read_write/01_solved_oneline.out create mode 100644 test/010_io_H48_read_write/02_solved_oneline_whitespace.in create mode 100644 test/010_io_H48_read_write/02_solved_oneline_whitespace.out create mode 100644 test/010_io_H48_read_write/03_solved_multiline.in create mode 100644 test/010_io_H48_read_write/03_solved_multiline.out create mode 100644 test/010_io_H48_read_write/04_unsolvable_ep.in create mode 100644 test/010_io_H48_read_write/04_unsolvable_ep.out create mode 100644 test/010_io_H48_read_write/05_unsolvable_eo.in create mode 100644 test/010_io_H48_read_write/05_unsolvable_eo.out create mode 100644 test/010_io_H48_read_write/06_unsolvable_cp.in create mode 100644 test/010_io_H48_read_write/06_unsolvable_cp.out create mode 100644 test/010_io_H48_read_write/07_unsolvable_co.in create mode 100644 test/010_io_H48_read_write/07_unsolvable_co.out create mode 100644 test/010_io_H48_read_write/08_unsolved.in create mode 100644 test/010_io_H48_read_write/08_unsolved.out create mode 100644 test/010_io_H48_read_write/io_H48_tests.c delete mode 100644 test/011_io_SRC/01_solved.in delete mode 100644 test/011_io_SRC/01_solved.out delete mode 100644 test/011_io_SRC/io_SRC_tests.c create mode 100644 test/011_io_SRC_write/01_solved.in create mode 100644 test/011_io_SRC_write/01_solved.out create mode 100644 test/011_io_SRC_write/02_scrambled.in create mode 100644 test/011_io_SRC_write/02_scrambled.out create mode 100644 test/011_io_SRC_write/io_SRC_tests.c (limited to 'test') diff --git a/test/010_io_H48/00_garbage.in b/test/010_io_H48/00_garbage.in deleted file mode 100644 index 9ac203a..0000000 --- a/test/010_io_H48/00_garbage.in +++ /dev/null @@ -1,3 +0,0 @@ -FUF0 UBBBR2 k4 -hello -garbage diff --git a/test/010_io_H48/00_garbage.out b/test/010_io_H48/00_garbage.out deleted file mode 100644 index 5b9114e..0000000 --- a/test/010_io_H48/00_garbage.out +++ /dev/null @@ -1 +0,0 @@ -Error reading cube diff --git a/test/010_io_H48/01_solved_oneline.in b/test/010_io_H48/01_solved_oneline.in deleted file mode 100644 index dff224d..0000000 --- a/test/010_io_H48/01_solved_oneline.in +++ /dev/null @@ -1 +0,0 @@ -UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/01_solved_oneline.out b/test/010_io_H48/01_solved_oneline.out deleted file mode 100644 index dff224d..0000000 --- a/test/010_io_H48/01_solved_oneline.out +++ /dev/null @@ -1 +0,0 @@ -UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/02_solved_oneline_whitespace.in b/test/010_io_H48/02_solved_oneline_whitespace.in deleted file mode 100644 index 5d10368..0000000 --- a/test/010_io_H48/02_solved_oneline_whitespace.in +++ /dev/null @@ -1 +0,0 @@ -UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/02_solved_oneline_whitespace.out b/test/010_io_H48/02_solved_oneline_whitespace.out deleted file mode 100644 index dff224d..0000000 --- a/test/010_io_H48/02_solved_oneline_whitespace.out +++ /dev/null @@ -1 +0,0 @@ -UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/03_solved_multiline.in b/test/010_io_H48/03_solved_multiline.in deleted file mode 100644 index 9f9652b..0000000 --- a/test/010_io_H48/03_solved_multiline.in +++ /dev/null @@ -1,9 +0,0 @@ -UF0 UB0 -DB0 DF0 UR0 UL0 DL0 -DR0 FR0 FL0 BL0 BR0 UFR0 - -UBL0 DFL0 DBR0 - - -UFL0 UBR0 DFR0 - DBL0 diff --git a/test/010_io_H48/03_solved_multiline.out b/test/010_io_H48/03_solved_multiline.out deleted file mode 100644 index dff224d..0000000 --- a/test/010_io_H48/03_solved_multiline.out +++ /dev/null @@ -1 +0,0 @@ -UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/04_unsolvable_ep.in b/test/010_io_H48/04_unsolvable_ep.in deleted file mode 100644 index 8483962..0000000 --- a/test/010_io_H48/04_unsolvable_ep.in +++ /dev/null @@ -1 +0,0 @@ -UB0 UF0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/04_unsolvable_ep.out b/test/010_io_H48/04_unsolvable_ep.out deleted file mode 100644 index e35c6e4..0000000 --- a/test/010_io_H48/04_unsolvable_ep.out +++ /dev/null @@ -1 +0,0 @@ -Cube is not solvable diff --git a/test/010_io_H48/05_unsolvable_eo.in b/test/010_io_H48/05_unsolvable_eo.in deleted file mode 100644 index a92089d..0000000 --- a/test/010_io_H48/05_unsolvable_eo.in +++ /dev/null @@ -1 +0,0 @@ -UF1 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/05_unsolvable_eo.out b/test/010_io_H48/05_unsolvable_eo.out deleted file mode 100644 index e35c6e4..0000000 --- a/test/010_io_H48/05_unsolvable_eo.out +++ /dev/null @@ -1 +0,0 @@ -Cube is not solvable diff --git a/test/010_io_H48/06_unsolvable_cp.in b/test/010_io_H48/06_unsolvable_cp.in deleted file mode 100644 index 2085dd5..0000000 --- a/test/010_io_H48/06_unsolvable_cp.in +++ /dev/null @@ -1 +0,0 @@ -UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UBL0 UFR0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/06_unsolvable_cp.out b/test/010_io_H48/06_unsolvable_cp.out deleted file mode 100644 index e35c6e4..0000000 --- a/test/010_io_H48/06_unsolvable_cp.out +++ /dev/null @@ -1 +0,0 @@ -Cube is not solvable diff --git a/test/010_io_H48/07_unsolvable_co.in b/test/010_io_H48/07_unsolvable_co.in deleted file mode 100644 index abd74e2..0000000 --- a/test/010_io_H48/07_unsolvable_co.in +++ /dev/null @@ -1 +0,0 @@ -UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR1 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48/07_unsolvable_co.out b/test/010_io_H48/07_unsolvable_co.out deleted file mode 100644 index e35c6e4..0000000 --- a/test/010_io_H48/07_unsolvable_co.out +++ /dev/null @@ -1 +0,0 @@ -Cube is not solvable diff --git a/test/010_io_H48/08_unsolved.in b/test/010_io_H48/08_unsolved.in deleted file mode 100644 index c992ce7..0000000 --- a/test/010_io_H48/08_unsolved.in +++ /dev/null @@ -1,6 +0,0 @@ -UL1 DR0 UB0 DL1 -UR0 FR1 DB0 BR0 -UF1 DF0 BL0 FL0 - -UBL0 DLF1 DBR2 UFR1 -DFR1 UBR1 UFL0 DBL0 diff --git a/test/010_io_H48/08_unsolved.out b/test/010_io_H48/08_unsolved.out deleted file mode 100644 index 8c132cf..0000000 --- a/test/010_io_H48/08_unsolved.out +++ /dev/null @@ -1 +0,0 @@ -UL1 DR0 UB0 DL1 UR0 FR1 DB0 BR0 UF1 DF0 BL0 FL0 UBL0 DFL1 DBR2 UFR1 DFR1 UBR1 UFL0 DBL0 diff --git a/test/010_io_H48/io_H48_tests.c b/test/010_io_H48/io_H48_tests.c deleted file mode 100644 index 7c3978e..0000000 --- a/test/010_io_H48/io_H48_tests.c +++ /dev/null @@ -1,28 +0,0 @@ -#include -#include -#include - -#include "../../src/cube.h" - -#define STRLENMAX 10000 - -int main() { - char *c, str[STRLENMAX]; - cube_t cube; - - for (c = str; (*c = getchar()) != EOF; c++) ; - *c = '\0'; - - cube = readcube(H48, str); - - if (iserror(cube)) { - printf("Error reading cube\n"); - } else if (!issolvable(cube)) { - printf("Cube is not solvable\n"); - } else { - writecube(H48, cube, str); - printf("%s\n", str); - } - - return 0; -} diff --git a/test/010_io_H48_read_write/00_garbage.in b/test/010_io_H48_read_write/00_garbage.in new file mode 100644 index 0000000..9ac203a --- /dev/null +++ b/test/010_io_H48_read_write/00_garbage.in @@ -0,0 +1,3 @@ +FUF0 UBBBR2 k4 +hello +garbage diff --git a/test/010_io_H48_read_write/00_garbage.out b/test/010_io_H48_read_write/00_garbage.out new file mode 100644 index 0000000..5b9114e --- /dev/null +++ b/test/010_io_H48_read_write/00_garbage.out @@ -0,0 +1 @@ +Error reading cube diff --git a/test/010_io_H48_read_write/01_solved_oneline.in b/test/010_io_H48_read_write/01_solved_oneline.in new file mode 100644 index 0000000..dff224d --- /dev/null +++ b/test/010_io_H48_read_write/01_solved_oneline.in @@ -0,0 +1 @@ +UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/01_solved_oneline.out b/test/010_io_H48_read_write/01_solved_oneline.out new file mode 100644 index 0000000..dff224d --- /dev/null +++ b/test/010_io_H48_read_write/01_solved_oneline.out @@ -0,0 +1 @@ +UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/02_solved_oneline_whitespace.in b/test/010_io_H48_read_write/02_solved_oneline_whitespace.in new file mode 100644 index 0000000..5d10368 --- /dev/null +++ b/test/010_io_H48_read_write/02_solved_oneline_whitespace.in @@ -0,0 +1 @@ +UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/02_solved_oneline_whitespace.out b/test/010_io_H48_read_write/02_solved_oneline_whitespace.out new file mode 100644 index 0000000..dff224d --- /dev/null +++ b/test/010_io_H48_read_write/02_solved_oneline_whitespace.out @@ -0,0 +1 @@ +UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/03_solved_multiline.in b/test/010_io_H48_read_write/03_solved_multiline.in new file mode 100644 index 0000000..9f9652b --- /dev/null +++ b/test/010_io_H48_read_write/03_solved_multiline.in @@ -0,0 +1,9 @@ +UF0 UB0 +DB0 DF0 UR0 UL0 DL0 +DR0 FR0 FL0 BL0 BR0 UFR0 + +UBL0 DFL0 DBR0 + + +UFL0 UBR0 DFR0 + DBL0 diff --git a/test/010_io_H48_read_write/03_solved_multiline.out b/test/010_io_H48_read_write/03_solved_multiline.out new file mode 100644 index 0000000..dff224d --- /dev/null +++ b/test/010_io_H48_read_write/03_solved_multiline.out @@ -0,0 +1 @@ +UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/04_unsolvable_ep.in b/test/010_io_H48_read_write/04_unsolvable_ep.in new file mode 100644 index 0000000..8483962 --- /dev/null +++ b/test/010_io_H48_read_write/04_unsolvable_ep.in @@ -0,0 +1 @@ +UB0 UF0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/04_unsolvable_ep.out b/test/010_io_H48_read_write/04_unsolvable_ep.out new file mode 100644 index 0000000..e35c6e4 --- /dev/null +++ b/test/010_io_H48_read_write/04_unsolvable_ep.out @@ -0,0 +1 @@ +Cube is not solvable diff --git a/test/010_io_H48_read_write/05_unsolvable_eo.in b/test/010_io_H48_read_write/05_unsolvable_eo.in new file mode 100644 index 0000000..a92089d --- /dev/null +++ b/test/010_io_H48_read_write/05_unsolvable_eo.in @@ -0,0 +1 @@ +UF1 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/05_unsolvable_eo.out b/test/010_io_H48_read_write/05_unsolvable_eo.out new file mode 100644 index 0000000..e35c6e4 --- /dev/null +++ b/test/010_io_H48_read_write/05_unsolvable_eo.out @@ -0,0 +1 @@ +Cube is not solvable diff --git a/test/010_io_H48_read_write/06_unsolvable_cp.in b/test/010_io_H48_read_write/06_unsolvable_cp.in new file mode 100644 index 0000000..2085dd5 --- /dev/null +++ b/test/010_io_H48_read_write/06_unsolvable_cp.in @@ -0,0 +1 @@ +UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UBL0 UFR0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/06_unsolvable_cp.out b/test/010_io_H48_read_write/06_unsolvable_cp.out new file mode 100644 index 0000000..e35c6e4 --- /dev/null +++ b/test/010_io_H48_read_write/06_unsolvable_cp.out @@ -0,0 +1 @@ +Cube is not solvable diff --git a/test/010_io_H48_read_write/07_unsolvable_co.in b/test/010_io_H48_read_write/07_unsolvable_co.in new file mode 100644 index 0000000..abd74e2 --- /dev/null +++ b/test/010_io_H48_read_write/07_unsolvable_co.in @@ -0,0 +1 @@ +UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR1 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/010_io_H48_read_write/07_unsolvable_co.out b/test/010_io_H48_read_write/07_unsolvable_co.out new file mode 100644 index 0000000..e35c6e4 --- /dev/null +++ b/test/010_io_H48_read_write/07_unsolvable_co.out @@ -0,0 +1 @@ +Cube is not solvable diff --git a/test/010_io_H48_read_write/08_unsolved.in b/test/010_io_H48_read_write/08_unsolved.in new file mode 100644 index 0000000..c992ce7 --- /dev/null +++ b/test/010_io_H48_read_write/08_unsolved.in @@ -0,0 +1,6 @@ +UL1 DR0 UB0 DL1 +UR0 FR1 DB0 BR0 +UF1 DF0 BL0 FL0 + +UBL0 DLF1 DBR2 UFR1 +DFR1 UBR1 UFL0 DBL0 diff --git a/test/010_io_H48_read_write/08_unsolved.out b/test/010_io_H48_read_write/08_unsolved.out new file mode 100644 index 0000000..8c132cf --- /dev/null +++ b/test/010_io_H48_read_write/08_unsolved.out @@ -0,0 +1 @@ +UL1 DR0 UB0 DL1 UR0 FR1 DB0 BR0 UF1 DF0 BL0 FL0 UBL0 DFL1 DBR2 UFR1 DFR1 UBR1 UFL0 DBL0 diff --git a/test/010_io_H48_read_write/io_H48_tests.c b/test/010_io_H48_read_write/io_H48_tests.c new file mode 100644 index 0000000..7c3978e --- /dev/null +++ b/test/010_io_H48_read_write/io_H48_tests.c @@ -0,0 +1,28 @@ +#include +#include +#include + +#include "../../src/cube.h" + +#define STRLENMAX 10000 + +int main() { + char *c, str[STRLENMAX]; + cube_t cube; + + for (c = str; (*c = getchar()) != EOF; c++) ; + *c = '\0'; + + cube = readcube(H48, str); + + if (iserror(cube)) { + printf("Error reading cube\n"); + } else if (!issolvable(cube)) { + printf("Cube is not solvable\n"); + } else { + writecube(H48, cube, str); + printf("%s\n", str); + } + + return 0; +} diff --git a/test/011_io_SRC/01_solved.in b/test/011_io_SRC/01_solved.in deleted file mode 100644 index dff224d..0000000 --- a/test/011_io_SRC/01_solved.in +++ /dev/null @@ -1 +0,0 @@ -UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/011_io_SRC/01_solved.out b/test/011_io_SRC/01_solved.out deleted file mode 100644 index 3853027..0000000 --- a/test/011_io_SRC/01_solved.out +++ /dev/null @@ -1,4 +0,0 @@ -{ - .c = {0, 1, 2, 3, 4, 5, 6, 7}, - .e = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11} -} diff --git a/test/011_io_SRC/io_SRC_tests.c b/test/011_io_SRC/io_SRC_tests.c deleted file mode 100644 index f454b6f..0000000 --- a/test/011_io_SRC/io_SRC_tests.c +++ /dev/null @@ -1,28 +0,0 @@ -#include -#include -#include - -#include "../../src/cube.h" - -#define STRLENMAX 10000 - -int main() { - char *c, str[STRLENMAX]; - cube_t cube; - - for (c = str; (*c = getchar()) != EOF; c++) ; - *c = '\0'; - - cube = readcube(H48, str); - - if (iserror(cube)) { - printf("Error reading cube\n"); - } else if (!issolvable(cube)) { - printf("Cube is not solvable\n"); - } else { - writecube(SRC, cube, str); - printf("%s\n", str); - } - - return 0; -} diff --git a/test/011_io_SRC_write/01_solved.in b/test/011_io_SRC_write/01_solved.in new file mode 100644 index 0000000..dff224d --- /dev/null +++ b/test/011_io_SRC_write/01_solved.in @@ -0,0 +1 @@ +UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 diff --git a/test/011_io_SRC_write/01_solved.out b/test/011_io_SRC_write/01_solved.out new file mode 100644 index 0000000..3853027 --- /dev/null +++ b/test/011_io_SRC_write/01_solved.out @@ -0,0 +1,4 @@ +{ + .c = {0, 1, 2, 3, 4, 5, 6, 7}, + .e = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11} +} diff --git a/test/011_io_SRC_write/02_scrambled.in b/test/011_io_SRC_write/02_scrambled.in new file mode 100644 index 0000000..6a05bbc --- /dev/null +++ b/test/011_io_SRC_write/02_scrambled.in @@ -0,0 +1 @@ +FL0 DB0 UB1 FR0 UR0 DF0 UF0 BR1 UL1 BL1 DL0 DR0 DFR1 UFR1 UBR1 UFL2 DBR2 DFL0 DBL2 UBL0 diff --git a/test/011_io_SRC_write/02_scrambled.out b/test/011_io_SRC_write/02_scrambled.out new file mode 100644 index 0000000..44d3d04 --- /dev/null +++ b/test/011_io_SRC_write/02_scrambled.out @@ -0,0 +1,4 @@ +{ + .c = {38, 32, 37, 68, 67, 2, 71, 1}, + .e = {9, 2, 17, 8, 4, 3, 0, 27, 21, 26, 6, 7} +} diff --git a/test/011_io_SRC_write/io_SRC_tests.c b/test/011_io_SRC_write/io_SRC_tests.c new file mode 100644 index 0000000..f454b6f --- /dev/null +++ b/test/011_io_SRC_write/io_SRC_tests.c @@ -0,0 +1,28 @@ +#include +#include +#include + +#include "../../src/cube.h" + +#define STRLENMAX 10000 + +int main() { + char *c, str[STRLENMAX]; + cube_t cube; + + for (c = str; (*c = getchar()) != EOF; c++) ; + *c = '\0'; + + cube = readcube(H48, str); + + if (iserror(cube)) { + printf("Error reading cube\n"); + } else if (!issolvable(cube)) { + printf("Cube is not solvable\n"); + } else { + writecube(SRC, cube, str); + printf("%s\n", str); + } + + return 0; +} -- cgit v1.3