blob: 19e24e5ce4624da09907b2d6b2cda5a572850e23 [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.camel.util.concurrent;
import java.util.concurrent.Callable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class SubmitOrderedCompletionServiceTest extends Assert {
private ExecutorService executor;
private SubmitOrderedCompletionService<Object> service;
@Before
public void setUp() throws Exception {
executor = Executors.newFixedThreadPool(5);
service = new SubmitOrderedCompletionService<>(executor);
}
@After
public void tearDown() throws Exception {
executor.shutdownNow();
}
@Test
public void testSubmitOrdered() throws Exception {
service.submit(new Callable<Object>() {
public Object call() throws Exception {
return "A";
}
});
service.submit(new Callable<Object>() {
public Object call() throws Exception {
return "B";
}
});
Object a = service.take().get();
Object b = service.take().get();
assertEquals("A", a);
assertEquals("B", b);
}
@Test
public void testSubmitOrderedFirstTaskIsSlow() throws Exception {
service.submit(new Callable<Object>() {
public Object call() throws Exception {
// this task should be slower than B but we should still get it first
Thread.sleep(200);
return "A";
}
});
service.submit(new Callable<Object>() {
public Object call() throws Exception {
return "B";
}
});
Object a = service.take().get();
Object b = service.take().get();
assertEquals("A", a);
assertEquals("B", b);
}
@Test
public void testSubmitOrderedFirstTaskIsSlowUsingPollTimeout() throws Exception {
service.submit(new Callable<Object>() {
public Object call() throws Exception {
// this task should be slower than B but we should still get it first
Thread.sleep(200);
return "A";
}
});
service.submit(new Callable<Object>() {
public Object call() throws Exception {
return "B";
}
});
Object a = service.poll(5, TimeUnit.SECONDS).get();
Object b = service.poll(5, TimeUnit.SECONDS).get();
assertEquals("A", a);
assertEquals("B", b);
}
@Test
public void testSubmitOrderedFirstTaskIsSlowUsingPoll() throws Exception {
final CountDownLatch latch = new CountDownLatch(1);
service.submit(new Callable<Object>() {
public Object call() throws Exception {
// this task should be slower than B but we should still get it first
latch.await(5, TimeUnit.SECONDS);
return "A";
}
});
service.submit(new Callable<Object>() {
public Object call() throws Exception {
return "B";
}
});
// poll should not get it the first time
Object a = service.poll();
assertNull(a);
// and neither the 2nd time
a = service.poll();
assertNull(a);
// okay complete task
latch.countDown();
// okay take them
a = service.take().get();
Object b = service.take().get();
assertEquals("A", a);
assertEquals("B", b);
}
@Test
public void testSubmitOrderedSecondTaskIsSlow() throws Exception {
service.submit(new Callable<Object>() {
public Object call() throws Exception {
return "A";
}
});
service.submit(new Callable<Object>() {
public Object call() throws Exception {
Thread.sleep(100);
return "B";
}
});
Object a = service.take().get();
Object b = service.take().get();
assertEquals("A", a);
assertEquals("B", b);
}
@Test
public void testSubmitOrderedSecondTaskIsSlowUsingPollTimeout() throws Exception {
service.submit(new Callable<Object>() {
public Object call() throws Exception {
return "A";
}
});
service.submit(new Callable<Object>() {
public Object call() throws Exception {
Thread.sleep(100);
return "B";
}
});
Object a = service.poll(5, TimeUnit.SECONDS).get();
Object b = service.poll(5, TimeUnit.SECONDS).get();
assertEquals("A", a);
assertEquals("B", b);
}
@Test
public void testSubmitOrderedLastTaskIsSlowUsingPoll() throws Exception {
final CountDownLatch latch = new CountDownLatch(1);
service.submit(new Callable<Object>() {
public Object call() throws Exception {
return "A";
}
});
service.submit(new Callable<Object>() {
public Object call() throws Exception {
latch.await(5, TimeUnit.SECONDS);
return "B";
}
});
// take a
Object a = service.take().get(5, TimeUnit.SECONDS);
assertNotNull(a);
// poll should not get it the first time
Object b = service.poll();
assertNull(b);
// and neither the 2nd time
b = service.poll();
assertNull(b);
// okay complete task
latch.countDown();
// okay take it
b = service.take().get(5, TimeUnit.SECONDS);
assertEquals("A", a);
assertEquals("B", b);
}
}