KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > aop > test > JMXUnitTestCase


1 /*
2   * JBoss, Home of Professional Open Source
3   * Copyright 2005, JBoss Inc., and individual contributors as indicated
4   * by the @authors tag. See the copyright.txt in the distribution for a
5   * full listing of individual contributors.
6   *
7   * This is free software; you can redistribute it and/or modify it
8   * under the terms of the GNU Lesser General Public License as
9   * published by the Free Software Foundation; either version 2.1 of
10   * the License, or (at your option) any later version.
11   *
12   * This software is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * Lesser General Public License for more details.
16   *
17   * You should have received a copy of the GNU Lesser General Public
18   * License along with this software; if not, write to the Free
19   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21   */

22 package org.jboss.test.aop.test;
23
24 import javax.management.Attribute JavaDoc;
25 import javax.management.MBeanServerConnection JavaDoc;
26 import javax.management.ObjectName JavaDoc;
27
28 import junit.framework.Test;
29 import junit.framework.TestSuite;
30
31 import org.jboss.test.JBossTestCase;
32
33 /**
34  * Sample client for the jboss container.
35  *
36  * @author <a HREF="mailto:bill@burkecentral.com">Bill Burke</a>
37  * @version $Id: JMXUnitTestCase.java 58115 2006-11-04 08:42:14Z scott.stark@jboss.org $
38  */

39
40 public class JMXUnitTestCase
41         extends JBossTestCase
42 {
43    org.jboss.logging.Logger log = getLog();
44
45    static boolean deployed = false;
46    static int test = 0;
47
48    public JMXUnitTestCase(String JavaDoc name)
49    {
50       super(name);
51    }
52
53    public void testIntrospected() throws Exception JavaDoc
54    {
55       MBeanServerConnection JavaDoc server = getServer();
56       ObjectName JavaDoc testerName = new ObjectName JavaDoc("jboss.aop:name=JMXIntrospectedTester");
57       assertEquals("hello", server.getAttribute(testerName, "Value"));
58       server.setAttribute(testerName, new Attribute JavaDoc("Value", "world"));
59       assertEquals("world", server.getAttribute(testerName, "Value"));
60       Boolean JavaDoc rtn = (Boolean JavaDoc) server.getAttribute(testerName, "Flag");
61       assertFalse(rtn.booleanValue());
62       server.setAttribute(testerName, new Attribute JavaDoc("Flag", Boolean.TRUE));
63       rtn = (Boolean JavaDoc) server.getAttribute(testerName, "Flag");
64       assertTrue(rtn.booleanValue());
65
66       Object JavaDoc[] params = {};
67       String JavaDoc[] sig = {};
68       server.invoke(testerName, "reset", params, sig);
69       assertEquals("hello", server.getAttribute(testerName, "Value"));
70       rtn = (Boolean JavaDoc) server.getAttribute(testerName, "Flag");
71       assertFalse(rtn.booleanValue());
72
73       Object JavaDoc[] params2 = {new Integer JavaDoc(1), new Float JavaDoc(1.1), new Float JavaDoc(5.5)};
74       String JavaDoc[] sig2 = {"int", "float", "java.lang.Float"};
75       String JavaDoc val = (String JavaDoc) server.invoke(testerName, "params", params2, sig2);
76
77
78    }
79
80    public static Test suite() throws Exception JavaDoc
81    {
82       TestSuite suite = new TestSuite();
83       suite.addTest(new TestSuite(JMXUnitTestCase.class));
84
85       AOPTestSetup setup = new AOPTestSetup(suite, "jmx-aoptest.sar");
86       return setup;
87    }
88
89 }
90
Popular Tags