476e15919b8c8ec1787c6a5a514177ea22a0db39
[honeycomb.git] / vpp-common / vpp-common-integration / src / test / java / io / fd / honeycomb / vpp / common / integration / VppCommonModuleTest.java
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
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
17 package io.fd.honeycomb.vpp.common.integration;
18
19 import static org.hamcrest.CoreMatchers.is;
20 import static org.hamcrest.CoreMatchers.not;
21 import static org.hamcrest.Matchers.empty;
22 import static org.junit.Assert.assertThat;
23 import static org.mockito.MockitoAnnotations.initMocks;
24
25 import com.google.inject.Guice;
26 import com.google.inject.Inject;
27 import com.google.inject.name.Named;
28 import com.google.inject.testing.fieldbinder.Bind;
29 import com.google.inject.testing.fieldbinder.BoundFieldModule;
30 import io.fd.honeycomb.translate.read.ReaderFactory;
31 import java.util.HashSet;
32 import java.util.Set;
33 import org.junit.Test;
34 import org.mockito.Mock;
35 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
36
37 public class VppCommonModuleTest {
38
39     @Named("honeycomb-context")
40     @Bind
41     @Mock
42     private DataBroker honeycombContext;
43
44     @Inject
45     private Set<ReaderFactory> readerFactories = new HashSet<>();
46
47     @Test
48     public void testConfigure() throws Exception {
49         initMocks(this);
50         Guice.createInjector(new VppCommonModule(), BoundFieldModule.of(this)).injectMembers(this);
51         assertThat(readerFactories, is(not(empty())));
52     }
53 }