Package com.consol.citrus.ws.interceptor

Source Code of com.consol.citrus.ws.interceptor.SoapMustUnderstandEndpointInterceptorTest

/*
* Copyright 2006-2010 the original author or authors.
*
* Licensed 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 com.consol.citrus.ws.interceptor;

import static org.easymock.EasyMock.expect;
import static org.easymock.EasyMock.replay;
import static org.easymock.EasyMock.reset;
import static org.easymock.EasyMock.verify;

import java.util.*;

import org.easymock.EasyMock;
import org.springframework.ws.soap.SoapHeaderElement;
import org.springframework.xml.namespace.QNameUtils;
import org.testng.Assert;
import org.testng.annotations.Test;

/**
* @author Christoph Deppisch
*/
public class SoapMustUnderstandEndpointInterceptorTest {

    @Test
    public void testSingleMustUnderstandHeader() {
        SoapMustUnderstandEndpointInterceptor interceptor = new SoapMustUnderstandEndpointInterceptor();
       
        interceptor.setAcceptedHeaders(Collections.singletonList("{http://www.consol.com/soap-mustunderstand}UserId"));
       
        SoapHeaderElement header = createHeaderMock("{http://www.consol.com/soap-mustunderstand}UserId");
        Assert.assertTrue(interceptor.understands(header));
       
        verify(header);
    }
   
    @Test
    public void testSingleMustUnderstandHeaderNegativeWrongLocalPart() {
        SoapMustUnderstandEndpointInterceptor interceptor = new SoapMustUnderstandEndpointInterceptor();
       
        interceptor.setAcceptedHeaders(Collections.singletonList("{http://www.consol.com/soap-mustunderstand}UserId"));
       
        SoapHeaderElement header = createHeaderMock("{http://www.consol.com/soap-mustunderstand}WrongId");
        Assert.assertFalse(interceptor.understands(header));
       
        verify(header);
    }
   
    @Test
    public void testSingleMustUnderstandHeaderNegativeWrongNamespace() {
        SoapMustUnderstandEndpointInterceptor interceptor = new SoapMustUnderstandEndpointInterceptor();
       
        interceptor.setAcceptedHeaders(Collections.singletonList("{http://www.consol.com/soap-mustunderstand}UserId"));
       
        SoapHeaderElement header = createHeaderMock("{http://www.consol.com/soap-wrong}UserId");
        Assert.assertFalse(interceptor.understands(header));
       
        verify(header);
    }
   
    @Test
    public void testMustUnderstandHeaderDefaultNamespace() {
        SoapMustUnderstandEndpointInterceptor interceptor = new SoapMustUnderstandEndpointInterceptor();
       
        interceptor.setAcceptedHeaders(Collections.singletonList("UserId"));
       
        SoapHeaderElement header = createHeaderMock("UserId");
        Assert.assertTrue(interceptor.understands(header));
       
        verify(header);
    }
   
    @Test
    public void testMultipleMustUnderstandHeaders() {
        SoapMustUnderstandEndpointInterceptor interceptor = new SoapMustUnderstandEndpointInterceptor();
       
        List<String> headers = new ArrayList<String>();
        headers.add("{http://www.consol.com/soap-mustunderstand}UserId");
        headers.add("TransactionId");
        headers.add("{http://www.consol.com/soap-mustunderstand/operation}Operation");
        headers.add("{http://www.consol.com/tracking/soap-mustunderstand}TrackingId");
        interceptor.setAcceptedHeaders(headers);
       
        Assert.assertTrue(interceptor.understands(createHeaderMock("{http://www.consol.com/soap-mustunderstand}UserId")));
        Assert.assertTrue(interceptor.understands(createHeaderMock("{http://www.consol.com/soap-mustunderstand/operation}Operation")));
        Assert.assertFalse(interceptor.understands(createHeaderMock("{http://www.consol.com/soap-mustunderstand}TrackingId")));
        Assert.assertTrue(interceptor.understands(createHeaderMock("TransactionId")));
    }

    /**
     * Construct a mocked soap header element.
     *
     * @return mocked soap header.
     */
    private SoapHeaderElement createHeaderMock(String qNameString) {
        SoapHeaderElement header = EasyMock.createMock(SoapHeaderElement.class);

        reset(header);
        expect(header.getName()).andReturn(QNameUtils.parseQNameString(qNameString)).anyTimes();
        replay(header);
       
        return header;
    }
}
TOP

Related Classes of com.consol.citrus.ws.interceptor.SoapMustUnderstandEndpointInterceptorTest

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.