65b373f540c786c4d0d47351bd566c6fe13c3fdf
[dcaegen2/services.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : DCAE
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
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.datalake.feeder.service;
21
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;
30
31 import static org.mockito.Mockito.when;
32
33 @RunWith(MockitoJUnitRunner.class)
34 public class DesignServiceTest {
35
36     @Mock
37     private DesignType designType;
38
39     @Mock
40     private ApplicationConfiguration applicationConfiguration;
41
42     @InjectMocks
43     private DesignService designService;
44
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);
54         System.out.println();
55     }
56 }