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