1/*
2 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24/**
25 * @test
26 * @author Vincent Ryan
27 * @bug 6393770
28 * @summary Check that an LdapPrincipal can be initialized using various forms
29 *          of string distinguished names.
30 */
31
32import java.util.*;
33import java.security.Principal;
34import javax.security.auth.Subject;
35import com.sun.security.auth.LdapPrincipal;
36
37/*
38 * Create principals using string distinguished names containing non-standard
39 * attribute names.  A non-standard attribute name is one that is not listed in
40 * Section 2.3 of RFC 2253. Typically, such distinguished names are valid in
41 * LDAP but are not valid in X.500 as they cannot be encoded using ASN.1 BER
42 * (because the object identifier corresponding to the attribute name is
43 * unknown).
44 */
45public class CreateLdapPrincipals {
46
47    public static void main(String[] args) throws Exception {
48
49        Set<Principal> principals = new Subject().getPrincipals();
50
51        principals.add(new LdapPrincipal("x=y"));
52        principals.add(new LdapPrincipal("x=#04024869"));
53        principals.add(new LdapPrincipal("1.2.3=x"));
54        principals.add(new LdapPrincipal("A=B"));
55        principals.add(new LdapPrincipal("a=b+c=d"));
56        principals.add(new LdapPrincipal("a=b,c=d,e=f"));
57        principals.add(new LdapPrincipal("f=g, h=i, j=k"));
58
59        System.out.println("Successfully created " + principals.size() +
60            " LDAP principals:");
61        System.out.println(principals);
62    }
63}
64