blob: 572602cb4f4924c8da3f2de460ca2f3d428d8d79 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.directory.junit.tools;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import java.util.concurrent.atomic.AtomicLong;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
public class MultiThreadedMultiInvokerThreadsafeTest
{
private static final int NUM_THREADS = 100;
private static final int NUM_INVOCATIONS = 10000;
private static final int NUM_METHODS = 10;
@Rule
public MultiThreadedMultiInvoker i = new MultiThreadedMultiInvoker( NUM_THREADS, NUM_INVOCATIONS );
private static AtomicLong counter;
private static long startTime;
@BeforeClass
public static void initCounter()
{
counter = new AtomicLong( 0L );
}
@BeforeClass
public static void initStartTime()
{
startTime = System.currentTimeMillis();
}
@AfterClass
public static void checkCounter()
{
assertEquals( 1L * NUM_THREADS * NUM_INVOCATIONS * NUM_METHODS, counter.get() );
}
@AfterClass
public static void checkRuntime()
{
long endTime = System.currentTimeMillis();
long runTime = endTime - startTime;
if ( runTime > 10000 )
{
fail( "Test shut run in less than 10 seconds." );
}
}
@Test
public void test0()
{
counter.incrementAndGet();
}
@Test
public void test1()
{
counter.incrementAndGet();
}
@Test
public void test2()
{
counter.incrementAndGet();
}
@Test
public void test3()
{
counter.incrementAndGet();
}
@Test
public void test4()
{
counter.incrementAndGet();
}
@Test
public void test5()
{
counter.incrementAndGet();
}
@Test
public void test6()
{
counter.incrementAndGet();
}
@Test
public void test7()
{
counter.incrementAndGet();
}
@Test
public void test8()
{
counter.incrementAndGet();
}
@Test
public void test9()
{
counter.incrementAndGet();
}
}