3bddbc50d3c63d5ad967e572a1e4a6e7d563a6d0
[policy/drools-applications.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * demo
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
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.policy.template.demo;
22
23 import static org.junit.Assert.assertNotNull;
24 import static org.junit.Assert.fail;
25
26 import java.util.UUID;
27
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;
36
37 public class AaiSimulatorTest {
38
39         @BeforeClass
40         public static void setUpSimulator() {
41                 try {
42                         Util.buildAaiSim();
43                 } catch (InterruptedException e) {
44                         fail(e.getMessage());
45                 }
46         }
47
48         @AfterClass
49         public static void tearDownSimulator() {
50                 HttpServletServer.factory.destroy();
51         }
52
53         @Test
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);
58         }
59
60         @Test
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);
65         }
66 }