test/jdk/com/sun/jndi/dns/AttributeTests/GetNumericRRs.java
author xyin
Wed, 25 Jul 2018 11:03:07 +0800
changeset 51192 499b873761d8
permissions -rw-r--r--
8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/ Reviewed-by: vtewari, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
51192
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     1
/*
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     2
 * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     4
 *
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     8
 *
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    13
 * accompanied this code).
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    14
 *
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    18
 *
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    21
 * questions.
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    22
 */
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    23
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    24
/*
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    25
 * @test
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    26
 * @bug 8198882
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    27
 * @summary Tests that we can get the attributes of a DNS entry by naming
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    28
 *          specific RRs by their type codes. Omit NAPTR for now because
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    29
 *          bind doesn't support it.
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    30
 * @modules java.base/sun.security.util
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    31
 * @library ../lib/
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    32
 * @run main GetNumericRRs
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    33
 */
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    34
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    35
import javax.naming.directory.Attributes;
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    36
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    37
public class GetNumericRRs extends GetRRsBase {
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    38
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    39
    public GetNumericRRs() {
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    40
        // set new test data instead of default value
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    41
        setNumAttrs(new String[][] { { "1", "15", "13", "16" }, { "2", "6" },
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    42
                { "28" }, { "5" }, { "33" }, { "12" }, });
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    43
    }
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    44
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    45
    public static void main(String[] args) throws Exception {
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    46
        new GetNumericRRs().run(args);
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    47
    }
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    48
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    49
    /*
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    50
     * Tests that we can get the attributes of a DNS entry by naming
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    51
     * specific RRs by their type codes. Omit NAPTR for now because
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    52
     * bind doesn't support it.
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    53
     */
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    54
    @Override public void runTest() throws Exception {
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    55
        initContext();
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    56
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    57
        for (int i = 0; i < ROOT_LIMIT; i++) {
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    58
            Attributes retAttrs = getAttributes(getKeys()[i], getNumAttrs()[i]);
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    59
            verifyAttributes(retAttrs, getAttrs()[i]);
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    60
        }
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    61
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    62
        switchToRootUrl();
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    63
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    64
        for (int i = ROOT_LIMIT; i < getKeys().length; i++) {
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    65
            Attributes retAttrs = getAttributes(getKeys()[i], getNumAttrs()[i]);
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    66
            verifyAttributes(retAttrs, getAttrs()[i]);
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    67
        }
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    68
    }
499b873761d8 8198882: Add 10 JNDI tests to com/sun/jndi/dns/AttributeTests/
xyin
parents:
diff changeset
    69
}