/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @bug 4227192
* @summary This is a basic functional test of the dynamic proxy API (part 1).
* @author Peter Jones
*
* @build Basic1
* @run main Basic1
*/
public class Basic1 {
"\nBasic functional test of dynamic proxy API, part 1\n");
try {
Class[] interfaces =
/*
* Generate a proxy class.
*/
/*
* Verify that it is public, final, and not abstract.
*/
throw new RuntimeException("proxy class in not public");
}
throw new RuntimeException("proxy class in not final");
}
throw new RuntimeException("proxy class in abstract");
}
/*
* Verify that it is assignable to the proxy interfaces.
*/
throw new RuntimeException(
"proxy class not assignable to proxy interface " +
interfaces[i].getName());
}
}
/*
* Verify that it has the given permutation of interfaces.
*/
throw new RuntimeException(
"proxy class interfaces are " + l2 +
}
/*
* Verify that system agress that it is a proxy class.
*/
throw new RuntimeException(
"Proxy.isProxyClass returned true for java.lang.Object");
}
throw new RuntimeException(
"Proxy.isProxyClass returned false for proxy class");
}
/*
* Verify that its protection domain is the bootstrap domain.
*/
throw new RuntimeException(
"proxy class does not have AllPermission");
}
/*
* Verify that it has a constructor that takes an
* InvocationHandler instance.
*/
new Class[] { InvocationHandler.class });
/*
* Construct a proxy instance.
*/
/*
* Invoke a method on a proxy instance.
*/
throw new RuntimeException(
"proxy method invocation failure (lastMethod = " +
}
} catch (Exception e) {
e.printStackTrace();
}
}
throws Throwable
{
if (proxy != currentProxy) {
throw new RuntimeException(
"wrong proxy instance passed to invoke method");
}
lastMethod = method;
return null;
}
}
}