blob: 20f7c2e471b58c519116815ff997a888ea5f43aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
package pl.edu.mimuw.cloudatlas.interpreter;
import java.io.PrintStream;
import java.io.FileInputStream;
import java.io.File;
import java.io.ByteArrayOutputStream;
import java.net.URL;
import static org.junit.Assert.*;
import org.junit.Test;
public class InterpreterTests {
@Test
public void fileTest01() throws Exception {
runFileTest(1);
}
@Test
public void fileTest02() throws Exception {
runFileTest(2);
}
@Test
public void fileTest03() throws Exception {
runFileTest(3);
}
@Test
public void fileTest04() throws Exception {
runFileTest(4);
}
@Test
public void fileTest05() throws Exception {
runFileTest(5);
}
@Test
public void fileTest06() throws Exception {
runFileTest(6);
}
@Test
public void fileTest07() throws Exception {
runFileTest(7);
}
@Test
public void fileTest08() throws Exception {
runFileTest(8);
}
@Test
public void fileTest09() throws Exception {
runFileTest(9);
}
@Test
public void fileTest10() throws Exception {
runFileTest(10);
}
@Test
public void fileTest11() throws Exception {
runFileTest(11);
}
@Test
public void fileTest12() throws Exception {
runFileTest(12);
}
@Test
public void fileTest13() throws Exception {
runFileTest(13);
}
@Test
public void fileTest14() throws Exception {
runFileTest(14);
}
@Test
public void fileTest15() throws Exception {
runFileTest(15);
}
@Test
public void fileTest16() throws Exception {
runFileTest(16);
}
@Test
public void fileTest17() throws Exception {
runFileTest(17);
}
@Test
public void fileTest18() throws Exception {
runFileTest(18);
}
@Test
public void fileTest19() throws Exception {
runFileTest(19);
}
private void runFileTest(int i) throws Exception {
URL test = InterpreterTests.class.getResource(i + ".in");
URL testOut = InterpreterTests.class.getResource(i + ".out");
FileInputStream in = new FileInputStream(test.getFile());
ByteArrayOutputStream outByteArray = new ByteArrayOutputStream();
PrintStream outPrint = new PrintStream(outByteArray);
Main.runTest(in, outPrint);
String actual = outByteArray.toString();
File expectedFile = new File(testOut.getFile());
FileInputStream expectedIn = new FileInputStream(expectedFile);
byte[] buffer = new byte[(int)expectedFile.length()];
expectedIn.read(buffer);
String expected = new String(buffer, "UTF-8");
assertEquals(expected, actual);
}
}
|