f38cf770f1bc8b2cb6ba4228a434fbe9e3484d43
[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.junit.Assert.assertThat;
25 import static org.junit.Assert.assertTrue;
26
27 import java.io.IOException;
28 import java.util.Base64;
29 import javax.ws.rs.core.Response;
30 import org.junit.After;
31 import org.junit.Test;
32 import org.junit.runner.RunWith;
33 import org.onap.aai.modelloader.util.ArtifactTestUtils;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.boot.test.context.SpringBootTest;
36 import org.springframework.test.context.TestPropertySource;
37 import org.springframework.test.context.junit4.SpringRunner;
38
39 /**
40  * Tests for the ModelLoaderService class.
41  *
42  */
43 @RunWith(SpringRunner.class)
44 @SpringBootTest(classes = {ModelLoaderService.class, MockBabelServiceClientFactory.class})
45 @TestPropertySource(properties = {"CONFIG_HOME=src/test/resources",})
46 public class TestModelLoaderService {
47
48     @Autowired
49     private ModelLoaderService service;
50
51     @After
52     public void shutdown() {
53         service.preShutdownOperations();
54     }
55
56     @Test
57     public void testMissingConfig() {
58         new ModelLoaderService().start();
59         assertTrue(true);
60     }
61
62     @Test
63     public void testLoadModel() {
64         Response response = service.loadModel("");
65         assertThat(response.getStatus(), is(Response.Status.OK.getStatusCode()));
66     }
67
68     @Test
69     public void testSaveModel() {
70         Response response = service.saveModel("", "");
71         assertThat(response.getStatus(), is(Response.Status.OK.getStatusCode()));
72     }
73
74     @Test
75     public void testIngestModel() throws IOException {
76         byte[] csarPayload = new ArtifactTestUtils().loadResource("compressedArtifacts/service-VscpaasTest-csar.csar");
77         Response response = service.ingestModel("model-name", "", Base64.getEncoder().encodeToString(csarPayload));
78         assertThat(response.getStatus(), is(Response.Status.OK.getStatusCode()));
79     }
80
81     @Test
82     public void testIngestModelMissingName() throws IOException {
83         byte[] csarPayload = new ArtifactTestUtils().loadResource("compressedArtifacts/service-VscpaasTest-csar.csar");
84         Response response = service.ingestModel("", "", Base64.getEncoder().encodeToString(csarPayload));
85         assertThat(response.getStatus(), is(Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()));
86     }
87
88 }