blob: d4f584210f07f0ddd584a6a48ce66a3cb28176d5 [file] [log] [blame]
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed 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 dot.junit.opcodes.monitor_exit;
import dot.junit.DxTestCase;
import dot.junit.DxUtil;
import dot.junit.opcodes.monitor_exit.d.T_monitor_exit_1;
import dot.junit.opcodes.monitor_exit.d.T_monitor_exit_3;
public class Test_monitor_exit extends DxTestCase {
/**
* @title thread is not monitor owner
*/
public void testE1() throws InterruptedException {
//@uses dot.junit.opcodes.monitor_exit.TestRunnable
final T_monitor_exit_1 t = new T_monitor_exit_1();
final Object o = new Object();
Runnable r = new TestRunnable(t, o);
synchronized (o) {
Thread th = new Thread(r);
th.start();
th.join();
}
if (t.result == false) {
fail("expected IllegalMonitorStateException");
}
}
/**
* @title expected NullPointerException
*/
public void testE3() {
T_monitor_exit_3 t = new T_monitor_exit_3();
try {
t.run();
fail("expected NullPointerException");
} catch (NullPointerException npe) {
// expected
}
}
/**
* @constraint A23
* @title number of registers
*/
public void testVFE1() {
try {
Class.forName("dot.junit.opcodes.monitor_exit.d.T_monitor_exit_4");
fail("expected a verification exception");
} catch (Throwable t) {
DxUtil.checkVerifyException(t);
}
}
/**
* @constraint B1
* @title type of arguments - int
*/
public void testVFE2() {
try {
Class.forName("dot.junit.opcodes.monitor_exit.d.T_monitor_exit_5");
fail("expected a verification exception");
} catch (Throwable t) {
DxUtil.checkVerifyException(t);
}
}
/**
* @constraint B1
* @title type of arguments - float
*/
public void testVFE3() {
try {
Class.forName("dot.junit.opcodes.monitor_exit.d.T_monitor_exit_6");
fail("expected a verification exception");
} catch (Throwable t) {
DxUtil.checkVerifyException(t);
}
}
/**
* @constraint B1
* @title type of arguments - long
*/
public void testVFE4() {
try {
Class.forName("dot.junit.opcodes.monitor_exit.d.T_monitor_exit_7");
fail("expected a verification exception");
} catch (Throwable t) {
DxUtil.checkVerifyException(t);
}
}
/**
* @constraint B1
* @title type of arguments - double
*/
public void testVFE5() {
try {
Class.forName("dot.junit.opcodes.monitor_exit.d.T_monitor_exit_8");
fail("expected a verification exception");
} catch (Throwable t) {
DxUtil.checkVerifyException(t);
}
}
}
class TestRunnable implements Runnable {
private T_monitor_exit_1 t;
private Object o;
public TestRunnable(T_monitor_exit_1 t, Object o) {
this.t = t;
this.o = o;
}
public void run() {
try {
t.run(o);
} catch (IllegalMonitorStateException imse) {
// expected
t.result = true;
}
}
}