2 * Copyright 2005 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.wamblee.concurrency.spring;
19 import org.springframework.aop.framework.ProxyFactoryBean;
20 import org.wamblee.concurrency.AbstractLockTestCase;
21 import org.wamblee.concurrency.JvmLock;
22 import org.wamblee.concurrency.spring.LockAdvice;
23 import org.wamblee.test.TimingUtils;
28 * @author Erik Brakkee
30 public class LockAdviceTest extends AbstractLockTestCase {
32 private class Runner implements Runnable {
34 LockAdviceTest.this.getTracker().eventOccurred(ACQUIRED);
35 TimingUtils.sleep(SLEEP_TIME);
39 private Runnable _target;
44 * @see org.wamblee.concurrency.AbstractLockTestCase#setUp()
47 protected void setUp() throws Exception {
50 Runner runner = new Runner();
51 LockAdvice advice = new LockAdvice(new JvmLock());
53 ProxyFactoryBean support = new ProxyFactoryBean();
54 support.setInterfaces(new Class[]{ Runnable.class });
55 support.setTarget(runner);
56 support.addAdvice(advice);
57 _target = (Runnable)support.getObject();
64 * @see org.wamblee.concurrency.AbstractLockTestCase#runThread()
67 protected Thread runThread() {
68 Thread t = new Thread(new Runnable() {
71 getTracker().eventOccurred(STARTED);
73 getTracker().eventOccurred(RELEASED);
74 } catch (Throwable e) {
75 throw new RuntimeException(e);