ee.jakarta.tck.concurrent.spec.ManagedScheduledExecutorService.security.SecurityWebTests 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.security;
import java.net.URL;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.container.test.api.RunAsClient;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import ee.jakarta.tck.concurrent.framework.EJBJNDIProvider;
import ee.jakarta.tck.concurrent.framework.TestClient;
import ee.jakarta.tck.concurrent.framework.junit.anno.Assertion;
import ee.jakarta.tck.concurrent.framework.junit.anno.Challenge;
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.TestName;
import ee.jakarta.tck.concurrent.framework.junit.anno.Web;
@Web
@RunAsClient // Requires client testing due to login request
@Common({ PACKAGE.TASKS })
public class SecurityWebTests extends TestClient {
@ArquillianResource(SecurityServlet.class)
private URL baseURL;
@Deployment(name = "SecurityTests")
public static WebArchive createDeployment() {
WebArchive war = ShrinkWrap.create(WebArchive.class, "security_web.war")
.addPackages(true, SecurityWebTests.class.getPackage())
.addAsServiceProvider(EJBJNDIProvider.class, SecurityEJBProvider.WebProvider.class);
return war;
}
@TestName
private String testname;
@Override
protected String getServletPath() {
return "SecurityServlet";
}
@Challenge(link = "https://github.com/jakartaee/concurrency/issues/227", version = "3.0.0",
fix = "https://github.com/jakartaee/concurrency/pull/218", reintroduce = "3.1.0")
@Assertion(id = "SPEC:4.3 SPEC:50", strategy = "Login in a servlet with username javajoe(in role manager),"
+ " then submit a task by ManagedScheduledExecutorService in which call a ejb that requires role manager.")
public void managedScheduledExecutorServiceAPISecurityTest() {
runTest(baseURL, testname);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy