2266eafa12646d02fa2c5508a936e4730f3e32c0
[so.git] / adapters / mso-catalog-db-adapter / src / test / java / org / onap / so / adapters / catalogdb / catalogrest / QueryServiceArtifactTest.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.Service;
25 import org.onap.so.db.catalog.beans.ServiceArtifact;
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 QueryServiceArtifactTest {
32
33     @Test
34     public void ServiceArtifactTest() {
35         QueryServiceArtifact queryServiceArtifact = new QueryServiceArtifact(createList());
36         String jsonResult = queryServiceArtifact.JSON2(true, false);
37         Assertions.assertThat(JsonPathUtil.getInstance().locateResult(jsonResult, "$.serviceArtifact[0].name").get())
38                 .isEqualTo("eMBB.zip");
39     }
40
41     private List<ServiceArtifact> createList() {
42         List<ServiceArtifact> artifacts = new ArrayList<>();
43         Service service = mock(Service.class);
44         ServiceArtifact artifact = new ServiceArtifact();
45         artifact.setService(service);
46         artifact.setArtifactUUID("b170dbeb-2954-4a4f-ad12-6bc84b3e089e");
47         artifact.setChecksum("ZWRkMGM3NzNjMmE3NzliYTFiZGNmZjVlMDE4OWEzMTA=");
48         artifact.setDescription("embbCn");
49         artifact.setType("OTHER");
50         artifact.setName("eMBB.zip");
51         artifact.setVersion("1");
52         artifacts.add(artifact);
53         return artifacts;
54     }
55 }