IsValueTest.java revision 2362
0N/A/*
1472N/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 *
1472N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A * or visit www.oracle.com if you need additional information or have any
1472N/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 + "]");
// Check that we can add a contained CompositeData with extra fields
// inside another CompositeData
CompositeType ctWrapOld =
new CompositeType("wrapper", "wrapper",
new String[] {"wrapped"},
new String[] {"wrapped"},
new OpenType[] {ctOld});
try {
new CompositeDataSupport(ctWrapOld,
new String[] {"wrapped"},
new Object[] {cdNew});
check(true, "CompositeDataSupport containing CompositeDataSupport");
} catch (Exception e) {
e.printStackTrace(System.out);
check(false, "CompositeDataSupport containing CompositeDataSupport: " + e);
}
// ...but not the contrary
CompositeType ctWrapNew =
new CompositeType("wrapper", "wrapper",
new String[] {"wrapped"},
new String[] {"wrapped"},
new OpenType[] {ctNew});
try {
new CompositeDataSupport(ctWrapNew,
new String[] {"wrapped"},
new Object[] {cdOld});
check(false, "CompositeDataSupport containing old did not get exception");
} catch (OpenDataException e) {
check(true, "CompositeDataSupport containing old got expected exception: " + e);
}
// Check that a TabularData can get an extended CompositeData row
TabularType ttOld =
new TabularType("tabular", "tabular", ctOld, new String[] {"int"});
TabularData tdOld =
new TabularDataSupport(ttOld);
try {
tdOld.put(cdNew);
check(true, "TabularDataSupport adding extended CompositeData");
} catch (Exception e) {
e.printStackTrace(System.out);
check(false, "TabularDataSupport adding extended CompositeData: " + e);
}
// Check that an extended TabularData can be put into a CompositeData
TabularType ttNew =
new TabularType("tabular", "tabular", ctNew, new String[] {"int"});
TabularData tdNew =
new TabularDataSupport(ttNew);
CompositeType cttWrap =
new CompositeType("wrapTT", "wrapTT",
new String[] {"wrapped"},
new String[] {"wrapped"},
new OpenType[] {ttOld});
try {
new CompositeDataSupport(cttWrap,
new String[] {"wrapped"},
new Object[] {tdNew});
check(true, "CompositeDataSupport adding extended TabularData");
} catch (Exception e) {
e.printStackTrace(System.out);
check(false, "CompositeDataSupport adding extended TabularData: " + e);
}
if (failed != null)
throw new Exception("TEST FAILED: " + failed);
}
private static void check(boolean value, String what) {
if (value)
System.out.println("OK: " + what);
else {
failed = what;
System.out.println("FAILED: " + what);
}
}
}