Package org.apache.cxf.ws.policy.builder.primitive

Source Code of org.apache.cxf.ws.policy.builder.primitive.NestedPrimitiveAssertionBuilderTest

/**
* 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.ws.policy.builder.primitive;

import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.util.Collections;

import javax.xml.namespace.QName;

import org.w3c.dom.Element;

import org.apache.cxf.Bus;
import org.apache.cxf.helpers.DOMUtils;
import org.apache.cxf.ws.policy.AssertionBuilderRegistry;
import org.apache.cxf.ws.policy.PolicyAssertion;
import org.apache.cxf.ws.policy.PolicyBuilder;
import org.apache.cxf.ws.policy.PolicyException;
import org.apache.neethi.Policy;
import org.easymock.classextension.EasyMock;
import org.easymock.classextension.IMocksControl;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;


/**
*
*/
public class NestedPrimitiveAssertionBuilderTest extends Assert {

    private static final String TEST_NAMESPACE = "http://www.w3.org/2007/01/addressing/metadata";
    private static final QName TEST_NAME1 = new QName(TEST_NAMESPACE, "Addressing");
    private static final QName TEST_NAME2 = new QName(TEST_NAMESPACE, "AnonymousResponses");
    private static final QName TEST_NAME3 = new QName(TEST_NAMESPACE, "NonAnonymousResponses");

    private NestedPrimitiveAssertionBuilder npab;
    private IMocksControl control;
    private PolicyBuilder builder;
    private AssertionBuilderRegistry reg;
   
    @Before
    public void setUp() {
        control = EasyMock.createNiceControl();
        npab = new NestedPrimitiveAssertionBuilder();
        npab.setKnownElements(Collections.singletonList(TEST_NAME1));
        builder = control.createMock(PolicyBuilder.class);
        npab.setPolicyBuilder(builder)
        reg = control.createMock(AssertionBuilderRegistry.class);
        npab.setAssertionBuilderRegistry(reg);
    }
   
    @Test
    public void testBuildFailOlderNs() throws Exception {
        String data =
            "<wsam:Addressing wsp:Optional=\"true\""
            + " xmlns:wsp=\"http://www.w3.org/2006/07/ws-policy\""
            + " xmlns:wsam=\"http://www.w3.org/2007/01/addressing/metadata\" />";
       
        try {
            npab.build(getElement(data));
            fail("Expected PolicyException not thrown.");
        } catch (PolicyException ex) {
            // expected
        }
    }
   
    @Test
    public void testBuildDefaultNs() throws Exception {
        String data =
            "<wsam:Addressing wsp:Optional=\"true\""
            + " xmlns:wsp=\"http://www.w3.org/ns/ws-policy\""
            + " xmlns:wsam=\"http://www.w3.org/2007/01/addressing/metadata\">"
            + "<wsp:Policy/></wsam:Addressing>";
        Policy nested = control.createMock(Policy.class);
        EasyMock.expect(builder.getPolicy(EasyMock.isA(Element.class))).andReturn(nested);
        control.replay();
        NestedPrimitiveAssertion npc = (NestedPrimitiveAssertion)npab.build(getElement(data));
        assertEquals(TEST_NAME1, npc.getName());
        assertSame(nested, npc.getPolicy());
        assertTrue(npc.isOptional());
        control.verify();
    }
   
    @Test
    public void testBuildOlderNs() throws Exception {
        String data =
            "<wsam:Addressing wsp:Optional=\"true\""
            + " xmlns:wsp=\"http://www.w3.org/2006/07/ws-policy\""
            + " xmlns:wsam=\"http://www.w3.org/2007/01/addressing/metadata\">"
            + "<wsp:Policy/></wsam:Addressing>";
        Policy nested = control.createMock(Policy.class);
        EasyMock.expect(builder.getPolicy(EasyMock.isA(Element.class))).andReturn(nested);
       
        Bus bus = control.createMock(Bus.class);
        control.replay();
       
        npab.setBus(bus);
        NestedPrimitiveAssertion npc = (NestedPrimitiveAssertion)npab.build(getElement(data));
        assertEquals(TEST_NAME1, npc.getName());
        assertSame(nested, npc.getPolicy());
        assertTrue(npc.isOptional());
        control.verify();
    }
   
    @Test
    public void testBuildCompatibleNoRegistry() {
        npab.setAssertionBuilderRegistry(null);
        Policy[] policies = NestedPrimitiveAssertionTest.buildTestPolicies();
        PolicyAssertion a =
            (PolicyAssertion)policies[4].getFirstPolicyComponent();  
        assertNull("Should not have been able to build compatible policy.", npab.buildCompatible(a, a));
    }
   
    @Test
    public void testCompatibleWithSelf() {
        Policy[] policies = NestedPrimitiveAssertionTest.buildTestPolicies();
        EasyMock.expect(reg.get(TEST_NAME1)).andReturn(npab).anyTimes();
        PrimitiveAssertionBuilder ab1 = new PrimitiveAssertionBuilder();
        ab1.setKnownElements(Collections.singleton(TEST_NAME2));
        PrimitiveAssertionBuilder ab2 = new PrimitiveAssertionBuilder();
        ab2.setKnownElements(Collections.singleton(TEST_NAME3));
        EasyMock.expect(reg.get(TEST_NAME2)).andReturn(ab1).anyTimes();
        EasyMock.expect(reg.get(TEST_NAME3)).andReturn(ab2).anyTimes();
       
        control.replay();
        PolicyAssertion a =
            (PolicyAssertion)policies[2].getFirstPolicyComponent();         
        PolicyAssertion compatible = npab.buildCompatible(a, a);
        assertNotNull("assertion in policy 2 should be compatible with itself.", compatible);
        control.verify();
    }
       
    @Test
    public void testBuildCompatible() {
        Policy[] policies = NestedPrimitiveAssertionTest.buildTestPolicies();
        EasyMock.expect(reg.get(TEST_NAME1)).andReturn(npab).anyTimes();
        PrimitiveAssertionBuilder ab1 = new PrimitiveAssertionBuilder();
        ab1.setKnownElements(Collections.singleton(TEST_NAME2));
        PrimitiveAssertionBuilder ab2 = new PrimitiveAssertionBuilder();
        ab2.setKnownElements(Collections.singleton(TEST_NAME3));
        EasyMock.expect(reg.get(TEST_NAME2)).andReturn(ab1).anyTimes();
        EasyMock.expect(reg.get(TEST_NAME3)).andReturn(ab2).anyTimes();
       
        control.replay();
        for (int i = 0; i < policies.length; i++) {
            PolicyAssertion a =
                (PolicyAssertion)policies[i].getFirstPolicyComponent();         
            PolicyAssertion compatible = npab.buildCompatible(a, a);
            assertNotNull("assertion in policy " + i + " should be compatible with itself.", compatible);
        }
       
        for (int i = 1; i < 5; i++) {
            PolicyAssertion a =
                (PolicyAssertion)policies[0].getFirstPolicyComponent();
            PolicyAssertion b = (PolicyAssertion)policies[i].getFirstPolicyComponent();
            PolicyAssertion compatible = npab.buildCompatible(a, b);
            assertNotNull("assertion in policy 0 should be compatible with assertion in policy " + i + ".",
                          compatible);
        }
       
        for (int i = 2; i < 5; i++) {
            PolicyAssertion a =
                (PolicyAssertion)policies[1].getFirstPolicyComponent();
            PolicyAssertion b =
                (PolicyAssertion)policies[i].getFirstPolicyComponent();
            PolicyAssertion compatible = npab.buildCompatible(a, b);
            assertNotNull("assertion in policy " + 1 + " should be compatible with assertion in policy i.",
                          compatible);
        }
        control.verify();
       
    }
   
    Element getElement(String data) throws Exception {
        InputStream is = new ByteArrayInputStream(data.getBytes());
        return DOMUtils.readXml(is).getDocumentElement();
    }
}
TOP

Related Classes of org.apache.cxf.ws.policy.builder.primitive.NestedPrimitiveAssertionBuilderTest

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.