0N/A/*
2362N/A * Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6181936
0N/A * @summary Test basic functionality of X500Principal.getName(String, Map)
0N/A * @author Sean Mullan
0N/A */
0N/Aimport java.util.Collections;
0N/Aimport java.util.HashMap;
0N/Aimport java.util.Map;
0N/Aimport javax.security.auth.x500.X500Principal;
0N/A
0N/Apublic class OIDMap {
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A
0N/A X500Principal p = null;
0N/A Map<String, String> m1, m2 = null;
0N/A
0N/A // test null oidMap
0N/A p = new X500Principal("CN=user");
0N/A try {
0N/A p.getName("RFC2253", null);
0N/A throw new Exception
0N/A ("expected NullPointerException for null oidMap");
0N/A } catch (NullPointerException npe) {}
0N/A
0N/A // test improperly specified keyword
0N/A m1 = Collections.singletonMap("FOO", "1.2.3");
0N/A m2 = Collections.singletonMap("1.2.3", "*&$");
0N/A p = new X500Principal("FOO=user", m1);
0N/A try {
0N/A p.getName("RFC2253", m2);
0N/A throw new Exception
0N/A ("expected IllegalArgumentException for bad keyword");
0N/A } catch (IllegalArgumentException iae) {}
0N/A try {
0N/A m2 = Collections.singletonMap("1.2.3", "1abc");
0N/A p.getName("RFC2253", m2);
0N/A throw new Exception
0N/A ("expected IllegalArgumentException for bad keyword");
0N/A } catch (IllegalArgumentException iae) {}
0N/A try {
0N/A m2 = Collections.singletonMap("1.2.3", "");
0N/A p.getName("RFC2253", m2);
0N/A throw new Exception
0N/A ("expected IllegalArgumentException for bad keyword");
0N/A } catch (IllegalArgumentException iae) {}
0N/A try {
0N/A m2 = Collections.singletonMap("1.2.3", "a1_b)a");
0N/A p.getName("RFC2253", m2);
0N/A throw new Exception
0N/A ("expected IllegalArgumentException for bad keyword");
0N/A } catch (IllegalArgumentException iae) {}
0N/A
0N/A // ignore improperly specified OID
0N/A m1 = Collections.singletonMap("*&D", "FOO");
0N/A p = new X500Principal("CN=user");
0N/A p.getName("RFC2253", m1);
0N/A
0N/A // override builtin OIDs
0N/A m1 = Collections.singletonMap("2.5.4.3", "FOO");
0N/A p = new X500Principal("CN=user");
0N/A if (!p.getName("RFC2253", m1).startsWith("FOO")) {
0N/A throw new Exception("mapping did not override builtin OID");
0N/A }
0N/A
0N/A // disallow CANONICAL format
0N/A try {
0N/A p.getName("CANONICAL", m1);
0N/A throw new Exception
0N/A ("expected IllegalArgumentException for CANONICAL format");
0N/A } catch (IllegalArgumentException iae) {}
0N/A // disallow invalid format
0N/A try {
0N/A p.getName("YABBADABBADOO", m1);
0N/A throw new Exception
0N/A ("expected IllegalArgumentException for invalid format");
0N/A } catch (IllegalArgumentException iae) {}
0N/A
0N/A // map OIDs
0N/A m1 = Collections.singletonMap("1.1", "BAR");
0N/A p = new X500Principal("1.1=sean");
0N/A System.out.println(p.getName("RFC1779", m1));
0N/A System.out.println(p.getName("RFC2253", m1));
0N/A // FIXME: 1779 format is broken!
0N/A if (!p.getName("RFC1779", m1).startsWith("BAR")) {
0N/A throw new Exception("mapping did not override builtin OID");
0N/A }
0N/A }
0N/A}