--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/jdk/test/javax/management/modelmbean/OnUnregisterTest.java Sat Dec 01 00:00:00 2007 +0000
@@ -0,0 +1,84 @@
+/*
+ * Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+/*
+ * @test
+ * @bug 6175387
+ * @summary Check that OnUnregister is an allowed value for persistPolicy
+ * in ModelMBeanAttributeInfo
+ * @author Eamonn McManus
+ * @run clean OnUnregisterTest
+ * @run build OnUnregisterTest
+ * @run main OnUnregisterTest
+ */
+
+// Since our RequiredModelMBean implementation doesn't support
+// persistence, it doesn't have any behaviour for OnUnregister, so we
+// can't test that. We can only test that the value is allowed.
+
+// In versions of the API prior to the addition of OnUnregister, the
+// attempt to construct a DescriptorSupport with persistPolicy=OnUnregister
+// will throw an exception.
+
+// The OnUnregister value is not case-sensitive, and we test that.
+
+import javax.management.*;
+import javax.management.modelmbean.*;
+
+public class OnUnregisterTest {
+ public static void main(String[] args) throws Exception {
+ MBeanServer mbs = MBeanServerFactory.newMBeanServer();
+ ObjectName on = new ObjectName("a:b=c");
+
+ DescriptorSupport desc;
+ ModelMBeanAttributeInfo mmbai;
+ ModelMBeanInfo mmbi;
+ ModelMBean mmb;
+
+ desc = new DescriptorSupport("name=foo",
+ "descriptorType=attribute",
+ "persistPolicy=OnUnregister");
+ mmbai = new ModelMBeanAttributeInfo("foo", "int", "a foo",
+ true, true, false, desc);
+ mmbi = new ModelMBeanInfoSupport("a.b.c", "description",
+ new ModelMBeanAttributeInfo[] {mmbai},
+ null, null, null);
+ mmb = new RequiredModelMBean(mmbi);
+
+ mbs.registerMBean(mmb, on);
+ mbs.unregisterMBean(on);
+
+ desc = new DescriptorSupport("name=foo", "descriptorType=attribute");
+ mmbai = new ModelMBeanAttributeInfo("foo", "int", "a foo",
+ true, true, false, desc);
+ desc = new DescriptorSupport("name=bar",
+ "descriptorType=mbean",
+ "persistPolicy=onUnregister");
+ mmbi = new ModelMBeanInfoSupport("a.b.c", "description",
+ new ModelMBeanAttributeInfo[] {mmbai},
+ null, null, null, desc);
+ mmb = new RequiredModelMBean(mmbi);
+ mbs.registerMBean(mmb, on);
+ mbs.unregisterMBean(on);
+ }
+}