01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.test.util.test;
23:
24: import org.jboss.test.JBossTestCase;
25: import org.jboss.util.timeout.Timeout;
26: import org.jboss.util.timeout.TimeoutFactory;
27: import org.jboss.util.timeout.TimeoutTarget;
28:
29: import EDU.oswego.cs.dl.util.concurrent.WaitableInt;
30:
31: /**
32: * TimeoutFactoryStressTestCase.
33: *
34: * @author <a href="adrian@jboss.com">Adrian Brock</a>
35: * @version $Revision: 57211 $
36: */
37: public class TimeoutFactoryStressTestCase extends JBossTestCase {
38: WaitableInt count = new WaitableInt(0);
39: TimeoutFactory factory = TimeoutFactory.getSingleton();
40:
41: public void testStress() throws Exception {
42: Thread[] threads = new Thread[getThreadCount()];
43: for (int i = 0; i < threads.length; ++i)
44: threads[i] = new Thread(new MyRunnable(), "Test thread "
45: + i);
46: for (int i = 0; i < threads.length; ++i)
47: threads[i].start();
48: count.whenEqual(threads.length, null);
49: }
50:
51: class MyRunnable implements Runnable {
52: public void run() {
53: factory.createTimeout(System.currentTimeMillis() + 10,
54: instance);
55: }
56: }
57:
58: MyTimeout instance = new MyTimeout();
59:
60: class MyTimeout implements TimeoutTarget, Runnable {
61: public void timedOut(Timeout timeout) {
62: assertTrue(timeout != null);
63: run();
64: }
65:
66: public void run() {
67: count.increment();
68: }
69: }
70:
71: /**
72: * Create a new TimeoutFactoryStressTestCase.
73: *
74: * @param name the test name
75: */
76: public TimeoutFactoryStressTestCase(String name) {
77: super(name);
78: }
79: }
|