Update the aai-common with the latest code
[aai/aai-common.git] / aai-core / src / test / java / org / openecomp / aai / introspection / PropertyPredicatesTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
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.openecomp.aai.introspection;
22
23 import static org.hamcrest.Matchers.*;
24 import static org.junit.Assert.*;
25 import java.util.Set;
26
27 import org.junit.BeforeClass;
28 import org.junit.Test;
29
30 import org.openecomp.aai.introspection.exceptions.AAIUnknownObjectException;
31 import org.openecomp.aai.serialization.queryformats.QueryFormatTestHelper;
32 import org.openecomp.aai.util.AAIConstants;
33
34 public class PropertyPredicatesTest {
35
36         
37         private final static Version version = Version.v10;
38         private static Loader loader;
39         private final static ModelType introspectorFactoryType = ModelType.MOXY;
40         private static Introspector obj;
41         
42         @BeforeClass
43         public static void setup() throws NoSuchFieldException, SecurityException, Exception {
44                 System.setProperty("AJSC_HOME", "./src/test/resources/");
45                 System.setProperty("BUNDLECONFIG_DIR", "bundleconfig-local");
46                 QueryFormatTestHelper.setFinalStatic(AAIConstants.class.getField("AAI_HOME_ETC_OXM"), "src/test/resources/org/openecomp/aai/introspection/");
47                 loader = LoaderFactory.createLoaderForVersion(introspectorFactoryType, version);
48                 obj = loader.introspectorFromName("test-object");
49
50         }
51         
52         @Test
53         public void includeInTestGeneration() throws AAIUnknownObjectException {
54                 
55                 Set<String> props = obj.getProperties(PropertyPredicates.includeInTestGeneration());
56                 
57                 assertThat("props not found", props, 
58                                 not(hasItems("persona-model-ver", "not-visible-test-element", "model-invariant-id", "model-version-id")));
59         }
60         
61         @Test
62         public void isVisible() throws AAIUnknownObjectException {
63                 
64                 Set<String> props = obj.getProperties(PropertyPredicates.isVisible());
65                 
66                 assertThat("props not found", props, not(hasItems("persona-model-ver")));
67         }
68         
69         @Test
70         public void all() throws AAIUnknownObjectException {
71                 
72                 Set<String> props = obj.getProperties();
73                 
74                 assertThat("all found", props, hasItems("persona-model-ver", "not-visible-test-element"));
75         }
76         
77         
78 }