|
1 | 1 | /*
|
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. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
31 | 31 | * java.xml.crypto/org.jcp.xml.dsig.internal.dom
|
32 | 32 | * jdk.httpserver/com.sun.net.httpserver
|
33 | 33 | * @library /test/lib
|
| 34 | + * @build jdk.test.lib.Asserts |
34 | 35 | * @compile -XDignore.symbol.file KeySelectors.java SignatureValidator.java
|
35 | 36 | * X509KeySelector.java GenerationTests.java
|
36 | 37 | * @run main/othervm/timeout=300 -Dsun.net.httpserver.nodelay=true GenerationTests
|
|
93 | 94 | import org.w3c.dom.*;
|
94 | 95 |
|
95 | 96 | import jdk.test.lib.security.SecurityUtils;
|
| 97 | +import jdk.test.lib.Asserts; |
96 | 98 |
|
97 | 99 | /**
|
98 | 100 | * Test that recreates merlin-xmldsig-twenty-three test vectors (and more)
|
@@ -292,6 +294,7 @@ public static void main(String args[]) throws Exception {
|
292 | 294 | SecurityUtils.removeAlgsFromDSigPolicy("sha1");
|
293 | 295 |
|
294 | 296 | setup();
|
| 297 | + test_context_iterator(); |
295 | 298 | test_create_signature_enveloped_dsa(1024);
|
296 | 299 | test_create_signature_enveloped_dsa(2048);
|
297 | 300 | test_create_signature_enveloping_b64_dsa();
|
@@ -1886,6 +1889,48 @@ static boolean test_create_detached_signature0(String canonicalizationMethod,
|
1886 | 1889 | return true;
|
1887 | 1890 | }
|
1888 | 1891 |
|
| 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 | + |
1889 | 1934 | private static Key[] getCachedKeys(String signatureMethod) {
|
1890 | 1935 | return cachedKeys.computeIfAbsent(signatureMethod, sm -> {
|
1891 | 1936 | try {
|
|
0 commit comments