2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.policy.template.demo;
23 import static org.junit.Assert.assertNotNull;
24 import static org.junit.Assert.fail;
26 import java.util.UUID;
28 import org.junit.AfterClass;
29 import org.junit.BeforeClass;
30 import org.junit.Test;
31 import org.onap.policy.aai.AAIGETResponse;
32 import org.onap.policy.aai.AAINQF199.AAINQF199Manager;
33 import org.onap.policy.aai.AAINQF199.AAINQF199Request;
34 import org.onap.policy.aai.AAINQF199.AAINQF199Response;
35 import org.onap.policy.drools.http.server.HttpServletServer;
37 public class AaiSimulatorTest {
40 public static void setUpSimulator() {
43 } catch (InterruptedException e) {
49 public static void tearDownSimulator() {
50 HttpServletServer.factory.destroy();
54 public void testGet() {
55 AAIGETResponse response = AAINQF199Manager.getQuery("http://localhost:6666", "testUser", "testPass", UUID.randomUUID(), "5e49ca06-2972-4532-9ed4-6d071588d792");
56 assertNotNull(response);
57 assertNotNull(response.relationshipList);
61 public void testPost() {
62 AAINQF199Response response = AAINQF199Manager.postQuery("http://localhost:6666", "testUser", "testPass", new AAINQF199Request(), UUID.randomUUID());
63 assertNotNull(response);
64 assertNotNull(response.inventoryResponseItems);