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