blob: d9669be68c0edff510b099ab8a18613bfcf0e39f (
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
|
package cz.crcs.ectester.reader.output;
import cz.crcs.ectester.reader.Util;
import cz.crcs.ectester.reader.response.Response;
import cz.crcs.ectester.reader.test.Test;
import java.io.PrintStream;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class TextOutputWriter implements OutputWriter {
private PrintStream output;
public TextOutputWriter(PrintStream output) {
this.output = output;
}
@Override
public void begin() {
}
private String testPrefix(Test t) {
return (t.ok() ? "OK" : "NOK");
}
private String responseSuffix(Response r) {
StringBuilder suffix = new StringBuilder();
for (int j = 0; j < r.getNumSW(); ++j) {
short sw = r.getSW(j);
if (sw != 0) {
suffix.append(" ").append(Util.getSWString(sw));
}
}
if (suffix.length() == 0) {
suffix.append(" [").append(Util.getSW(r.getNaturalSW())).append("]");
}
return String.format("%4d ms : %s", r.getDuration() / 1000000, suffix);
}
@Override
public void outputResponse(Response r) {
String out = "";
out += String.format("%-62s:", r.getDescription()) + " : ";
out += responseSuffix(r);
output.println(out);
output.flush();
}
private String testString(Test t) {
if (!t.hasRun())
return null;
StringBuilder out = new StringBuilder();
if (t instanceof Test.Simple) {
Test.Simple test = (Test.Simple) t;
out.append(String.format("%-62s:", testPrefix(t) + " " + test.getDescription())).append(" : ");
out.append(responseSuffix(test.getResponse()));
} else if (t instanceof Test.Compound) {
Test.Compound test = (Test.Compound) t;
for (Test innerTest : test.getTests()) {
out.append(" ").append(testString(innerTest)).append(System.lineSeparator());
}
out.append(String.format("%-62s:", testPrefix(t) + " " + test.getDescription()));
}
return out.toString();
}
@Override
public void outputTest(Test t) {
output.println(testString(t));
output.flush();
}
@Override
public void end() {
}
}
|