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