blob: d90f2ea994d54e5611733ee45fcd3095d2a607f3 (
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
|
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import com.c2kernel.persistency.outcome.Outcome;
import com.c2kernel.utils.FileStringUtility;
public class OutcomeTest {
Outcome testOc;
public OutcomeTest() throws Exception {
String ocData = FileStringUtility.url2String(OutcomeTest.class.getResource("outcomeTest.xml"));
testOc = new Outcome("/Outcome/Test/0/0", ocData);
}
public void testDOMAccess() throws Exception {
assert "Field1contents".equals(testOc.getField("Field1")) : "getField() failed";
}
public void testXPath() throws Exception {
Node field1Node = testOc.getNodeByXPath("//Field1/text()");
assert field1Node!=null : "XPath for Element query failed";
assert field1Node.getNodeValue() != null : "Field1 node was null";
assert field1Node.getNodeValue().equals("Field1contents") : "Incorrect value for element node through XPath";
assert "Field1contents".equals(testOc.getFieldByXPath("//Field1")): "getFieldByXPath failed";
testOc.setFieldByXPath("//Field2", "NewField2");
assert "NewField2".equals(testOc.getFieldByXPath("//Field2")): "getFieldByXPath failed to retrieve updated value";
assert testOc.getNodeByXPath("//Field2/text()").getNodeValue() != null : "Field2 text node is null";
assert testOc.getNodeByXPath("//Field2/text()").getNodeValue().equals("NewField2") : "Failed to setFieldByXPath for element";
Node field2attr = testOc.getNodeByXPath("//Field2/@attr");
assert field2attr.getNodeValue().equals("attribute"): "Failed to retrieve attribute value via XPath";
NodeList field3nodes = testOc.getNodesByXPath("//Field3");
assert field3nodes.getLength()==2 : "getNodesByXPath returned wrong number of nodes";
}
}
|