Skip to content

Commit 76cda9f

Browse files
mpdonovarhalade
authored andcommittedApr 13, 2023
8255548: Missing coverage for javax.xml.crypto.dom.DOMCryptoContext
Reviewed-by: rhalade, mullan
1 parent b60604e commit 76cda9f

File tree

1 file changed

+46
-1
lines changed

1 file changed

+46
-1
lines changed
 

‎test/jdk/javax/xml/crypto/dsig/GenerationTests.java

+46-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -31,6 +31,7 @@
3131
* java.xml.crypto/org.jcp.xml.dsig.internal.dom
3232
* jdk.httpserver/com.sun.net.httpserver
3333
* @library /test/lib
34+
* @build jdk.test.lib.Asserts
3435
* @compile -XDignore.symbol.file KeySelectors.java SignatureValidator.java
3536
* X509KeySelector.java GenerationTests.java
3637
* @run main/othervm/timeout=300 -Dsun.net.httpserver.nodelay=true GenerationTests
@@ -93,6 +94,7 @@
9394
import org.w3c.dom.*;
9495

9596
import jdk.test.lib.security.SecurityUtils;
97+
import jdk.test.lib.Asserts;
9698

9799
/**
98100
* Test that recreates merlin-xmldsig-twenty-three test vectors (and more)
@@ -292,6 +294,7 @@ public static void main(String args[]) throws Exception {
292294
SecurityUtils.removeAlgsFromDSigPolicy("sha1");
293295

294296
setup();
297+
test_context_iterator();
295298
test_create_signature_enveloped_dsa(1024);
296299
test_create_signature_enveloped_dsa(2048);
297300
test_create_signature_enveloping_b64_dsa();
@@ -1886,6 +1889,48 @@ static boolean test_create_detached_signature0(String canonicalizationMethod,
18861889
return true;
18871890
}
18881891

1892+
static boolean test_context_iterator() throws Exception {
1893+
System.out.println("Testing context iterator() method.");
1894+
1895+
Reference ref = fac.newReference("#object",
1896+
fac.newDigestMethod(DigestMethod.SHA512, null));
1897+
SignedInfo si = fac.newSignedInfo(withoutComments, rsaSha512,
1898+
Collections.singletonList(ref));
1899+
1900+
Document doc = db.newDocument();
1901+
XMLObject obj = fac.newXMLObject(Collections.singletonList(
1902+
new DOMStructure(doc.createTextNode("test text"))), "object",
1903+
null, null);
1904+
1905+
DOMSignContext dsc = new DOMSignContext(signingKey, doc);
1906+
Asserts.assertNotNull(dsc.iterator());
1907+
Asserts.assertFalse(dsc.iterator().hasNext());
1908+
1909+
String namespaceURI = "https://example.com/ns";
1910+
String idAttrValue = "id1";
1911+
String elementQualifiedName = "test:data";
1912+
1913+
Element elm = doc.createElementNS(namespaceURI, elementQualifiedName);
1914+
elm.setAttributeNS(namespaceURI, "test:id", idAttrValue);
1915+
dsc.setIdAttributeNS(elm, namespaceURI, "id");
1916+
1917+
Iterator<Map.Entry<String, Element>> iter = dsc.iterator();
1918+
Asserts.assertTrue(dsc.iterator().hasNext());
1919+
1920+
Map.Entry<String, Element> element = iter.next();
1921+
Asserts.assertEquals(element.getKey(), idAttrValue);
1922+
Asserts.assertEquals(element.getValue().getNodeName(), elementQualifiedName);
1923+
1924+
try {
1925+
iter.remove();
1926+
throw new RuntimeException(
1927+
"The expected UnsupportedOperationException was not thrown.");
1928+
} catch (UnsupportedOperationException exc) {
1929+
// this is expected
1930+
}
1931+
return true;
1932+
}
1933+
18891934
private static Key[] getCachedKeys(String signatureMethod) {
18901935
return cachedKeys.computeIfAbsent(signatureMethod, sm -> {
18911936
try {

0 commit comments

Comments
 (0)
Please sign in to comment.