2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright 2019 China Mobile
 
   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
 
  11  *     http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  20 package org.onap.datalake.feeder.service;
 
  22 import org.junit.Test;
 
  23 import org.junit.runner.RunWith;
 
  24 import org.mockito.InjectMocks;
 
  25 import org.mockito.Mock;
 
  26 import org.mockito.junit.MockitoJUnitRunner;
 
  27 import org.onap.datalake.feeder.config.ApplicationConfiguration;
 
  28 import org.onap.datalake.feeder.domain.Design;
 
  29 import org.onap.datalake.feeder.domain.DesignType;
 
  31 import static org.mockito.Mockito.when;
 
  33 @RunWith(MockitoJUnitRunner.class)
 
  34 public class DesignServiceTest {
 
  37     private DesignType designType;
 
  40     private ApplicationConfiguration applicationConfiguration;
 
  43     private DesignService designService;
 
  45     @Test(expected = RuntimeException.class)
 
  46     public void testDeploy() {
 
  47         when(designType.getId()).thenReturn("KIBANA_DB","ES_MAPPING");
 
  48         Design design = new Design();
 
  49         design.setDesignType(designType);
 
  50         design.setBody("jsonString");
 
  51         //when(applicationConfiguration.getKibanaDashboardImportApi()).thenReturn("/api/kibana/dashboards/import?exclude=index-pattern");
 
  52         //when(applicationConfiguration.getKibanaPort()).thenReturn(5601);
 
  53         designService.deploy(design);