Re-encrypt drools-pdp properties
[policy/drools-pdp.git] / feature-pooling-dmaap / src / test / java / org / onap / policy / drools / pooling / extractor / FieldExtractorTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2018 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.drools.pooling.extractor;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNull;
25
26 import java.lang.reflect.Field;
27 import org.junit.Before;
28 import org.junit.Test;
29
30 public class FieldExtractorTest {
31
32     private static final String VALUE = "the value";
33     private static final Integer INT_VALUE = 10;
34
35     private Field field;
36     private FieldExtractor ext;
37
38     @Before
39     public void setUp() throws Exception {
40         field = MyClass.class.getDeclaredField("value");
41         ext = new FieldExtractor(field);
42     }
43
44     @Test
45     public void testExtract() throws Exception {
46         assertEquals(VALUE, ext.extract(new MyClass()));
47
48         // repeat
49         assertEquals(VALUE, ext.extract(new MyClass()));
50
51         // null value
52         MyClass obj = new MyClass();
53         obj.value = null;
54         assertEquals(null, ext.extract(obj));
55
56         obj.value = VALUE + "X";
57         assertEquals(VALUE + "X", ext.extract(obj));
58
59         // different value type
60         field = MyClass.class.getDeclaredField("value2");
61         ext = new FieldExtractor(field);
62         assertEquals(INT_VALUE, ext.extract(new MyClass()));
63     }
64
65     @Test
66     public void testExtract_ArgEx() {
67         // pass it the wrong class type
68         assertNull(ext.extract(this));
69     }
70
71     private static class MyClass {
72         @SuppressWarnings("unused")
73         public String value = VALUE;
74
75         @SuppressWarnings("unused")
76         public int value2 = INT_VALUE;
77     }
78 }