e948141b89ff8f292a8cb36aa21f4d1b78336abd
[so.git] / adapters / mso-catalog-db-adapter / src / test / java / org / onap / so / adapters / catalogdb / catalogrest / QueryServiceInfoTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (c) 2019, CMCC Technologies Co., Ltd.
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.so.adapters.catalogdb.catalogrest;
21
22 import org.assertj.core.api.Assertions;
23 import org.junit.Test;
24 import org.onap.so.db.catalog.beans.ServiceInfo;
25 import org.onap.so.db.catalog.beans.Service;
26 import org.onap.so.jsonpath.JsonPathUtil;
27 import java.util.ArrayList;
28 import java.util.List;
29 import static org.mockito.Mockito.mock;
30
31 public class QueryServiceInfoTest {
32
33     @Test
34     public void serviceInfoTest() {
35         QueryServiceInfo queryServiceInfo = new QueryServiceInfo(createList());
36         String jsonResult = queryServiceInfo.JSON2(true, false);
37         String serviceInfo = jsonResult.substring(jsonResult.indexOf("{"), jsonResult.length());
38         Assertions.assertThat(JsonPathUtil.getInstance().locateResult(serviceInfo, "$.id").get()).isEqualTo("1");
39     }
40
41     private List<ServiceInfo> createList() {
42         Service service = mock(Service.class);
43         ServiceInfo serviceInfo = new ServiceInfo();
44         serviceInfo.setId(1);
45         serviceInfo.setService(service);
46         serviceInfo.setServiceInput(null);
47         serviceInfo.setServiceProperties(null);
48
49         List<ServiceInfo> serviceInfos = new ArrayList<>();
50         serviceInfos.add(serviceInfo);
51         return serviceInfos;
52     }
53
54 }