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