001: /*
002: * JBoss, Home of Professional Open Source.
003: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
004: * as indicated by the @author tags. See the copyright.txt file in the
005: * distribution for a full listing of individual contributors.
006: *
007: * This is free software; you can redistribute it and/or modify it
008: * under the terms of the GNU Lesser General Public License as
009: * published by the Free Software Foundation; either version 2.1 of
010: * the License, or (at your option) any later version.
011: *
012: * This software is distributed in the hope that it will be useful,
013: * but WITHOUT ANY WARRANTY; without even the implied warranty of
014: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015: * Lesser General Public License for more details.
016: *
017: * You should have received a copy of the GNU Lesser General Public
018: * License along with this software; if not, write to the Free
019: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
020: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
021: */
022: package org.jboss.test.aop.test;
023:
024: import javax.management.MBeanServerConnection;
025: import javax.management.ObjectName;
026:
027: import junit.framework.Test;
028: import junit.framework.TestSuite;
029:
030: import org.jboss.test.JBossTestCase;
031:
032: /**
033: * Sample client for the jboss container.
034: *
035: * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
036: * @version $Id: AOPUnitTestCase.java 57211 2006-09-26 12:39:46Z dimitris@jboss.org $
037: */
038:
039: public class AOPUnitTestCase extends JBossTestCase {
040: org.apache.log4j.Category log = getLog();
041:
042: static boolean deployed = false;
043: static int test = 0;
044:
045: public AOPUnitTestCase(String name) {
046:
047: super (name);
048:
049: }
050:
051: public void testAspect() throws Exception {
052: MBeanServerConnection server = getServer();
053: ObjectName testerName = new ObjectName(
054: "jboss.aop:name=AOPTester");
055: Object[] params = {};
056: String[] sig = {};
057: server.invoke(testerName, "testAspect", params, sig);
058: }
059:
060: public void testBasic() throws Exception {
061: MBeanServerConnection server = getServer();
062: ObjectName testerName = new ObjectName(
063: "jboss.aop:name=AOPTester");
064: Object[] params = {};
065: String[] sig = {};
066: server.invoke(testerName, "testBasic", params, sig);
067: }
068:
069: public void testCallerPointcut() throws Exception {
070: MBeanServerConnection server = getServer();
071: ObjectName testerName = new ObjectName(
072: "jboss.aop:name=AOPTester");
073: Object[] params = {};
074: String[] sig = {};
075: server.invoke(testerName, "testCallerPointcut", params, sig);
076: }
077:
078: public void testInheritance() throws Exception {
079: MBeanServerConnection server = getServer();
080: ObjectName testerName = new ObjectName(
081: "jboss.aop:name=AOPTester");
082: Object[] params = {};
083: String[] sig = {};
084: server.invoke(testerName, "testInheritance", params, sig);
085: }
086:
087: public void testMetadata() throws Exception {
088: MBeanServerConnection server = getServer();
089: ObjectName testerName = new ObjectName(
090: "jboss.aop:name=AOPTester");
091: Object[] params = {};
092: String[] sig = {};
093: server.invoke(testerName, "testMetadata", params, sig);
094: }
095:
096: public void testDynamicInterceptors() throws Exception {
097: MBeanServerConnection server = getServer();
098: ObjectName testerName = new ObjectName(
099: "jboss.aop:name=AOPTester");
100: Object[] params = {};
101: String[] sig = {};
102: server.invoke(testerName, "testDynamicInterceptors", params,
103: sig);
104: }
105:
106: public void testFieldInterception() throws Exception {
107: MBeanServerConnection server = getServer();
108: ObjectName testerName = new ObjectName(
109: "jboss.aop:name=AOPTester");
110: Object[] params = {};
111: String[] sig = {};
112: server.invoke(testerName, "testFieldInterception", params, sig);
113: }
114:
115: public void testMixin() throws Exception {
116: MBeanServerConnection server = getServer();
117: ObjectName testerName = new ObjectName(
118: "jboss.aop:name=AOPTester");
119: Object[] params = {};
120: String[] sig = {};
121: server.invoke(testerName, "testMixin", params, sig);
122: }
123:
124: public void testMethodInterception() throws Exception {
125: MBeanServerConnection server = getServer();
126: ObjectName testerName = new ObjectName(
127: "jboss.aop:name=AOPTester");
128: Object[] params = {};
129: String[] sig = {};
130: server
131: .invoke(testerName, "testMethodInterception", params,
132: sig);
133: }
134:
135: public void testConstructorInterception() throws Exception {
136: MBeanServerConnection server = getServer();
137: ObjectName testerName = new ObjectName(
138: "jboss.aop:name=AOPTester");
139: Object[] params = {};
140: String[] sig = {};
141: server.invoke(testerName, "testConstructorInterception",
142: params, sig);
143: }
144:
145: public void testExceptions() throws Exception {
146: MBeanServerConnection server = getServer();
147: ObjectName testerName = new ObjectName(
148: "jboss.aop:name=AOPTester");
149: Object[] params = {};
150: String[] sig = {};
151: server.invoke(testerName, "testExceptions", params, sig);
152: }
153:
154: public static Test suite() throws Exception {
155: TestSuite suite = new TestSuite();
156: suite.addTest(new TestSuite(AOPUnitTestCase.class));
157:
158: AOPTestSetup setup = new AOPTestSetup(suite, "aoptest.sar");
159: return setup;
160: }
161:
162: }
|