1 /*
   2  * Copyright (c) 2007, 2013, 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 /* @test
  25  * @bug 4238914
  26  * @summary Tests that JNDI/COS naming parser supports the syntax
  27  * defined in the new INS standard.
  28  * @modules java.corba/com.sun.jndi.cosnaming
  29  */
  30 
  31 import javax.naming.*;
  32 
  33 public class CNNameParser {
  34 
  35     public static void main(String[] args) throws Exception {
  36 
  37         NameParser parser = new com.sun.jndi.cosnaming.CNNameParser();
  38 
  39         for (int i = 0; i < compounds.length; i++) {
  40             checkCompound(parser, compounds[i], compoundComps[i]);
  41         }
  42     }
  43 
  44     private static void checkName(Name name, String[] comps) throws Exception {
  45         if (name.size() != comps.length) {
  46             throw new Exception(
  47                 "test failed; incorrect component count in " + name + "; " +
  48                 "expecting " + comps.length + " got " + name.size());
  49         }
  50         for (int i = 0; i < name.size(); i++) {
  51             if (!comps[i].equals(name.get(i))) {
  52                 throw new Exception (
  53                     "test failed; invalid component in " + name + "; " +
  54                     "expecting '" + comps[i] + "' got '" + name.get(i) + "'");
  55             }
  56         }
  57     }
  58 
  59     private static void checkCompound(NameParser parser,
  60         String input, String[] comps) throws Exception {
  61         checkName(parser.parse(input), comps);
  62     }
  63 
  64     private static final String[] compounds = {
  65         "a/b/c",
  66         "a.b/c.d",
  67         "a",
  68         ".",
  69         "a.",
  70         "c.d",
  71         ".e",
  72         "a/x\\/y\\/z/b",
  73         "a\\.b.c\\.d/e.f",
  74         "a/b\\\\/c",
  75         "x\\\\.y",
  76         "x\\.y",
  77         "x.\\\\y",
  78         "x.y\\\\",
  79         "\\\\x.y",
  80         "a.b\\.c/d"
  81     };
  82 
  83     private static final String[][] compoundComps = {
  84         {"a", "b", "c"},
  85         {"a.b", "c.d"},
  86         {"a"},
  87         {"."},
  88         {"a"},
  89         {"c.d"},
  90         {".e"},
  91         {"a", "x\\/y\\/z", "b"},
  92         {"a\\.b.c\\.d", "e.f"},
  93         {"a", "b\\\\", "c"},
  94         {"x\\\\.y"},
  95         {"x\\.y"},
  96         {"x.\\\\y"},
  97         {"x.y\\\\"},
  98         {"\\\\x.y"},
  99         {"a.b\\.c", "d"},
 100     };
 101 }