Use RestTemplate in AaiRestClient
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / restclient / TestAaiServiceClient.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.restclient;
22
23 import static javax.servlet.http.HttpServletResponse.SC_OK;
24 import static org.apache.commons.io.IOUtils.write;
25 import static org.junit.Assert.assertTrue;
26
27 import java.io.IOException;
28 import java.nio.charset.Charset;
29 import java.util.Properties;
30
31 import javax.servlet.ServletException;
32 import javax.servlet.http.HttpServletRequest;
33 import javax.servlet.http.HttpServletResponse;
34 import javax.ws.rs.core.MediaType;
35
36 import org.eclipse.jetty.server.Handler;
37 import org.eclipse.jetty.server.Request;
38 import org.eclipse.jetty.server.Server;
39 import org.eclipse.jetty.server.handler.AbstractHandler;
40 import org.junit.After;
41 import org.junit.Before;
42 import org.junit.Test;
43 import org.onap.aai.modelloader.config.ModelLoaderConfig;
44
45 /**
46  * Local testing of the A&AI Service client.
47  *
48  */
49 public class TestAaiServiceClient {
50
51     private Server server;
52     private AaiRestClient aaiClient;
53
54     @Before
55     public void startJetty() throws Exception {
56         server = new Server(8080);
57         server.setHandler(getMockHandler());
58         server.start();
59
60         Properties props = new Properties();
61         props.put("ml.aai.KEYSTORE_PASSWORD", "2244");
62         ModelLoaderConfig config = new ModelLoaderConfig(props, ".");
63         aaiClient = new AaiRestClient(config);
64     }
65
66     @After
67     public void stopJetty() throws Exception {
68         server.stop();
69     }
70
71     @Test
72     public void testBuildAaiRestClient() {
73         Properties props = new Properties();
74         ModelLoaderConfig config = new ModelLoaderConfig(props, ".");
75         new AaiRestClient(config);
76         assertTrue(true);
77     }
78
79     @Test
80     public void testOperations() {
81         String url = "http://localhost:8080";
82         String transId = "";
83         MediaType mediaType = MediaType.APPLICATION_JSON_TYPE;
84         aaiClient.getResource(url, "", mediaType);
85         aaiClient.deleteResource("http://localhost", transId, "");
86         aaiClient.getAndDeleteResource(url, transId);
87         aaiClient.postResource(url, "", transId, mediaType);
88         aaiClient.putResource(url, "", transId, mediaType);
89         assertTrue(true);
90     }
91
92
93     /**
94      * Creates an {@link AbstractHandler handler} returning an arbitrary String as a response.
95      * 
96      * @return never <code>null</code>.
97      */
98     private Handler getMockHandler() {
99         Handler handler = new AbstractHandler() {
100             @Override
101             public void handle(String target, Request request, HttpServletRequest servletRequest,
102                     HttpServletResponse response) throws IOException, ServletException {
103                 response.setStatus(SC_OK);
104                 response.setContentType("text/json;charset=utf-8");
105                 write("", response.getOutputStream(), Charset.defaultCharset());
106                 request.setHandled(true);
107             }
108         };
109         return handler;
110     }
111 }
112