Update model-loader to spring-boot 2.4
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / service / TestModelLoaderService.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.modelloader.service;
22
23 import static org.hamcrest.CoreMatchers.is;
24 import static org.hamcrest.MatcherAssert.assertThat;
25 import static org.junit.jupiter.api.Assertions.assertTrue;
26
27 import java.io.IOException;
28 import java.util.Base64;
29
30 import javax.ws.rs.core.Response;
31
32 import org.junit.jupiter.api.AfterEach;
33 import org.junit.jupiter.api.Test;
34 import org.onap.aai.modelloader.util.ArtifactTestUtils;
35 import org.springframework.beans.factory.annotation.Autowired;
36 import org.springframework.boot.test.context.SpringBootTest;
37 import org.springframework.test.context.TestPropertySource;
38
39 /**
40  * Tests for the ModelLoaderService class.
41  *
42  */
43 @SpringBootTest(classes = {ModelLoaderService.class, MockBabelServiceClientFactory.class})
44 @TestPropertySource(properties = {"CONFIG_HOME=src/test/resources",})
45 public class TestModelLoaderService {
46
47     @Autowired
48     private ModelLoaderService service;
49
50     @AfterEach
51     public void shutdown() {
52         service.preShutdownOperations();
53     }
54
55     @Test
56     public void testMissingConfig() {
57         new ModelLoaderService().start();
58         assertTrue(true);
59     }
60
61     @Test
62     public void testLoadModel() {
63         Response response = service.loadModel("");
64         assertThat(response.getStatus(), is(Response.Status.OK.getStatusCode()));
65     }
66
67     @Test
68     public void testSaveModel() {
69         Response response = service.saveModel("", "");
70         assertThat(response.getStatus(), is(Response.Status.OK.getStatusCode()));
71     }
72
73     @Test
74     public void testIngestModel() throws IOException {
75         byte[] csarPayload = new ArtifactTestUtils().loadResource("compressedArtifacts/service-VscpaasTest-csar.csar");
76         Response response = service.ingestModel("model-name", "", Base64.getEncoder().encodeToString(csarPayload));
77         assertThat(response.getStatus(), is(Response.Status.OK.getStatusCode()));
78     }
79
80     @Test
81     public void testIngestModelMissingName() throws IOException {
82         byte[] csarPayload = new ArtifactTestUtils().loadResource("compressedArtifacts/service-VscpaasTest-csar.csar");
83         Response response = service.ingestModel("", "", Base64.getEncoder().encodeToString(csarPayload));
84         assertThat(response.getStatus(), is(Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()));
85     }
86
87 }