mirror of
https://gitlab.com/arnekeller/kit-programmieren-ws1920-final1.git
synced 2024-11-14 12:43:07 +00:00
110 lines
2.7 KiB
Java
110 lines
2.7 KiB
Java
package edu.kit.informatik;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import java.io.*;
|
|
import java.nio.file.Files;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
class MainTest {
|
|
@Test
|
|
void basics() throws IOException {
|
|
cmpInOut("basics_input.txt", "basics_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void exampleInteraction() throws IOException {
|
|
cmpInOut("example1input.txt", "example1ONLYoutput.txt");
|
|
}
|
|
|
|
@Test
|
|
void limits() throws IOException {
|
|
cmpInOut("example2input.txt", "example2output.txt");
|
|
}
|
|
|
|
@Test
|
|
void loopy() throws IOException {
|
|
cmpInOut("loopyinput.txt", "loopyoutput.txt");
|
|
}
|
|
|
|
@Test
|
|
void hitMeBabyOneMoreTime() throws IOException {
|
|
cmpInOut("stophittingyourself_input.txt", "stophittingyourself_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz1() throws IOException {
|
|
cmpInOut("fuzz1_input.txt", "fuzz1_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz2() throws IOException {
|
|
cmpInOut("fuzz2_input.txt", "fuzz2_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz3() throws IOException {
|
|
cmpInOut("fuzz3_input.txt", "fuzz3_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz4() throws IOException {
|
|
cmpInOut("fuzz4_input.txt", "fuzz4_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz5() throws IOException {
|
|
cmpInOut("fuzz5_input.txt", "fuzz5_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz6() throws IOException {
|
|
cmpInOut("fuzz6_input.txt", "fuzz6_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz7() throws IOException {
|
|
cmpInOut("fuzz7_input.txt", "fuzz7_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz8() throws IOException {
|
|
cmpInOut("fuzz8_input.txt", "fuzz8_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz9() throws IOException {
|
|
cmpInOut("fuzz9_input.txt", "fuzz9_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz10() throws IOException {
|
|
cmpInOut("fuzz10_input.txt", "fuzz10_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void fuzz11() throws IOException {
|
|
cmpInOut("fuzz11_input.txt", "fuzz11_output.txt");
|
|
}
|
|
|
|
@Test
|
|
void testCoverage() throws IOException {
|
|
cmpInOut("testcoverage_input.txt", "testcoverage_output.txt");
|
|
}
|
|
|
|
private void cmpInOut(String in, String out) throws IOException {
|
|
System.setIn(new ByteArrayInputStream(readFile(in)));
|
|
ByteArrayOutputStream output = new ByteArrayOutputStream();
|
|
System.setOut(new PrintStream(output));
|
|
Terminal.reload();
|
|
Main.main(null);
|
|
String expected = new String(readFile(out));
|
|
assertEquals(expected, output.toString());
|
|
}
|
|
|
|
private byte[] readFile(String name) throws IOException {
|
|
File file = new File(name);
|
|
return Files.readAllBytes(file.toPath());
|
|
}
|
|
} |