blob: 00cc6c649d284047184591fa62e6cd41113bea8a (
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
127
|
package cz.crcs.ectester.reader.output;
import cz.crcs.ectester.common.output.BaseXMLTestWriter;
import cz.crcs.ectester.common.test.TestSuite;
import cz.crcs.ectester.common.test.Testable;
import cz.crcs.ectester.common.util.ByteUtil;
import cz.crcs.ectester.reader.CardMngr;
import cz.crcs.ectester.reader.ECTesterReader;
import cz.crcs.ectester.reader.command.Command;
import cz.crcs.ectester.reader.response.Response;
import cz.crcs.ectester.reader.test.CardTestSuite;
import cz.crcs.ectester.reader.test.CommandTestable;
import org.w3c.dom.Element;
import javax.smartcardio.CardException;
import javax.xml.parsers.ParserConfigurationException;
import java.io.OutputStream;
import java.util.Map;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class XMLTestWriter extends BaseXMLTestWriter {
public XMLTestWriter(OutputStream output) throws ParserConfigurationException {
super(output);
}
private Element commandElement(Command c) {
Element commandElem = doc.createElement("command");
if (c == null) {
return commandElem;
}
Element apdu = doc.createElement("apdu");
apdu.setTextContent(ByteUtil.bytesToHex(c.getAPDU().getBytes()));
commandElem.appendChild(apdu);
Element description = doc.createElement("desc");
description.setTextContent(c.getDescription());
commandElem.appendChild(description);
return commandElem;
}
private Element responseElement(Response r) {
Element responseElem = doc.createElement("response");
if (r == null) {
return responseElem;
}
responseElem.setAttribute("successful", r.successful() ? "true" : "false");
Element apdu = doc.createElement("apdu");
apdu.setTextContent(ByteUtil.bytesToHex(r.getAPDU().getBytes()));
responseElem.appendChild(apdu);
Element naturalSW = doc.createElement("natural-sw");
naturalSW.setTextContent(String.valueOf(Short.toUnsignedInt(r.getNaturalSW())));
responseElem.appendChild(naturalSW);
Element sws = doc.createElement("sws");
for (int i = 0; i < r.getNumSW(); ++i) {
Element sw = doc.createElement("sw");
sw.setTextContent(String.valueOf(Short.toUnsignedInt(r.getSW(i))));
sws.appendChild(sw);
}
responseElem.appendChild(sws);
Element duration = doc.createElement("duration");
duration.setTextContent(String.valueOf(r.getDuration()));
responseElem.appendChild(duration);
Element description = doc.createElement("desc");
description.setTextContent(r.getDescription());
responseElem.appendChild(description);
return responseElem;
}
@Override
protected Element testableElement(Testable t) {
if (t instanceof CommandTestable) {
CommandTestable cmd = (CommandTestable) t;
Element result = doc.createElement("test");
result.setAttribute("type", "command");
result.appendChild(commandElement(cmd.getCommand()));
result.appendChild(responseElement(cmd.getResponse()));
return result;
}
return null;
}
private Element cplcElement(CardMngr card) {
Element result = doc.createElement("cplc");
try {
CardMngr.CPLC cplc = card.getCPLC();
if (!cplc.values().isEmpty()) {
for (Map.Entry<CardMngr.CPLC.Field, byte[]> entry : cplc.values().entrySet()) {
CardMngr.CPLC.Field field = entry.getKey();
byte[] value = entry.getValue();
Element keyVal = doc.createElement(field.name());
keyVal.setTextContent(ByteUtil.bytesToHex(value, false));
result.appendChild(keyVal);
}
}
} catch (CardException ignored) {
}
return result;
}
@Override
protected Element deviceElement(TestSuite suite) {
if (suite instanceof CardTestSuite) {
CardTestSuite cardSuite = (CardTestSuite) suite;
Element result = doc.createElement("device");
result.setAttribute("type", "card");
result.setAttribute("ectester", ECTesterReader.VERSION + ECTesterReader.GIT_COMMIT);
result.appendChild(cplcElement(cardSuite.getCard()));
Element atr = doc.createElement("ATR");
atr.setTextContent(ByteUtil.bytesToHex(cardSuite.getCard().getATR().getBytes(), false));
result.appendChild(atr);
return result;
}
return null;
}
}
|