now making sure that ids re prefixed by the config id.
[xmlrouter] / impl / src / test / java / org / wamblee / xmlrouter / impl / RobustFilterTest.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.xmlrouter.impl;
17
18 import static junit.framework.Assert.*;
19 import static org.mockito.Matchers.*;
20 import static org.mockito.Mockito.*;
21
22 import javax.xml.transform.dom.DOMSource;
23
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.wamblee.xmlrouter.config.Filter;
27
28 public class RobustFilterTest {
29
30     private Filter filter;
31     private Filter robust;
32     private DOMSource source;
33
34     @Before
35     public void setUp() {
36         filter = mock(Filter.class);
37         robust = new RobustFilter("filter", filter);
38         source = mock(DOMSource.class);
39     }
40
41     @Test
42     public void testNoEzception() {
43         when(filter.isAllowed(anyString(), any(DOMSource.class))).thenReturn(
44             true);
45         assertTrue(robust.isAllowed("xx", source));
46         verify(filter).isAllowed(eq("xx"), same(source));
47
48         reset(filter);
49         when(filter.isAllowed(anyString(), any(DOMSource.class))).thenReturn(
50             false);
51         assertFalse(robust.isAllowed("xx", source));
52         verify(filter).isAllowed(eq("xx"), same(source));
53     }
54
55     @Test
56     public void testException() {
57         doThrow(new RuntimeException("bla")).when(filter).isAllowed(
58             anyString(), any(DOMSource.class));
59         assertTrue(robust.isAllowed("xx", source));
60         verify(filter).isAllowed(eq("xx"), same(source));
61
62     }
63 }