2  * Copyright 2016-2017, Nokia Corporation
 
   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 org.onap.vfc.nfvo.driver.vnfm.svnfm.aai.impl;
 
  19 import static org.mockito.Mockito.when;
 
  21 import java.io.IOException;
 
  22 import java.util.HashMap;
 
  24 import org.apache.http.client.ClientProtocolException;
 
  25 import org.junit.Assert;
 
  26 import org.junit.Before;
 
  27 import org.junit.Test;
 
  28 import org.mockito.InjectMocks;
 
  29 import org.mockito.Mock;
 
  30 import org.mockito.Mockito;
 
  31 import org.mockito.MockitoAnnotations;
 
  32 import org.onap.vfc.nfvo.driver.vnfm.svnfm.aai.bo.AaiVnfmInfo;
 
  33 import org.onap.vfc.nfvo.driver.vnfm.svnfm.common.bo.AdaptorEnv;
 
  34 import org.onap.vfc.nfvo.driver.vnfm.svnfm.http.client.HttpClientProcessorInf;
 
  35 import org.onap.vfc.nfvo.driver.vnfm.svnfm.http.client.HttpResult;
 
  36 import org.springframework.web.bind.annotation.RequestMethod;
 
  38 public class AaiMgmrInfImplTest {
 
  40         private AaiMgmrInfImpl aaiMgmr;
 
  43         private HttpClientProcessorInf httpClientProcessor;
 
  45         private String vnfmId = "vnfmId_001";
 
  48         public void setUp() throws Exception {
 
  49                 MockitoAnnotations.initMocks(this);
 
  50                 AdaptorEnv env = new AdaptorEnv();
 
  51                 aaiMgmr.setAdaptorEnv(env);
 
  52                 MockitoAnnotations.initMocks(this);
 
  55                                 + "\"vnfm-id\":\"vnfm-id_001\","
 
  56                                 + "\"vim-id\":\"vim-id_001\","
 
  57                                 + "\"certificate-url\":\"certificate-url_001\","
 
  58                                 + "\"resource-version\":\"resource-version_001\","
 
  59                                 + "\"esr-system-info\":[{\"type\" : \"vnfm\"}]"
 
  62                 HttpResult httpResult = new HttpResult();
 
  63                 httpResult.setContent(json);
 
  65                 when(httpClientProcessor.process(Mockito.anyString(), Mockito.any(RequestMethod.class), Mockito.any(HashMap.class), Mockito.anyString())).thenReturn(httpResult);
 
  69         public void testQueryVnfPackage() throws ClientProtocolException, IOException
 
  71                 AaiVnfmInfo vnfmInfo = aaiMgmr.queryVnfm(vnfmId);
 
  72                 Assert.assertEquals("vnfm", vnfmInfo.getEsrSystemInfoList().get(0).getType());