summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java')
-rw-r--r--src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java106
1 files changed, 106 insertions, 0 deletions
diff --git a/src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java b/src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java
new file mode 100644
index 0000000..96620ee
--- /dev/null
+++ b/src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java
@@ -0,0 +1,106 @@
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 European Software Marketing Ltd.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.aai.modelloader.restclient;
+
+import static javax.servlet.http.HttpServletResponse.SC_OK;
+import static org.apache.commons.io.IOUtils.write;
+
+import java.io.IOException;
+import java.util.Properties;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import javax.ws.rs.core.MediaType;
+import org.eclipse.jetty.server.Handler;
+import org.eclipse.jetty.server.Request;
+import org.eclipse.jetty.server.Server;
+import org.eclipse.jetty.server.handler.AbstractHandler;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.aai.modelloader.config.ModelLoaderConfig;
+
+/**
+ * Local testing of the Babel service
+ *
+ */
+public class TestAaiServiceClient {
+
+ private Server server;
+ private AaiRestClient aaiClient;
+
+ @Before
+ public void startJetty() throws Exception {
+ server = new Server(8080);
+ server.setHandler(getMockHandler());
+ server.start();
+
+ Properties props = new Properties();
+ props.put("ml.aai.KEYSTORE_PASSWORD", "2244");
+ ModelLoaderConfig config = new ModelLoaderConfig(props, ".");
+ aaiClient = new AaiRestClient(config);
+ }
+
+ @After
+ public void stopJetty() throws Exception {
+ server.stop();
+ }
+
+ @Test
+ public void testBuildAaiRestClient() {
+ Properties props = new Properties();
+ ModelLoaderConfig config = new ModelLoaderConfig(props, ".");
+ new AaiRestClient(config);
+ }
+
+ @Test
+ public void testOperations() {
+ String url = "http://localhost";
+ String transId = "";
+ MediaType mediaType = MediaType.APPLICATION_JSON_TYPE;
+ aaiClient.getResource(url, "", mediaType);
+ aaiClient.deleteResource("http://localhost", transId, "");
+ aaiClient.getAndDeleteResource(url, transId);
+ aaiClient.postResource(url, "", transId, mediaType);
+ aaiClient.putResource(url, "", transId, mediaType);
+ }
+
+
+ /**
+ * Creates an {@link AbstractHandler handler} returning an arbitrary String as a response.
+ *
+ * @return never <code>null</code>.
+ */
+ private Handler getMockHandler() {
+ Handler handler = new AbstractHandler() {
+ @Override
+ public void handle(String target, Request request, HttpServletRequest servletRequest,
+ HttpServletResponse response) throws IOException, ServletException {
+ response.setStatus(SC_OK);
+ response.setContentType("text/json;charset=utf-8");
+ write("", response.getOutputStream());
+ request.setHandled(true);
+ }
+ };
+ return handler;
+ }
+}
+