unit test coverage DbTypeTest and DbServiceTest and PortalDesignServiceTest
[dcaegen2/services.git] / components / datalake-handler / feeder / src / test / java / org / onap / datalake / feeder / service / PortalDesignServiceTest.java
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.Db;
29 import org.onap.datalake.feeder.domain.DesignType;
30 import org.onap.datalake.feeder.domain.Portal;
31 import org.onap.datalake.feeder.domain.PortalDesign;
32 import static org.junit.Assert.*;
33 import static org.mockito.Mockito.when;
34
35 @RunWith(MockitoJUnitRunner.class)
36 public class PortalDesignServiceTest {
37
38     @Mock
39     private DesignType designType;
40
41     @Mock
42     private ApplicationConfiguration applicationConfiguration;
43
44     @InjectMocks
45     private PortalDesignService designService;
46
47     @Test(expected = RuntimeException.class)
48     public void testDeploy() {
49         when(designType.getId()).thenReturn("KIBANA_DB","ES_MAPPING");
50         PortalDesign portalDesign = new PortalDesign();
51         portalDesign.setDesignType(designType);
52         portalDesign.setBody("jsonString");
53
54         Portal portal = new Portal();
55         Db db = new Db();
56         db.setHost("localhost");
57         portal.setDb(db);
58         when(designType.getPortal()).thenReturn(portal);
59         when(applicationConfiguration.getKibanaDashboardImportApi()).thenReturn("/api/kibana/dashboards/import?exclude=index-pattern");
60         when(applicationConfiguration.getKibanaPort()).thenReturn(5601);
61         designService.deploy(portalDesign);
62         System.out.println();
63     }
64 }