Springboot 2.0 upgrade
[so.git] / common / src / test / java / org / onap / so / client / aai / AAIUpdatorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
21 package org.onap.so.client.aai;
22
23 import static org.mockito.ArgumentMatchers.isA;
24 import static org.mockito.Mockito.doNothing;
25 import static org.mockito.Mockito.times;
26 import static org.mockito.Mockito.verify;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.junit.runner.RunWith;
30 import org.mockito.Mock;
31 import org.mockito.junit.MockitoJUnitRunner;
32
33 @RunWith(MockitoJUnitRunner.class) 
34 public class AAIUpdatorTest {
35         
36         @Mock
37         protected AAIRestClientI client;
38         String vnfName = "testVnf";
39         String uuid = "UUID";
40         AAIUpdatorImpl updator;
41         
42         @Before
43         public void init(){
44                 updator = new AAIUpdatorImpl();
45                 updator.setClient(client);
46         }
47
48         @Test
49         public void testUpdateVnfToLocked() throws Exception{           
50                 doNothing().when(client).updateMaintenceFlagVnfId(isA(String.class), isA(Boolean.class), isA(String.class));    
51                 updator.updateVnfToLocked(vnfName, uuid);
52                 verify(client, times(1)).updateMaintenceFlagVnfId(vnfName, true, uuid);
53         }
54         
55         @Test
56         public void testUpdateVnfToUnLocked() throws Exception {
57                 doNothing().when(client).updateMaintenceFlagVnfId(isA(String.class), isA(Boolean.class), isA(String.class));    
58                 updator.updateVnfToUnLocked(vnfName, uuid);
59                 verify(client, times(1)).updateMaintenceFlagVnfId(vnfName, false, uuid);
60         }
61 }