0N/A/*
2362N/A * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 5072004
0N/A * @summary Test new rules for isValue
0N/A * @author Eamonn McManus
0N/A */
0N/A
0N/Aimport javax.management.openmbean.*;
0N/A
0N/Apublic class IsValueTest {
0N/A private static String failed;
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A CompositeType ctOld =
0N/A new CompositeType("same.type.name", "old",
0N/A new String[] {"int", "string"},
0N/A new String[] {"an int", "a string"},
0N/A new OpenType[] {SimpleType.INTEGER, SimpleType.STRING});
0N/A CompositeType ctNew =
0N/A new CompositeType("same.type.name", "new",
0N/A new String[] {"int", "int2", "string"},
0N/A new String[] {"an int", "another int", "a string"},
0N/A new OpenType[] {SimpleType.INTEGER, SimpleType.INTEGER, SimpleType.STRING});
0N/A CompositeData cdOld =
0N/A new CompositeDataSupport(ctOld,
0N/A new String[] {"string", "int"},
0N/A new Object[] {"bar", 17});
0N/A CompositeData cdNew =
0N/A new CompositeDataSupport(ctNew,
0N/A new String[] {"int2", "int", "string"},
0N/A new Object[] {4, 3, "foo"});
0N/A
0N/A // Check that adding fields doesn't make isValue return false
0N/A check(ctOld.isValue(cdNew), "isValue: " + ctOld + "[" + cdNew + "]");
0N/A
0N/A // Check that removing fields does make isValue return false
0N/A check(!ctNew.isValue(cdOld), "isValue: " + ctNew + "[" + cdOld + "]");
0N/A
0N/A // Check that we can add a contained CompositeData with extra fields
0N/A // inside another CompositeData
0N/A CompositeType ctWrapOld =
0N/A new CompositeType("wrapper", "wrapper",
0N/A new String[] {"wrapped"},
0N/A new String[] {"wrapped"},
0N/A new OpenType[] {ctOld});
0N/A try {
0N/A new CompositeDataSupport(ctWrapOld,
0N/A new String[] {"wrapped"},
0N/A new Object[] {cdNew});
0N/A check(true, "CompositeDataSupport containing CompositeDataSupport");
0N/A } catch (Exception e) {
0N/A e.printStackTrace(System.out);
0N/A check(false, "CompositeDataSupport containing CompositeDataSupport: " + e);
0N/A }
0N/A
0N/A // ...but not the contrary
0N/A CompositeType ctWrapNew =
0N/A new CompositeType("wrapper", "wrapper",
0N/A new String[] {"wrapped"},
0N/A new String[] {"wrapped"},
0N/A new OpenType[] {ctNew});
0N/A try {
0N/A new CompositeDataSupport(ctWrapNew,
0N/A new String[] {"wrapped"},
0N/A new Object[] {cdOld});
0N/A check(false, "CompositeDataSupport containing old did not get exception");
0N/A } catch (OpenDataException e) {
0N/A check(true, "CompositeDataSupport containing old got expected exception: " + e);
0N/A }
0N/A
0N/A // Check that a TabularData can get an extended CompositeData row
0N/A TabularType ttOld =
0N/A new TabularType("tabular", "tabular", ctOld, new String[] {"int"});
0N/A TabularData tdOld =
0N/A new TabularDataSupport(ttOld);
0N/A try {
0N/A tdOld.put(cdNew);
0N/A check(true, "TabularDataSupport adding extended CompositeData");
0N/A } catch (Exception e) {
0N/A e.printStackTrace(System.out);
0N/A check(false, "TabularDataSupport adding extended CompositeData: " + e);
0N/A }
0N/A
0N/A // Check that an extended TabularData can be put into a CompositeData
0N/A TabularType ttNew =
0N/A new TabularType("tabular", "tabular", ctNew, new String[] {"int"});
0N/A TabularData tdNew =
0N/A new TabularDataSupport(ttNew);
0N/A CompositeType cttWrap =
0N/A new CompositeType("wrapTT", "wrapTT",
0N/A new String[] {"wrapped"},
0N/A new String[] {"wrapped"},
0N/A new OpenType[] {ttOld});
0N/A try {
0N/A new CompositeDataSupport(cttWrap,
0N/A new String[] {"wrapped"},
0N/A new Object[] {tdNew});
0N/A check(true, "CompositeDataSupport adding extended TabularData");
0N/A } catch (Exception e) {
0N/A e.printStackTrace(System.out);
0N/A check(false, "CompositeDataSupport adding extended TabularData: " + e);
0N/A }
0N/A
0N/A if (failed != null)
0N/A throw new Exception("TEST FAILED: " + failed);
0N/A }
0N/A
0N/A private static void check(boolean value, String what) {
0N/A if (value)
0N/A System.out.println("OK: " + what);
0N/A else {
0N/A failed = what;
0N/A System.out.println("FAILED: " + what);
0N/A }
0N/A }
0N/A}