blob: 72554581d6ac8008667594aa12539fccd0440885 [file] [log] [blame]
//
// ========================================================================
// Copyright (c) 1995-2017 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
//
package org.eclipse.jetty.util.thread;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import org.eclipse.jetty.util.log.StacklessLogging;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class SweeperTest
{
private Scheduler scheduler;
@Before
public void prepare() throws Exception
{
scheduler = new ScheduledExecutorScheduler();
scheduler.start();
}
@After
public void dispose() throws Exception
{
scheduler.stop();
}
@Test
public void testResourceNotSweptIsNotRemoved() throws Exception
{
testResourceSweepRemove(false);
}
@Test
public void testResourceSweptIsRemoved() throws Exception
{
testResourceSweepRemove(true);
}
private void testResourceSweepRemove(final boolean sweep) throws Exception
{
long period = 1000;
final CountDownLatch taskLatch = new CountDownLatch(1);
Sweeper sweeper = new Sweeper(scheduler, period)
{
@Override
public void run()
{
super.run();
taskLatch.countDown();
}
};
sweeper.start();
final CountDownLatch sweepLatch = new CountDownLatch(1);
sweeper.offer(new Sweeper.Sweepable()
{
@Override
public boolean sweep()
{
sweepLatch.countDown();
return sweep;
}
});
Assert.assertTrue(sweepLatch.await(2 * period, TimeUnit.MILLISECONDS));
Assert.assertTrue(taskLatch.await(2 * period, TimeUnit.MILLISECONDS));
Assert.assertEquals(sweep ? 0 : 1, sweeper.getSize());
sweeper.stop();
}
@Test
public void testSweepThrows() throws Exception
{
try(StacklessLogging scope = new StacklessLogging(Sweeper.class))
{
long period = 500;
final CountDownLatch taskLatch = new CountDownLatch(2);
Sweeper sweeper = new Sweeper(scheduler, period)
{
@Override
public void run()
{
super.run();
taskLatch.countDown();
}
};
sweeper.start();
final CountDownLatch sweepLatch = new CountDownLatch(2);
sweeper.offer(new Sweeper.Sweepable()
{
@Override
public boolean sweep()
{
sweepLatch.countDown();
throw new NullPointerException("Test exception!");
}
});
Assert.assertTrue(sweepLatch.await(4 * period, TimeUnit.MILLISECONDS));
Assert.assertTrue(taskLatch.await(4 * period, TimeUnit.MILLISECONDS));
Assert.assertEquals(1, sweeper.getSize());
sweeper.stop();
}
}
}