First version after introduction of meaningful ids and Identifiable interface.
[xmlrouter] / impl / src / test / java / org / wamblee / xmlrouter / impl / RobustDocumentTypeTest.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.DocumentType;
27
28 public class RobustDocumentTypeTest {
29
30     private DocumentType documentType;
31     private DocumentType robust;
32     private DOMSource source;
33
34     @Before
35     public void setUp() {
36         documentType = mock(DocumentType.class);
37         robust = new RobustDocumentType(documentType);
38         source = mock(DOMSource.class);
39     }
40
41     @Test
42     public void testNoEzception() {
43         when(documentType.isInstance(any(DOMSource.class))).thenReturn(true);
44         when(documentType.getName()).thenReturn("hello");
45         assertTrue(robust.isInstance(source));
46         assertEquals("hello", robust.getName());
47
48         verify(documentType).isInstance(same(source));
49
50         reset(documentType);
51         when(documentType.isInstance(any(DOMSource.class))).thenReturn(false);
52         assertFalse(robust.isInstance(source));
53         verify(documentType).isInstance(same(source));
54     }
55
56     @Test
57     public void testExceptionInIsInstance() {
58         doThrow(new RuntimeException("bla")).when(documentType).isInstance(
59             any(DOMSource.class));
60         assertFalse(robust.isInstance(source));
61         verify(documentType).isInstance(same(source));
62     }
63
64     @Test
65     public void testExceptionInValidate() {
66         doThrow(new RuntimeException("bla")).when(documentType).validate(
67             any(DOMSource.class));
68         assertFalse(robust.validate(source));
69         verify(documentType).validate(same(source));
70     }
71
72     @Test
73     public void testExceptionInGetName() {
74         doThrow(new RuntimeException("bla")).when(documentType).getName();
75         assertEquals(Constants.UNKNOWN_DOCUMENT_TYPE.toString(),
76             robust.getName());
77     }
78
79     @Test
80     public void testGetNameReturnsNull() {
81         when(documentType.getName()).thenReturn(null);
82         assertEquals(Constants.UNKNOWN_DOCUMENT_TYPE.toString(),
83             robust.getName());
84     }
85 }