< prev index next >

jdk/test/com/sun/jndi/cosnaming/CNNameParser.java

Print this page




   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());




   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());


< prev index next >