1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
// Tags: JDK1.2
// Uses: TestBean1 TestBean2 TestBean3 TestBean4
//Copyright (C) 2004 Robert Schuster <thebohemian@gmx.net>
//Mauve is free software; you can redistribute it and/or modify
//it under the terms of the GNU General Public License as published by
//the Free Software Foundation; either version 2, or (at your option)
//any later version.
//Mauve 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 for more details.
//You should have received a copy of the GNU General Public License
//along with Mauve; see the file COPYING. If not, write to
//the Free Software Foundation, 59 Temple Place - Suite 330,
//Boston, MA 02111-1307, USA. */
package gnu.testlet.java.beans.Beans;
import gnu.testlet.Testlet;
import gnu.testlet.TestHarness;
import java.beans.Beans;
/** Various <code>java.beans.Beans.instantiate</code> tests.
*
* @author Robert Schuster
*/
public class instantiate_1 implements Testlet
{
public void test(TestHarness harness)
{
ClassLoader cl = getClass().getClassLoader();
/** Tries to instantiate a Bean with a <code>private</code>
* constructor and expects an <code>IllegalAccessException</code>
* wrapped in an <code>ClassNotFoundException</code> to be thrown.
*/
try
{
Beans.instantiate(cl, "gnu.testlet.java.beans.Beans.TestBean1");
// If this is called then the instantiation succeeded.
harness.fail("Private constructor 1");
}
catch (Exception e)
{
harness.check(
e instanceof ClassNotFoundException,
"Private constructor 2");
harness.check(
e.getCause() instanceof IllegalAccessException,
"Private constructor 3");
}
/** Tries to instantiate a Bean that throws a RuntimeException
* in its constructor and expects an <code>RuntimeException</code>
* wrapped in an <code>ClassNotFoundException</code> to be thrown.
*/
try
{
Beans.instantiate(cl, "gnu.testlet.java.beans.Beans.TestBean2");
// If this is called then the instantiation succeeded.
harness.fail("Exception in Constructor 1");
}
catch (Exception e)
{
harness.check(
e instanceof ClassNotFoundException,
"Exception in Constructor 2");
harness.check(
e.getCause() instanceof RuntimeException,
"Exception in Constructor 3");
}
/** TestBean3 does not provide a zero-argument constructor. This results in
* an InstantiationException that is wrapped in a ClassNotFoundException.
*/
try
{
Beans.instantiate(cl, "gnu.testlet.java.beans.Beans.TestBean3");
// If this is called then the instantiation succeeded.
harness.fail("Missing zero-argument constructor 1");
}
catch (Exception e)
{
harness.check(
e instanceof ClassNotFoundException,
"Missing zero-argument constructor 2");
harness.check(
e.getCause() instanceof InstantiationException,
"Missing zero-argument constructor 3");
}
/* TestBean4 throws a specific TestBean4.Error. The Bean.instantiate
* method should not intercept this. That means we can catch the
* the TestBean4.Error instance here.
*/
try
{
Beans.instantiate(cl, "gnu.testlet.java.beans.Beans.TestBean4");
// If this is called then the instantiation succeeded.
harness.fail("specific Error in constructor 1");
}
catch (TestBean4.Error _)
{
harness.check(true, "specific Error in constructor 2");
}
catch(Exception e) {
harness.fail("specific Error in constructor 3");
}
}
}
|