Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/security/tools/keytool/UnknownAndUnparseable.java
38853 views
/*1* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/*24* @test25* @bug 719220226* @summary Make sure keytool prints both unknown and unparseable extensions27* @compile -XDignore.symbol.file UnknownAndUnparseable.java28* @run main UnknownAndUnparseable29*/3031import java.io.ByteArrayOutputStream;32import java.io.File;33import java.io.PrintStream;34import sun.security.x509.PKIXExtensions;3536public class UnknownAndUnparseable {37public static void main(String[] args) throws Exception {3839String s = "-keystore ks -storepass changeit -keypass changeit -debug ";40new File("ks").delete();4142// Create a cert with an unknown extension: 1.2.3.4, and an invalid43// KeyUsage extension44String genkey = s45+ "-genkeypair -alias a -dname CN=A -ext 1.2.3.4=1234 -keyalg rsa "46+ "-ext " + PKIXExtensions.KeyUsage_Id.toString() + "=5678";47sun.security.tools.keytool.Main.main(genkey.split(" "));4849// Get the list output to a string50String list = s + "-list -v";51ByteArrayOutputStream bout = new ByteArrayOutputStream();52PrintStream oldOut = System.out;53System.setOut(new PrintStream(bout));54sun.security.tools.keytool.Main.main(list.split(" "));55System.setOut(oldOut);56String out = bout.toString();57System.out.println(out);5859if (!out.contains("1.2.3.4")) {60throw new Exception("Unknown extension 1.2.3.4 is not listed");61}62if (!out.contains("0000: 12 34")) {63throw new Exception("Unknown extension 1.2.3.4 has no content");64}65if (!out.contains("Unparseable KeyUsage")) {66throw new Exception("Unparseable KeyUsage is not listed");67}68if (!out.contains("0000: 56 78")) {69throw new Exception("Unparseable KeyUsage has no content");70}71}72}737475