2ca7239ec4c413e2b1c8b9985a20d08e85fc536d
[hc2vpp.git] /
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.hc2vpp.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.assertEquals;
23 import static org.junit.Assert.assertThat;
24 import static org.mockito.MockitoAnnotations.initMocks;
25
26 import com.google.inject.Guice;
27 import com.google.inject.Inject;
28 import com.google.inject.name.Named;
29 import com.google.inject.testing.fieldbinder.Bind;
30 import com.google.inject.testing.fieldbinder.BoundFieldModule;
31 import io.fd.hc2vpp.common.translate.util.JvppReplyConsumer;
32 import io.fd.honeycomb.data.init.ShutdownHandler;
33 import io.fd.honeycomb.translate.read.ReaderFactory;
34 import java.util.HashSet;
35 import java.util.Set;
36 import org.junit.Test;
37 import org.mockito.Mock;
38 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
39
40 public class VppCommonModuleTest {
41
42     @Named("honeycomb-context")
43     @Bind
44     @Mock
45     private DataBroker honeycombContext;
46
47     @Mock
48     @Bind
49     private ShutdownHandler shutdownHandler;
50
51     @Inject
52     private Set<ReaderFactory> readerFactories = new HashSet<>();
53
54     @Test
55     public void testConfigure() throws Exception {
56         initMocks(this);
57         Guice.createInjector(new VppCommonModule(), BoundFieldModule.of(this)).injectMembers(this);
58         assertThat(readerFactories, is(not(empty())));
59         assertEquals(15, JvppReplyConsumer.JvppReplyTimeoutHolder.getTimeout());
60     }
61
62     @Test
63     public void testConfigureJVppTimeoutIgnoreOnRetry() {
64         initMocks(this);
65         Guice.createInjector(new VppCommonModule(), BoundFieldModule.of(this)).injectMembers(this);
66         JvppReplyConsumer.JvppReplyTimeoutHolder.setupTimeout(1);
67         // reconfiguration is ignored
68         assertEquals(15, JvppReplyConsumer.JvppReplyTimeoutHolder.getTimeout());
69     }
70 }