cd161dea39428bfe3fe354e8161ff6a17722c3a0
[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 package org.onap.aai.restclient;
21
22 import org.junit.Ignore;
23 import org.junit.Test;
24 import org.junit.runner.RunWith;
25 import org.onap.aai.restclient.*;
26 import org.springframework.beans.factory.annotation.Autowired;
27 import org.springframework.boot.test.context.SpringBootTest;
28 import org.springframework.http.HttpMethod;
29 import org.springframework.http.ResponseEntity;
30 import org.springframework.test.context.ContextConfiguration;
31 import org.springframework.test.context.TestPropertySource;
32 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
33
34 import java.util.HashMap;
35 import java.util.Map;
36
37 @Ignore
38 @RunWith(SpringJUnit4ClassRunner.class)
39 @TestPropertySource(locations = "/schemaService/schema-service-rest.properties" )
40 @ContextConfiguration(classes = {RestClientFactoryConfiguration.class, SchemaServiceRestClient.class, RestClientFactory.class, PropertyPasswordConfiguration.class})
41
42 @SpringBootTest
43 public class SchemaRestClientTest {
44
45     private String SCHEMA_SERVICE = "schema-service";
46     @Autowired
47     private RestClientFactory restClientFactory;
48
49     @Test
50     public void  testGetRequestToSchemaService() {
51         ResponseEntity aaiResponse;
52         RestClient restClient = null;
53
54             restClient = restClientFactory
55                 .getRestClient(SCHEMA_SERVICE);
56
57         String uri = "";
58         Map<String, String> headersMap = new HashMap<>();
59         String content = "";
60         aaiResponse = restClient.execute(
61             uri,
62             HttpMethod.GET,
63             headersMap,
64             content);
65         System.out.println("Helo"+aaiResponse.getStatusCode());
66     }
67 }