alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Apache CXF example source code file (WSSecurity10UsernameAuthorizationTest.java)

This example Apache CXF source code file (WSSecurity10UsernameAuthorizationTest.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Apache CXF tags/keywords

exception, ipingservice, ipingservice, net, network, pingservice, port, qname, string, string, test, test, unauthorized, url, url, usernameovertransport

The Apache CXF WSSecurity10UsernameAuthorizationTest.java source code

/**
 * 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.wssec10;


import java.net.MalformedURLException;
import java.net.URL;

import javax.xml.namespace.QName;

import org.apache.cxf.Bus;
import org.apache.cxf.BusFactory;
import org.apache.cxf.bus.spring.SpringBusFactory;
import org.apache.cxf.systest.ws.wssec10.server.AuthorizedServer;
import org.apache.cxf.testutil.common.AbstractBusClientServerTestBase;

import org.junit.BeforeClass;
import org.junit.Test;

import wssec.wssec10.IPingService;
import wssec.wssec10.PingService;


/**
 *
 */
public class WSSecurity10UsernameAuthorizationTest extends AbstractBusClientServerTestBase {
    static final String SSL_PORT = allocatePort(AuthorizedServer.class, 1);
    static final String PORT = allocatePort(AuthorizedServer.class);

    private static final String INPUT = "foo";
    
    @BeforeClass
    public static void startServers() throws Exception {

        assertTrue(
            "Server failed to launch",
            // run the server in the same process
            // set this to false to fork
            launchServer(AuthorizedServer.class, true)
        );
    }

    @Test
    public void testClientServerUTOnlyAuthorized() {

        IPingService port = getUTOnlyPort(
            "org/apache/cxf/systest/ws/wssec10/client/client_restricted.xml", false);
        
        final String output = port.echo(INPUT);
        assertEquals(INPUT, output);
    }
    
    @Test
    public void testClientServerUTOnlyUnauthorized() {

        IPingService port = getUTOnlyPort(
            "org/apache/cxf/systest/ws/wssec10/client/client_restricted_unauthorized.xml", true);
        
        try {
            port.echo(INPUT);
            fail("Frank is unauthorized");
        } catch (Exception ex) {
            assertEquals("Unauthorized", ex.getMessage());
        }
    }
    
    @Test
    public void testClientServerComplexPolicyAuthorized() {

        IPingService port = getComplexPolicyPort(
            "org/apache/cxf/systest/ws/wssec10/client/client_restricted.xml");
        
        final String output = port.echo(INPUT);
        assertEquals(INPUT, output);
    }
    
    @Test
    public void testClientServerComplexPolicyUnauthorized() {

        IPingService port = getComplexPolicyPort(
            "org/apache/cxf/systest/ws/wssec10/client/client_restricted_unauthorized.xml");
        
        try {
            port.echo(INPUT);
            fail("Frank is unauthorized");
        } catch (Exception ex) {
            assertEquals("Unauthorized", ex.getMessage());
        }
    }
    
    private static IPingService getComplexPolicyPort(String configName) {
        Bus bus = new SpringBusFactory().createBus(configName);
        
        BusFactory.setDefaultBus(bus);
        BusFactory.setThreadDefaultBus(bus);
        PingService svc = new PingService(getWsdlLocation("UserNameOverTransport"));
        final IPingService port = 
            svc.getPort(
                new QName(
                    "http://WSSec/wssec10",
                    "UserNameOverTransport" + "_IPingService"
                ),
                IPingService.class
            );
        return port;
    }
    
    private static IPingService getUTOnlyPort(String configName, boolean hashed) {
        Bus bus = new SpringBusFactory().createBus(configName);
        
        BusFactory.setDefaultBus(bus);
        BusFactory.setThreadDefaultBus(bus);
        PingService svc = new PingService(getWsdlLocation(hashed));
        final IPingService port = 
            svc.getPort(
                new QName(
                    "http://WSSec/wssec10",
                    hashed ? "UserName_IPingService_hashed" : "UserName_IPingService"
                ),
                IPingService.class
            );
        return port;
    }
    
    private static URL getWsdlLocation(boolean hashed) {
        try {
            return new URL("http://localhost:" + PORT + "/" 
                           + (hashed ? "HashedUserName" : "UserName") + "?wsdl");
        } catch (MalformedURLException mue) {
            return null;
        }
        
    }

    
    private static URL getWsdlLocation(String portPrefix) {
        try {
            if ("UserNameOverTransport".equals(portPrefix)) {
                return new URL("https://localhost:" + SSL_PORT + "/" + portPrefix + "?wsdl");
            } else if ("MutualCertificate10SignEncrypt".equals(portPrefix)) {
                return new URL("http://localhost:" + PORT + "/" + portPrefix + "?wsdl");
            } else if ("MutualCertificate10SignEncryptRsa15TripleDes".equals(portPrefix)) {
                return new URL("http://localhost:" + PORT + "/" + portPrefix + "?wsdl");
            }
        } catch (MalformedURLException mue) {
            return null;
        }
        return null;
    }
    
}

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF WSSecurity10UsernameAuthorizationTest.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.