Improve error logging
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / service / TestModelLoaderServiceWithSdc.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
26 import java.io.IOException;
27 import java.util.Base64;
28
29 import javax.ws.rs.core.Response;
30
31 import org.junit.After;
32 import org.junit.Test;
33 import org.junit.runner.RunWith;
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 import org.springframework.test.context.junit4.SpringRunner;
39
40 /**
41  * Tests for the ModelLoaderService class.
42  *
43  */
44 @RunWith(SpringRunner.class)
45 @SpringBootTest(classes = {ModelLoaderService.class, HttpsBabelServiceClientFactory.class})
46 @TestPropertySource(properties = {"CONFIG_HOME=src/test/resources",})
47 public class TestModelLoaderServiceWithSdc {
48
49     @Autowired
50     private ModelLoaderService service;
51
52     @After
53     public void shutdown() {
54         service.preShutdownOperations();
55     }
56
57     @Test
58     public void testIngestModel() throws IOException {
59         byte[] csarPayload = new ArtifactTestUtils().loadResource("compressedArtifacts/service-VscpaasTest-csar.csar");
60         Response response = service.ingestModel("model-name", "", Base64.getEncoder().encodeToString(csarPayload));
61         assertThat(response.getStatus(), is(Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()));
62     }
63
64
65 }