ee.jakarta.tck.concurrent.spec.ManagedScheduledExecutorService.inheritedapi.InheritedAPIServletTests Maven / Gradle / Ivy
/*
* Copyright (c) 2013, 2023 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package ee.jakarta.tck.concurrent.spec.ManagedScheduledExecutorService.inheritedapi;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.fail;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.CancellationException;
import java.util.concurrent.Future;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.jupiter.api.BeforeEach;
import ee.jakarta.tck.concurrent.common.fixed.counter.CounterRunnableTask;
import ee.jakarta.tck.concurrent.common.fixed.counter.StaticCounter;
import ee.jakarta.tck.concurrent.common.tasks.CommonTasks;
import ee.jakarta.tck.concurrent.framework.TestConstants;
import ee.jakarta.tck.concurrent.framework.junit.anno.Assertion;
import ee.jakarta.tck.concurrent.framework.junit.anno.Common;
import ee.jakarta.tck.concurrent.framework.junit.anno.Common.PACKAGE;
import ee.jakarta.tck.concurrent.framework.junit.anno.Web;
import ee.jakarta.tck.concurrent.framework.junit.extensions.Assertions;
import ee.jakarta.tck.concurrent.framework.junit.extensions.Wait;
import jakarta.annotation.Resource;
import jakarta.enterprise.concurrent.ManagedScheduledExecutorService;
@Web
@Common({ PACKAGE.TASKS, PACKAGE.FIXED_COUNTER })
public class InheritedAPIServletTests {
@Deployment(name = "InheritedAPIServletTests")
public static WebArchive createDeployment() {
return ShrinkWrap.create(WebArchive.class);
}
@Resource(lookup = TestConstants.defaultManagedScheduledExecutorService)
private ManagedScheduledExecutorService scheduledExecutor;
@BeforeEach
public void before() {
StaticCounter.reset();
}
@Assertion(id = "SPEC:44.1", strategy = "Test basic function for ManagedScheduledExecutorService: submit")
public void testApiSubmit() throws Exception {
Future> result = scheduledExecutor.submit(new CommonTasks.SimpleCallable());
assertEquals(Wait.waitForTaskComplete(result), TestConstants.simpleReturnValue);
result = scheduledExecutor.submit(new CommonTasks.SimpleRunnable());
Wait.waitForTaskComplete(result);
result = scheduledExecutor.submit(new CommonTasks.SimpleRunnable(), TestConstants.simpleReturnValue);
assertEquals(Wait.waitForTaskComplete(result), TestConstants.simpleReturnValue);
}
@Assertion(id = "SPEC:44.2", strategy = "Test basic function for ManagedScheduledExecutorService: execute")
public void testApiExecute() {
try {
scheduledExecutor.execute(new CounterRunnableTask());
StaticCounter.waitTill(1);
} finally {
StaticCounter.reset();
}
}
@Assertion(id = "SPEC:44.3", strategy = "Test basic function for ManagedScheduledExecutorService: invokeAll")
public void testApiInvokeAll() throws Exception {
try {
List> taskList = new ArrayList<>();
taskList.add(new CommonTasks.SimpleArgCallable(1));
taskList.add(new CommonTasks.SimpleArgCallable(2));
taskList.add(new CommonTasks.SimpleArgCallable(3));
List> resultList = scheduledExecutor.invokeAll(taskList);
for (Future> each : resultList) {
Wait.waitForTaskComplete(each);
}
assertEquals(resultList.get(0).get(), 1);
assertEquals(resultList.get(1).get(), 2);
assertEquals(resultList.get(2).get(), 3);
resultList = scheduledExecutor.invokeAll(taskList, TestConstants.waitTimeout.getSeconds(),
TimeUnit.SECONDS);
for (Future> each : resultList) {
Wait.waitForTaskComplete(each);
}
assertEquals(resultList.get(0).get(), 1);
assertEquals(resultList.get(1).get(), 2);
assertEquals(resultList.get(2).get(), 3);
} catch (Exception ex) {
fail(ex.getMessage());
}
try {
List> taskList = new ArrayList<>();
taskList.add(new CommonTasks.SimpleCallable(TestConstants.waitTimeout));
taskList.add(new CommonTasks.SimpleCallable(TestConstants.waitTimeout));
List> resultList = scheduledExecutor.invokeAll(taskList,
TestConstants.pollInterval.getSeconds(), TimeUnit.SECONDS);
for (Future> each : resultList) {
Wait.waitTillFutureThrowsException(each, CancellationException.class);
}
} catch (Exception ex) {
fail(ex.getMessage());
}
}
@Assertion(id = "SPEC:44.4", strategy = "Test basic function for ManagedScheduledExecutorService: invokeAny")
public void testApiInvokeAny() throws Exception {
List> taskList = new ArrayList<>();
taskList.add(new CommonTasks.SimpleArgCallable(1));
taskList.add(new CommonTasks.SimpleArgCallable(2));
taskList.add(new CommonTasks.SimpleArgCallable(3));
Integer result = scheduledExecutor.invokeAny(taskList);
Assertions.assertBetween(result, 1, 3);
result = scheduledExecutor.invokeAny(taskList, TestConstants.waitTimeout.getSeconds(), TimeUnit.SECONDS);
Assertions.assertBetween(result, 1, 3);
assertThrows(TimeoutException.class, () -> {
List> taskList2 = new ArrayList<>();
taskList2.add(new CommonTasks.SimpleCallable(TestConstants.waitTimeout));
taskList2.add(new CommonTasks.SimpleCallable(TestConstants.waitTimeout));
scheduledExecutor.invokeAny(taskList2, TestConstants.pollInterval.getSeconds(), TimeUnit.SECONDS);
});
}
@Assertion(id = "SPEC:44.5", strategy = "Test basic function for ManagedScheduledExecutorService: schedule")
public void testApiSchedule() throws Exception {
Future> result = scheduledExecutor.schedule(new CommonTasks.SimpleCallable(),
TestConstants.pollInterval.getSeconds(), TimeUnit.SECONDS);
assertEquals(Wait.waitForTaskComplete(result), TestConstants.simpleReturnValue);
result = scheduledExecutor.schedule(new CommonTasks.SimpleRunnable(), TestConstants.pollInterval.getSeconds(),
TimeUnit.SECONDS);
assertEquals(Wait.waitForTaskComplete(result), null);
}
@Assertion(id = "SPEC:44.6", strategy = "Test basic function for ManagedScheduledExecutorService: scheduleAtFixedRate")
public void testApiScheduleAtFixedRate() {
ScheduledFuture> result = null;
try {
result = scheduledExecutor.scheduleAtFixedRate(new CounterRunnableTask(),
TestConstants.pollInterval.getSeconds(), TestConstants.pollInterval.getSeconds(), TimeUnit.SECONDS);
Wait.sleep(TestConstants.waitTimeout);
Assertions.assertBetween(StaticCounter.getCount(), TestConstants.pollsPerTimeout - 2,
TestConstants.pollsPerTimeout + 2);
} catch (Exception e) {
fail(e.getMessage());
} finally {
if (result != null) {
Wait.waitCancelFuture(result);
}
}
}
@Assertion(id = "SPEC:44.7", strategy = "Test basic function for ManagedScheduledExecutorService: scheduleWithFixedDelay")
public void testApiScheduleWithFixedDelay() {
ScheduledFuture> result = null;
try {
result = scheduledExecutor.scheduleWithFixedDelay(new CounterRunnableTask(TestConstants.pollInterval),
TestConstants.pollInterval.getSeconds(), TestConstants.pollInterval.getSeconds(), TimeUnit.SECONDS);
Wait.sleep(TestConstants.waitTimeout);
Assertions.assertBetween(StaticCounter.getCount(), (TestConstants.pollsPerTimeout / 2) - 2,
(TestConstants.pollsPerTimeout / 2) + 2);
} catch (Exception e) {
fail(e.getMessage());
} finally {
if (result != null) {
Wait.waitCancelFuture(result);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy