2 * Copyright (c) 2016 Cisco and/or its affiliates.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package io.fd.hc2vpp.common.integration;
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;
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;
36 import org.junit.Test;
37 import org.mockito.Mock;
38 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
40 public class VppCommonModuleTest {
42 @Named("honeycomb-context")
45 private DataBroker honeycombContext;
49 private ShutdownHandler shutdownHandler;
52 private Set<ReaderFactory> readerFactories = new HashSet<>();
55 public void testConfigure() throws Exception {
57 Guice.createInjector(new VppCommonModule(), BoundFieldModule.of(this)).injectMembers(this);
58 assertThat(readerFactories, is(not(empty())));
59 assertEquals(15, JvppReplyConsumer.JvppReplyTimeoutHolder.getTimeout());
63 public void testConfigureJVppTimeoutIgnoreOnRetry() {
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());