Package org.apache.cxf.systest.ws.spnego

Source Code of org.apache.cxf.systest.ws.spnego.SpnegoTokenTest

/**
* 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.cxf.systest.ws.spnego;

import java.net.URL;
import java.util.Arrays;
import java.util.Collection;

import javax.xml.namespace.QName;
import javax.xml.ws.Service;

import org.apache.cxf.Bus;
import org.apache.cxf.bus.spring.SpringBusFactory;
import org.apache.cxf.systest.ws.common.SecurityTestUtil;
import org.apache.cxf.systest.ws.common.TestParam;
import org.apache.cxf.testutil.common.AbstractBusClientServerTestBase;
import org.example.contract.doubleit.DoubleItPortType;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized.Parameters;

/**
* A set of tests for Spnego Tokens. The tests are @Ignore'd, as they require a running KDC. To run the
* tests, set up a KDC of realm "WS.APACHE.ORG", with principal "alice" and service principal
* "bob/service.ws.apache.org". Create keytabs for both principals in "/etc/alice.keytab" and
* "/etc/bob.keytab" (this can all be edited in src/test/resource/kerberos.jaas". Then disable the
* @Ignore annotations and run the tests with:
* mvn test -Pnochecks -Dtest=SpnegoTokenTest
*     -Djava.security.auth.login.config=src/test/resources/kerberos.jaas
*/
@org.junit.Ignore
@RunWith(value = org.junit.runners.Parameterized.class)
public class SpnegoTokenTest extends AbstractBusClientServerTestBase {
    static final String PORT = allocatePort(Server.class);
    static final String PORT2 = allocatePort(Server.class, 2);
    static final String STAX_PORT = allocatePort(StaxServer.class);
    static final String STAX_PORT2 = allocatePort(StaxServer.class, 2);

    private static final String NAMESPACE = "http://www.example.org/contract/DoubleIt";
    private static final QName SERVICE_QNAME = new QName(NAMESPACE, "DoubleItService");
   
    private static boolean unrestrictedPoliciesInstalled =
            SecurityTestUtil.checkUnrestrictedPoliciesInstalled();
   
    final TestParam test;
   
    public SpnegoTokenTest(TestParam type) {
        this.test = type;
    }
   
    @BeforeClass
    public static void startServers() throws Exception {
        if (unrestrictedPoliciesInstalled) {
            assertTrue(
                "Server failed to launch",
                // run the server in the same process
                // set this to false to fork
                launchServer(Server.class, true)
            );
            assertTrue(
                       "Server failed to launch",
                       // run the server in the same process
                       // set this to false to fork
                       launchServer(StaxServer.class, true)
            );
        }
    }
   
    @Parameters(name = "{0}")
    public static Collection<TestParam[]> data() {
      
        return Arrays.asList(new TestParam[][] {{new TestParam(PORT, false)},
                                                {new TestParam(PORT, true)},
                                                {new TestParam(STAX_PORT, false)},
                                                {new TestParam(STAX_PORT, true)},
        });
    }
   
    @org.junit.AfterClass
    public static void cleanup() throws Exception {
        if (unrestrictedPoliciesInstalled) {
            SecurityTestUtil.cleanup();
            stopAllServers();
        }
    }

    @org.junit.Test
    public void testSpnegoOverSymmetric() throws Exception {
       
        if (!unrestrictedPoliciesInstalled) {
            return;
        }

        SpringBusFactory bf = new SpringBusFactory();
        URL busFile = SpnegoTokenTest.class.getResource("client.xml");

        Bus bus = bf.createBus(busFile.toString());
        SpringBusFactory.setDefaultBus(bus);
        SpringBusFactory.setThreadDefaultBus(bus);

        URL wsdl = SpnegoTokenTest.class.getResource("DoubleItSpnego.wsdl");
        Service service = Service.create(wsdl, SERVICE_QNAME);
        QName portQName = new QName(NAMESPACE, "DoubleItSpnegoSymmetricPort");
        DoubleItPortType spnegoPort =
                service.getPort(portQName, DoubleItPortType.class);
        updateAddressPort(spnegoPort, test.getPort());
       
        if (test.isStreaming()) {
            SecurityTestUtil.enableStreaming(spnegoPort);
        }
       
        spnegoPort.doubleIt(25);
       
        ((java.io.Closeable)spnegoPort).close();
        bus.shutdown(true);
    }
   
    @org.junit.Test
    public void testSpnegoOverSymmetricDerived() throws Exception {
       
        if (!unrestrictedPoliciesInstalled) {
            return;
        }

        SpringBusFactory bf = new SpringBusFactory();
        URL busFile = SpnegoTokenTest.class.getResource("client.xml");

        Bus bus = bf.createBus(busFile.toString());
        SpringBusFactory.setDefaultBus(bus);
        SpringBusFactory.setThreadDefaultBus(bus);

        URL wsdl = SpnegoTokenTest.class.getResource("DoubleItSpnego.wsdl");
        Service service = Service.create(wsdl, SERVICE_QNAME);
        QName portQName = new QName(NAMESPACE, "DoubleItSpnegoSymmetricDerivedPort");
        DoubleItPortType spnegoPort =
                service.getPort(portQName, DoubleItPortType.class);
        updateAddressPort(spnegoPort, test.getPort());
       
        if (test.isStreaming()) {
            SecurityTestUtil.enableStreaming(spnegoPort);
        }
       
        spnegoPort.doubleIt(25);
       
        ((java.io.Closeable)spnegoPort).close();
        bus.shutdown(true);
    }
   
    @org.junit.Test
    public void testSpnegoOverSymmetricEncryptBeforeSigning() throws Exception {
       
        if (!unrestrictedPoliciesInstalled) {
            return;
        }

        SpringBusFactory bf = new SpringBusFactory();
        URL busFile = SpnegoTokenTest.class.getResource("client.xml");

        Bus bus = bf.createBus(busFile.toString());
        SpringBusFactory.setDefaultBus(bus);
        SpringBusFactory.setThreadDefaultBus(bus);

        URL wsdl = SpnegoTokenTest.class.getResource("DoubleItSpnego.wsdl");
        Service service = Service.create(wsdl, SERVICE_QNAME);
        QName portQName = new QName(NAMESPACE, "DoubleItSpnegoSymmetricEncryptBeforeSigningPort");
        DoubleItPortType spnegoPort =
                service.getPort(portQName, DoubleItPortType.class);
        updateAddressPort(spnegoPort, test.getPort());
       
        if (test.isStreaming()) {
            SecurityTestUtil.enableStreaming(spnegoPort);
        }
       
        spnegoPort.doubleIt(25);
       
        ((java.io.Closeable)spnegoPort).close();
        bus.shutdown(true);
    }
   
    @org.junit.Test
    public void testSpnegoOverTransport() throws Exception {
       
        if (!unrestrictedPoliciesInstalled) {
            return;
        }
       
        if (test.isStreaming()) {
            // TODO Supporting streaming Snego outbound
            return;
        }

        SpringBusFactory bf = new SpringBusFactory();
        URL busFile = SpnegoTokenTest.class.getResource("client.xml");

        Bus bus = bf.createBus(busFile.toString());
        SpringBusFactory.setDefaultBus(bus);
        SpringBusFactory.setThreadDefaultBus(bus);

        URL wsdl = SpnegoTokenTest.class.getResource("DoubleItSpnego.wsdl");
        Service service = Service.create(wsdl, SERVICE_QNAME);
        QName portQName = new QName(NAMESPACE, "DoubleItSpnegoTransportPort");
        DoubleItPortType spnegoPort =
                service.getPort(portQName, DoubleItPortType.class);
        String portNumber = PORT2;
        if (STAX_PORT.equals(test.getPort())) {
            portNumber = STAX_PORT2;
        }
        updateAddressPort(spnegoPort, portNumber);
       
        if (test.isStreaming()) {
            SecurityTestUtil.enableStreaming(spnegoPort);
        }
       
        spnegoPort.doubleIt(25);
       
        ((java.io.Closeable)spnegoPort).close();
    }
   
    @org.junit.Test
    public void testSpnegoOverTransportEndorsing() throws Exception {
       
        if (!unrestrictedPoliciesInstalled) {
            return;
        }
       
        if (test.isStreaming()) {
            // TODO Supporting streaming Snego outbound
            return;
        }

        SpringBusFactory bf = new SpringBusFactory();
        URL busFile = SpnegoTokenTest.class.getResource("client.xml");

        Bus bus = bf.createBus(busFile.toString());
        SpringBusFactory.setDefaultBus(bus);
        SpringBusFactory.setThreadDefaultBus(bus);

        URL wsdl = SpnegoTokenTest.class.getResource("DoubleItSpnego.wsdl");
        Service service = Service.create(wsdl, SERVICE_QNAME);
        QName portQName = new QName(NAMESPACE, "DoubleItSpnegoTransportEndorsingPort");
        DoubleItPortType spnegoPort =
                service.getPort(portQName, DoubleItPortType.class);
        String portNumber = PORT2;
        if (STAX_PORT.equals(test.getPort())) {
            portNumber = STAX_PORT2;
        }
        updateAddressPort(spnegoPort, portNumber);
       
        if (test.isStreaming()) {
            SecurityTestUtil.enableStreaming(spnegoPort);
        }
       
        spnegoPort.doubleIt(25);
       
        ((java.io.Closeable)spnegoPort).close();
    }
}
TOP

Related Classes of org.apache.cxf.systest.ws.spnego.SpnegoTokenTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.