ee.jakarta.tck.concurrent.spec.ManagedScheduledExecutorService.tx.TransactionTests Maven / Gradle / Ivy
/*
* Copyright (c) 2013, 2022 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.tx;
import java.net.URL;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.testng.annotations.Test;
import ee.jakarta.tck.concurrent.framework.TestClient;
import ee.jakarta.tck.concurrent.framework.URLBuilder;
public class TransactionTests extends TestClient {
@ArquillianResource
URL baseURL;
@Deployment(name="TransactionTests", testable=false)
public static WebArchive createDeployment() {
return ShrinkWrap.create(WebArchive.class)
.addPackages(true, getFrameworkPackage(), TransactionTests.class.getPackage());
}
/*
* @testName: testCommitTransactionWithManagedScheduledExecutorService
*
* @assertion_ids: CONCURRENCY:SPEC:63;CONCURRENCY:SPEC:64;
* CONCURRENCY:SPEC:65;CONCURRENCY:SPEC:66;CONCURRENCY:SPEC:67;
* CONCURRENCY:SPEC:69;CONCURRENCY:SPEC:8.1;CONCURRENCY:SPEC:9;
* CONCURRENCY:SPEC:71;CONCURRENCY:SPEC:72;
*
* @test_Strategy: get UserTransaction inside one task submitted by
* ManagedScheduledExecutorService.it support user-managed global transaction
* demarcation using the jakarta.transaction.UserTransaction interface.
*/
@Test(dependsOnMethods= {"testRollbackTransactionWithManagedScheduledExecutorService"}) //TODO rewrite test logic to avoid duplicate key violation
public void testCommitTransactionWithManagedScheduledExecutorService() {
runTest(URLBuilder.get().withBaseURL(baseURL).withPaths("TransactionServlet").withQueries(Constants.COMMIT_TRUE).withTestName("transactionTest"));
}
/*
* @testName: testRollbackTransactionWithManagedScheduledExecutorService
*
* @assertion_ids: CONCURRENCY:SPEC:63;CONCURRENCY:SPEC:64;
* CONCURRENCY:SPEC:65;CONCURRENCY:SPEC:66;
* CONCURRENCY:SPEC:67;CONCURRENCY:SPEC:69;
* CONCURRENCY:SPEC:71;CONCURRENCY:SPEC:72;
*
* @test_Strategy: get UserTransaction inside one task submitted by
* ManagedScheduledExecutorService. test roll back function in the submitted
* task.
*/
@Test
public void testRollbackTransactionWithManagedScheduledExecutorService() {
runTest(URLBuilder.get().withBaseURL(baseURL).withPaths("TransactionServlet").withQueries(Constants.COMMIT_FALSE).withTestName("transactionTest"));
}
/*
* @testName: testCancelTransactionWithManagedScheduledExecutorService
*
* @assertion_ids: CONCURRENCY:SPEC:42.1;CONCURRENCY:SPEC:42.3;
* CONCURRENCY:SPEC:63;CONCURRENCY:SPEC:64;
* CONCURRENCY:SPEC:65;CONCURRENCY:SPEC:66;
* CONCURRENCY:SPEC:67;CONCURRENCY:SPEC:69;
* CONCURRENCY:SPEC:71;CONCURRENCY:SPEC:72;
*
* @test_Strategy: get UserTransaction inside one task submitted by
* ManagedScheduledExecutorService.cancel the task after submit one task.
*/
@Test
public void testCancelTransactionWithManagedScheduledExecutorService() {
runTest(URLBuilder.get().withBaseURL(baseURL).withPaths("TransactionServlet").withQueries(Constants.COMMIT_CANCEL).withTestName("cancelTest"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy