982258a298a0499039e66ffb34c27fae7e25ff3e
[policy/models.git] / models-interactions / model-impl / aai / src / test / java / org / onap / policy / aai / AaiNqRequestTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
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
22 package org.onap.policy.aai;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26
27 import java.util.UUID;
28
29 import org.junit.AfterClass;
30 import org.junit.BeforeClass;
31 import org.junit.Test;
32 import org.onap.policy.aai.util.Serialization;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36 public class AaiNqRequestTest {
37     private static final Logger logger = LoggerFactory.getLogger(AaiNqRequestTest.class);
38
39     @BeforeClass
40     public static void setUpBeforeClass() throws Exception {}
41
42     @AfterClass
43     public static void tearDownAfterClass() throws Exception {}
44
45     @Test
46     public void test() {
47         AaiNqRequest aaiNqRequest = new AaiNqRequest();
48         AaiNqInstanceFilters aaiNqInstanceFilters = new AaiNqInstanceFilters();
49
50         aaiNqRequest.setInstanceFilters(aaiNqInstanceFilters);
51         assertNotNull(aaiNqRequest.getInstanceFilters());
52         AaiNqNamedQuery aaiNqNamedQuery = new AaiNqNamedQuery();
53         UUID uuid = UUID.randomUUID();
54         aaiNqNamedQuery.setNamedQueryUuid(uuid);
55
56         AaiNqQueryParameters aaiNqQueryParameters = new AaiNqQueryParameters();
57         aaiNqQueryParameters.setNamedQuery(aaiNqNamedQuery);
58         aaiNqRequest.setQueryParameters(aaiNqQueryParameters);
59
60         assertNotNull(aaiNqRequest);
61
62         assertEquals(aaiNqNamedQuery.getNamedQueryUuid(), uuid);
63         assertEquals(aaiNqQueryParameters.getNamedQuery(), aaiNqNamedQuery);
64         assertEquals(aaiNqRequest.getQueryParameters(), aaiNqQueryParameters);
65
66         logger.info(Serialization.gsonPretty.toJson(aaiNqRequest));
67     }
68
69 }