-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8252523: Add ASN.1 Formatter to work with test utility HexPrinter
Reviewed-by: weijun
- Loading branch information
Roger Riggs
committed
Sep 30, 2020
1 parent
06d8cf6
commit 092c227
Showing
5 changed files
with
797 additions
and
10 deletions.
There are no files selected for viewing
129 changes: 129 additions & 0 deletions
129
test/lib-test/jdk/test/lib/hexdump/ASN1FormatterTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
/* | ||
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
package jdk.test.lib.hexdump; | ||
|
||
import org.testng.Assert; | ||
import org.testng.annotations.Test; | ||
|
||
import java.io.DataInputStream; | ||
import java.io.EOFException; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.util.Base64; | ||
|
||
import static org.testng.Assert.*; | ||
|
||
/* | ||
* @test | ||
* @summary ASN.1 formatting | ||
* @library /test/lib | ||
* @compile ASN1FormatterTest.java | ||
* @run testng jdk.test.lib.hexdump.ASN1FormatterTest | ||
*/ | ||
@Test | ||
public class ASN1FormatterTest { | ||
private static final String DIR = System.getProperty("test.src", "."); | ||
|
||
@Test | ||
static void testPEM() throws IOException { | ||
String certFile = "openssl.p12.pem"; | ||
Path certPath = Path.of(DIR, certFile); | ||
System.out.println("certPath: " + certPath); | ||
|
||
try (InputStream certStream = Files.newInputStream(certPath)) { | ||
while (certStream.read() != '\n') { | ||
// Skip first line "-----BEGIN CERTIFICATE-----" | ||
} | ||
// Mime decoder for Certificate | ||
InputStream wis = Base64.getMimeDecoder().wrap(certStream); | ||
DataInputStream is = new DataInputStream(wis); | ||
String result = ASN1Formatter.formatter().annotate(is); | ||
System.out.println(result); | ||
|
||
Assert.assertEquals(result.lines().count(), 76, "Lines"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("SEQUENCE")).count(),24, "Sequences"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("OBJECT ID")).count(), 17, "ObjectIDs"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("UTCTIME")).count(), 2, "UTCTIME"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("BIT STRING")).count(), 3, "BitStrings"); | ||
} catch (EOFException eof) { | ||
// done | ||
} | ||
} | ||
|
||
@Test | ||
static void dumpPEM() throws IOException { | ||
String file = "openssl.p12.pem"; | ||
Path path = Path.of(DIR, file); | ||
System.out.println("path: " + path); | ||
|
||
try (InputStream certStream = Files.newInputStream(path)) { | ||
while (certStream.read() != '\n') { | ||
// Skip first line "-----BEGIN CERTIFICATE-----" | ||
} | ||
// Mime decoder for Certificate | ||
InputStream wis = Base64.getMimeDecoder().wrap(certStream); | ||
|
||
HexPrinter p = HexPrinter.simple() | ||
.formatter(ASN1Formatter.formatter(), "; ", 100); | ||
String result = p.toString(wis); | ||
System.out.println(result); | ||
|
||
Assert.assertEquals(result.lines().count(), 126, "Lines"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("SEQUENCE")).count(), 24, "Sequences"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("OBJECT ID")).count(), 17, "ObjectIDs"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("UTCTIME")).count(), 2, "UTCTIME"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("BIT STRING")).count(), 3, "BitStrings"); | ||
} catch (EOFException eof) { | ||
// done | ||
} | ||
} | ||
|
||
@Test | ||
static void testIndefinate() { | ||
byte[] bytes = {0x24, (byte) 0x80, 4, 2, 'a', 'b', 4, 2, 'c', 'd', 0, 0}; | ||
HexPrinter p = HexPrinter.simple() | ||
.formatter(ASN1Formatter.formatter(), "; ", 100); | ||
String result = p.toString(bytes); | ||
System.out.println(result); | ||
|
||
Assert.assertEquals(result.lines().filter(s -> s.contains("OCTET STRING [INDEFINITE]")).count(), | ||
1, "Indefinite length"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("; OCTET STRING [2]")).count(), | ||
2, "Octet Sequences"); | ||
Assert.assertEquals(result.lines().filter(s -> s.contains("; END-OF-CONTENT")).count(), | ||
1, "end of content"); | ||
} | ||
|
||
@Test | ||
static void testMain() { | ||
String file = "openssl.p12.pem"; | ||
Path path = Path.of(DIR, file); | ||
String[] args = { path.toString() }; | ||
System.out.println("path: " + path); | ||
ASN1Formatter.main(args); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
-----BEGIN CERTIFICATE----- | ||
MIIDjjCCAnagAwIBAgIBAzANBgkqhkiG9w0BAQsFADBMMQswCQYDVQQGEwJJTjEL | ||
MAkGA1UECAwCS0ExDzANBgNVBAoMBk9yYWNsZTENMAsGA1UECwwESmF2YTEQMA4G | ||
A1UEAwwHQ2xpZW50MTAeFw0xNTA1MjYyMjE3MThaFw0yNTA1MjMyMjE3MThaMEwx | ||
CzAJBgNVBAYTAklOMQswCQYDVQQIDAJLQTEPMA0GA1UECgwGT3JhY2xlMQ0wCwYD | ||
VQQLDARKYXZhMRAwDgYDVQQDDAdDbGllbnQyMIIBIjANBgkqhkiG9w0BAQEFAAOC | ||
AQ8AMIIBCgKCAQEA2HADVMaKPd7xAYK0BTsCcQzglk8H2qp0Sg5nDYgb7KqB/1cb | ||
RyMB3g3FG4Isv6L0Lp2GLAeHVn35YljHNrcBUU5fG/+DNJPNiM+srevblMeksOcA | ||
frPnxmog+GMgiO97O2/3Xtgl0ailsOHidPH9hBXr+WikNu7ITPXkJiYi0d1n8p2N | ||
e/p4W4cBitxIUlZm2OTSW4d3EDW86saf657kSpTlb2zBT/r9fjWluHlTg+jGnGIz | ||
UdpYP7sSnye8oym5PxT2IMPU6vRgF9Gzwg+6bPaZnrYNURifGJIuQH+/wDaqA+Ix | ||
g2Q2Ij8SiDhkNrCoeLf77Aot9d5ZPtledJPSRQIDAQABo3sweTAJBgNVHRMEAjAA | ||
MCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAd | ||
BgNVHQ4EFgQUhxNmvHpNjpjnl/vMVkEnyF5Msk0wHwYDVR0jBBgwFoAUHyFP2xAx | ||
0GeDCQPTzfxG7M8di7QwDQYJKoZIhvcNAQELBQADggEBAD4rXzKq8PdSK7rzuwfu | ||
q+RzeYZnNM7OsoBGhMfHQKnnI3LH5bgyttuCoV665X2mgy6+LZcrXqom/ZrLXQ6x | ||
JVtGxNHr7rqbnC/9tB2/s9HHN3YiRs966shWHGkhCubsUGre7Z25Pq55K6Pyl+nU | ||
hb+K8aQ54z4oDt+raAdbuILq91fUjw5j1qex3d62fHvf4IO3spcKY4HhnwBPifg2 | ||
YZCiZRZOoVysi2FTdsvW2NfQCYgtUftbkfNrKglkRuIa9rQEduhDy1cwn4fc9S1f | ||
6WTvuJNoIp3o1nQppFjfO7fzfIDCrlaEkkXU7O54KQ5HTKu62tZp9xKW71oolOnZ | ||
bZQ= | ||
-----END CERTIFICATE----- |
Oops, something went wrong.
092c227
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues