PombaReqest and ServiceInstance improvements
[vid.git] / vid-app-common / src / test / java / org / onap / vid / services / PombaServiceImplTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2018 Nokia
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.vid.services;
21
22 import static org.mockito.Mockito.times;
23 import static org.mockito.Mockito.verify;
24 import static org.mockito.MockitoAnnotations.initMocks;
25
26 import com.google.common.collect.ImmutableList;
27 import org.mockito.InjectMocks;
28 import org.mockito.Mock;
29 import org.mockito.Mockito;
30 import org.onap.vid.aai.PombaClientInterface;
31 import org.onap.vid.model.PombaInstance.PombaRequest;
32 import org.testng.annotations.BeforeClass;
33 import org.testng.annotations.BeforeMethod;
34 import org.testng.annotations.Test;
35
36 public class PombaServiceImplTest {
37
38   @Mock
39   private PombaClientInterface pombaClientInterface;
40
41   @InjectMocks
42   private PombaServiceImpl testSubject;
43
44   @BeforeClass
45   public void beforeClass() {
46     initMocks(this);
47   }
48
49   @BeforeMethod
50   public void resetMocks() {
51     Mockito.reset(pombaClientInterface);
52   }
53
54   @Test
55   public void testVerify() {
56     PombaRequest pombaRequest = new PombaRequest(ImmutableList.of());
57     testSubject.verify(pombaRequest);
58     verify(pombaClientInterface, times(1))
59         .verify(pombaRequest);
60   }
61 }