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
|
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 cz.crcs.ectester.reader.test.TestSuite;
import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.Yaml;
import java.io.PrintStream;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class YAMLTestWriter implements TestWriter {
private PrintStream output;
private List<Object> testRun;
public YAMLTestWriter(PrintStream output) {
this.output = output;
}
@Override
public void begin(TestSuite suite) {
output.println("---");
testRun = new LinkedList<>();
//TODO: output suite.name and suite.description
}
private Map<String, Object> responseObject(Response r) {
Map<String, Object> responseObj = new HashMap<>();
responseObj.put("successful", r.successful());
responseObj.put("apdu", Util.bytesToHex(r.getAPDU().getBytes()));
responseObj.put("natural_sw", r.getNaturalSW());
List<Short> sws = new LinkedList<>();
for (int i = 0; i < r.getNumSW(); ++i) {
sws.add(r.getSW(i));
}
responseObj.put("sws", sws);
responseObj.put("duration", r.getDuration());
responseObj.put("desc", r.getDescription());
return responseObj;
}
private Map<String, Object> testObject(Test t) {
Map<String, Object> testObj = new HashMap<>();
if (t instanceof Test.Simple) {
Test.Simple test = (Test.Simple) t;
testObj.put("type", "simple");
testObj.put("response", responseObject(test.getResponse()));
} else if (t instanceof Test.Compound) {
Test.Compound test = (Test.Compound) t;
testObj.put("type", "compound");
List<Map<String, Object>> tests = new LinkedList<>();
for (Test innerTest : test.getTests()) {
tests.add(testObject(innerTest));
}
testObj.put("tests", tests);
}
testObj.put("desc", t.getDescription());
testObj.put("result", t.getResultValue().name());
return testObj;
}
@Override
public void outputTest(Test t) {
if (!t.hasRun())
return;
testRun.add(testObject(t));
}
@Override
public void end() {
DumperOptions options = new DumperOptions();
options.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
options.setPrettyFlow(true);
Yaml yaml = new Yaml(options);
Map<String, List<Object>> result = new HashMap<>();
result.put("testRun", testRun);
String out = yaml.dump(result);
output.println(out);
output.println("---");
}
}
|