Reduce the number of raw-type related warnings in aai-common
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / restclient / SchemaRestClientTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2018-19 AT&T Intellectual Property. All rights reserved.
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
21 package org.onap.aai.restclient;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 import org.junit.Ignore;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.boot.test.context.SpringBootTest;
31 import org.springframework.http.HttpMethod;
32 import org.springframework.http.ResponseEntity;
33 import org.springframework.test.context.ContextConfiguration;
34 import org.springframework.test.context.TestPropertySource;
35 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
36
37 @Ignore
38 @RunWith(SpringJUnit4ClassRunner.class)
39 @TestPropertySource(locations = "/schemaService/schema-service-rest.properties")
40 @ContextConfiguration(
41         classes = {RestClientFactoryConfiguration.class, SchemaServiceRestClient.class, RestClientFactory.class,
42                 PropertyPasswordConfiguration.class})
43
44 @SpringBootTest
45 public class SchemaRestClientTest {
46
47     private String SCHEMA_SERVICE = "schema-service";
48     @Autowired
49     private RestClientFactory restClientFactory;
50
51     @Test
52     public void testGetRequestToSchemaService() {
53         ResponseEntity<String> aaiResponse;
54         RestClient restClient = null;
55
56         restClient = restClientFactory.getRestClient(SCHEMA_SERVICE);
57
58         String uri = "";
59         Map<String, String> headersMap = new HashMap<>();
60         String content = "";
61         aaiResponse = restClient.execute(uri, HttpMethod.GET, headersMap, content);
62         System.out.println("Helo" + aaiResponse.getStatusCode());
63     }
64 }