AssertionInfoMapTest.java
/**
* 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;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import javax.xml.namespace.QName;
import org.apache.cxf.helpers.CastUtils;
import org.apache.cxf.ws.policy.builder.primitive.PrimitiveAssertion;
import org.apache.neethi.All;
import org.apache.neethi.Assertion;
import org.apache.neethi.ExactlyOne;
import org.apache.neethi.Policy;
import org.apache.neethi.builders.PolicyContainingPrimitiveAssertion;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
/**
*
*/
public class AssertionInfoMapTest {
@Test
public void testAlternativeSupported() {
PolicyAssertion a1 = mock(PolicyAssertion.class);
QName aqn = new QName("http://x.y.z", "a");
when(a1.getName()).thenReturn(aqn);
PolicyAssertion a2 = mock(PolicyAssertion.class);
when(a2.getName()).thenReturn(aqn);
PolicyAssertion b = mock(PolicyAssertion.class);
QName bqn = new QName("http://x.y.z", "b");
when(b.getName()).thenReturn(bqn);
PolicyAssertion c = mock(PolicyAssertion.class);
QName cqn = new QName("http://x.y.z", "c");
when(c.getName()).thenReturn(cqn);
AssertionInfoMap aim = new AssertionInfoMap(CastUtils.cast(Collections.EMPTY_LIST,
PolicyAssertion.class));
AssertionInfo ai1 = new AssertionInfo(a1);
AssertionInfo ai2 = new AssertionInfo(a2);
Collection<AssertionInfo> ais = new ArrayList<>();
AssertionInfo bi = new AssertionInfo(b);
AssertionInfo ci = new AssertionInfo(c);
ais.add(ai1);
ais.add(ai2);
aim.put(aqn, ais);
aim.put(bqn, Collections.singleton(bi));
aim.put(cqn, Collections.singleton(ci));
ai2.setAsserted(true);
bi.setAsserted(true);
ci.setAsserted(true);
when(a1.equal(a1)).thenReturn(true);
when(a2.equal(a2)).thenReturn(true);
when(b.equal(b)).thenReturn(true);
when(c.equal(c)).thenReturn(true);
when(a2.isAsserted(aim)).thenReturn(true);
when(b.isAsserted(aim)).thenReturn(true);
when(c.isAsserted(aim)).thenReturn(true);
List<Assertion> alt1 = new ArrayList<>();
alt1.add(a1);
alt1.add(b);
List<Assertion> alt2 = new ArrayList<>();
alt2.add(a2);
alt2.add(c);
assertFalse(aim.supportsAlternative(alt1, new ArrayList<>()));
assertTrue(aim.supportsAlternative(alt2, new ArrayList<>()));
}
@Test
public void testCheckEffectivePolicy() {
Policy p = new Policy();
QName aqn = new QName("http://x.y.z", "a");
Assertion a = new PrimitiveAssertion(aqn);
QName bqn = new QName("http://x.y.z", "b");
Assertion b = new PrimitiveAssertion(bqn);
QName cqn = new QName("http://x.y.z", "c");
Assertion c = new PrimitiveAssertion(cqn);
All alt1 = new All();
alt1.addAssertion(a);
alt1.addAssertion(b);
All alt2 = new All();
alt2.addAssertion(c);
ExactlyOne ea = new ExactlyOne();
ea.addPolicyComponent(alt1);
ea.addPolicyComponent(alt2);
p.addPolicyComponent(ea);
AssertionInfoMap aim = new AssertionInfoMap(CastUtils.cast(Collections.EMPTY_LIST,
PolicyAssertion.class));
AssertionInfo ai = new AssertionInfo(a);
AssertionInfo bi = new AssertionInfo(b);
AssertionInfo ci = new AssertionInfo(c);
aim.put(aqn, Collections.singleton(ai));
aim.put(bqn, Collections.singleton(bi));
aim.put(cqn, Collections.singleton(ci));
try {
aim.checkEffectivePolicy(p);
fail("Expected PolicyException not thrown.");
} catch (PolicyException ex) {
// expected
}
ai.setAsserted(true);
ci.setAsserted(true);
aim.checkEffectivePolicy(p);
}
@Test
public void testCheck() throws PolicyException {
QName aqn = new QName("http://x.y.z", "a");
Assertion a = new PrimitiveAssertion(aqn);
Collection<Assertion> assertions = new ArrayList<>();
assertions.add(a);
AssertionInfoMap aim = new AssertionInfoMap(assertions);
try {
aim.check();
fail("Expected PolicyException not thrown.");
} catch (PolicyException ex) {
assertEquals("NOT_ASSERTED_EXC", ex.getCode());
}
aim.get(aqn).iterator().next().setAsserted(true);
aim.check();
}
@Test
public void testAllAssertionsIn() {
Policy nested = new Policy();
Assertion nb = new PrimitiveAssertion(
new QName("http://x.y.z", "b"));
nested.addAssertion(nb);
Policy p = new Policy();
Assertion a1 = new PrimitiveAssertion(
new QName("http://x.y.z", "a"));
Assertion a2 = new PrimitiveAssertion(
new QName("http://x.y.z", "a"));
Assertion b = new PrimitiveAssertion(
new QName("http://x.y.z", "b"));
Assertion c = new PolicyContainingPrimitiveAssertion(
new QName("http://x.y.z", "c"), false, false, nested);
All alt1 = new All();
alt1.addAssertion(a1);
alt1.addAssertion(b);
All alt2 = new All();
alt1.addAssertion(a2);
alt2.addAssertion(c);
ExactlyOne ea = new ExactlyOne();
ea.addPolicyComponent(alt1);
ea.addPolicyComponent(alt2);
p.addPolicyComponent(ea);
AssertionInfoMap aim = new AssertionInfoMap(p);
Collection<AssertionInfo> listA =
aim.getAssertionInfo(new QName("http://x.y.z", "a"));
assertEquals("2 A assertions should've been added", 2, listA.size());
AssertionInfo[] ais = listA.toArray(new AssertionInfo[] {});
assertTrue("Two different A instances should be added",
ais[0].getAssertion() == a1 && ais[1].getAssertion() == a2
|| ais[0].getAssertion() == a2 && ais[1].getAssertion() == a1);
Collection<AssertionInfo> listB =
aim.getAssertionInfo(new QName("http://x.y.z", "b"));
assertEquals("2 B assertions should've been added", 2, listB.size());
ais = listB.toArray(new AssertionInfo[] {});
assertTrue("Two different B instances should be added",
ais[0].getAssertion() == nb && ais[1].getAssertion() == b
|| ais[0].getAssertion() == b && ais[1].getAssertion() == nb);
Collection<AssertionInfo> listC =
aim.getAssertionInfo(new QName("http://x.y.z", "c"));
assertEquals("1 C assertion should've been added", 1, listC.size());
ais = listC.toArray(new AssertionInfo[] {});
assertSame("One C instances should be added",
ais[0].getAssertion(), c);
}
}