📄 rmicadvancedtest.java
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */package org.apache.tools.ant.taskdefs;import org.apache.tools.ant.BuildFileTest;import org.apache.tools.ant.BuildException;import org.apache.tools.ant.taskdefs.rmic.RmicAdapterFactory;import org.apache.tools.ant.taskdefs.rmic.DefaultRmicAdapter;public class RmicAdvancedTest extends BuildFileTest { public RmicAdvancedTest(String name) { super(name); } private final static String TASKDEFS_DIR = "src/etc/testcases/taskdefs/rmic/"; /** * The JUnit setup method */ public void setUp() throws Exception { super.setUp(); configureProject(TASKDEFS_DIR + "rmic.xml"); } /** * The teardown method for JUnit */ public void tearDown() { executeTarget("teardown"); } /** * verify that "default" binds us to the default compiler */ public void testDefault() throws Exception { executeTarget("testDefault"); } /** * verify that "" binds us to the default compiler */ public void testEmpty() throws Exception { executeTarget("testEmpty"); } /** * test sun's rmic compiler */ public void testRmic() throws Exception { executeTarget("testRmic"); } /** * test sun's rmic compiler strips * out -J arguments when not forking */ public void testRmicJArg() throws Exception { executeTarget("testRmicJArg"); } /** * A unit test for JUnit */ public void testKaffe() throws Exception { executeTarget("testKaffe"); } //currently do not work /** * test weblogic */ public void XtestWlrmic() throws Exception { executeTarget("testWlrmic"); } /** * test weblogic's stripping of -J args */ public void XtestWlrmicJArg() throws Exception { executeTarget("testWlrmicJArg"); } /** * test the forking compiler */ public void NotestForking() throws Exception { executeTarget("testForking"); } /** * test the forking compiler */ public void testForkingAntClasspath() throws Exception { executeTarget("testForkingAntClasspath"); } /** * test the forking compiler */ public void testAntClasspath() throws Exception { executeTarget("testAntClasspath"); } /** * A unit test for JUnit */ public void testBadName() throws Exception { expectBuildExceptionContaining("testBadName", "compiler not known", RmicAdapterFactory.ERROR_UNKNOWN_COMPILER); } /** * load an adapter by name */ public void testExplicitClass() throws Exception { executeTarget("testExplicitClass"); } /** * A unit test for JUnit */ public void testWrongClass() throws Exception { expectBuildExceptionContaining("testWrongClass", "class not an RMIC adapter", RmicAdapterFactory.ERROR_NOT_RMIC_ADAPTER); } /** * A unit test for JUnit */ public void testDefaultBadClass() throws Exception { expectBuildExceptionContaining("testDefaultBadClass", "expected the class to fail", Rmic.ERROR_RMIC_FAILED); //dont look for much text here as it is vendor and version dependent assertLogContaining("unimplemented.class"); } /** * A unit test for JUnit */ public void testMagicProperty() throws Exception { expectBuildExceptionContaining("testMagicProperty", "magic property not working", RmicAdapterFactory.ERROR_UNKNOWN_COMPILER); } /** * A unit test for JUnit */ public void testMagicPropertyOverridesEmptyString() throws Exception { expectBuildExceptionContaining("testMagicPropertyOverridesEmptyString", "magic property not working", RmicAdapterFactory.ERROR_UNKNOWN_COMPILER); } /** * */ public void testMagicPropertyIsEmptyString() throws Exception { executeTarget("testMagicPropertyIsEmptyString"); } public void NotestFailingAdapter() throws Exception { expectBuildExceptionContaining("testFailingAdapter", "expected failures to propagate", Rmic.ERROR_RMIC_FAILED); } /** * test that version 1.1 stubs are good * @throws Exception */ public void testVersion11() throws Exception { executeTarget("testVersion11"); } /** * test that version 1.2 stubs are good * * @throws Exception */ public void testVersion12() throws Exception { executeTarget("testVersion12"); } /** * test that version compat stubs are good * * @throws Exception */ public void testVersionCompat() throws Exception { executeTarget("testVersionCompat"); } /** * test that passes -Xnew to sun's rmic. * * @throws Exception */ public void testXnew() throws Exception { executeTarget("testXnew"); } /** * test that passes -Xnew to sun's rmic running in a different VM. * * @throws Exception */ public void testXnewForked() throws Exception { executeTarget("testXnewForked"); } /** * test that runs the new xnew compiler adapter. * * @throws Exception */ public void testXnewCompiler() throws Exception { executeTarget("testXnewCompiler"); } /** * test that verifies that IDL compiles. * * @throws Exception */ public void testIDL() throws Exception { executeTarget("testIDL"); } /** * test that verifies that IIOP compiles. * * @throws Exception */ public void testIIOP() throws Exception { executeTarget("testIIOP"); } /** * this little bunny verifies that we can load stuff, and that * a failure to execute is turned into a fault */ public static class FailingRmicAdapter extends DefaultRmicAdapter { public static final String LOG_MESSAGE = "hello from FailingRmicAdapter"; /** * Executes the task. * * @return false -always */ public boolean execute() throws BuildException { getRmic().log(LOG_MESSAGE); return false; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -