(no commit message)
[utils] / support / cdi / src / test / java / org / wamblee / cdi / BeanManagerLookupTest.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.cdi;
17
18 import static junit.framework.Assert.*;
19 import static org.mockito.Mockito.*;
20
21 import javax.enterprise.inject.spi.BeanManager;
22 import javax.naming.InitialContext;
23
24 import org.junit.Test;
25 import org.wamblee.test.cdi.BeanManagerSetup;
26 import org.wamblee.test.jndi.StubInitialContextFactory;
27
28 public class BeanManagerLookupTest extends BaseTestFixture {
29
30     @Test
31     public void testLookupInJndi() throws Exception {
32         BeanManagerSetup setup = new BeanManagerSetup();
33         setup.initialize();
34         StubInitialContextFactory.register();
35         InitialContext ctx = new InitialContext();
36         ctx.bind(BeanManagerLookup.BEAN_MANAGER_JNDI, setup.getBeanManager());
37         try {
38             assertSame(setup.getBeanManager(), BeanManagerLookup.lookup());
39         } finally {
40             setup.shutdown();
41             StubInitialContextFactory.unregister();
42         }
43     }
44
45     @Test
46     public void testWithJndiButWithOverride() throws Exception {
47         BeanManagerSetup setup = new BeanManagerSetup();
48         setup.initialize();
49         StubInitialContextFactory.register();
50         InitialContext ctx = new InitialContext();
51         ctx.bind(BeanManagerLookup.BEAN_MANAGER_JNDI, setup.getBeanManager());
52         try {
53             BeanManager override = mock(BeanManager.class);
54             BeanManagerLookup.setBeanManager(override);
55             assertSame(override, BeanManagerLookup.lookup());
56         } finally {
57             setup.shutdown();
58             StubInitialContextFactory.unregister();
59         }
60     }
61
62     @Test
63     public void testNoJndiButWithOverride() throws Exception {
64         BeanManager override = mock(BeanManager.class);
65         BeanManagerLookup.setBeanManager(override);
66         assertSame(override, BeanManagerLookup.lookup());
67     }
68 }