(no commit message)
[utils] / wicket / joe / src / test / java / org / wamblee / wicket / model / DetachableEntityTest.java
1 /*
2  * Copyright 2005-2010 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.wicket.model;
17
18 import org.junit.Before;
19 import org.junit.Test;
20 import org.wamblee.persistence.Detachable;
21
22 import static org.mockito.Mockito.*;
23 import static junit.framework.TestCase.*;
24
25 public class DetachableEntityTest {
26
27     public static class X {
28
29     }
30
31     private X initialValue;
32     private Detachable<X> detachable;
33     private DetachableEntity<X> entity;
34
35     @Before
36     public void setUp() {
37         initialValue = mock(X.class);
38         detachable = mock(Detachable.class);
39         when(detachable.get()).thenReturn(initialValue);
40         entity = new DetachableEntity<X>(detachable);
41     }
42
43     @Test
44     public void testGetObject() {
45         X x = new X();
46         reset(detachable);
47         when(detachable.get()).thenReturn(x);
48         X value = entity.getObject();
49         // we did not detach it yet so the old value should be returned.
50         assertSame(initialValue, value);
51         verifyNoMoreInteractions(detachable);
52     }
53
54     @Test
55     public void testOnDetachReattach() {
56         X x = new X();
57         when(detachable.get()).thenReturn(x);
58
59         entity.detach();
60         verify(detachable).detach();
61
62         reset(detachable);
63         when(detachable.get()).thenReturn(x);
64
65         X y = entity.getObject();
66         assertSame(x, y);
67         verify(detachable).get();
68     }
69
70     @Test(expected = UnsupportedOperationException.class)
71     public void testSetObject() {
72         X x = new X();
73         entity.setObject(x);
74     }
75 }