All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.jakarta.tck.concurrent.spec.ManagedScheduledExecutorService.security.SecurityFullTests 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.EnterpriseArchive;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
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.PACKAGE;
import ee.jakarta.tck.concurrent.framework.junit.anno.Full;
import ee.jakarta.tck.concurrent.framework.junit.anno.TestName;

@Full
@RunAsClient // Requires client testing due to login request
public class SecurityFullTests extends TestClient {

    @ArquillianResource(SecurityServlet.class)
    private URL baseURL;

    @Deployment(name = "SecurityTests")
    public static EnterpriseArchive createDeployment() {
        WebArchive war = ShrinkWrap.create(WebArchive.class, "security_web.war")
                .addPackages(true, SecurityFullTests.class.getPackage())
                .addPackages(true, PACKAGE.TASKS.getPackageName())
                .deleteClasses(SecurityTestInterface.class, SecurityTestEjb.class); // SecurityTestEjb and
                                                                                    // SecurityTestInterface are in the
                                                                                    // jar

        JavaArchive jar = ShrinkWrap.create(JavaArchive.class, "security_ejb.jar")
                .addClasses(SecurityTestInterface.class, SecurityTestEjb.class)
                .addAsServiceProvider(EJBJNDIProvider.class, SecurityEJBProvider.FullProvider.class);

        EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "security.ear").addAsModules(war, jar);

        return ear;
    }

    @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