Initial import
[jpf-core.git] / src / tests / gov / nasa / jpf / test / mc / data / CGCreatorFactoryTest.java
1 /*
2  * Copyright (C) 2014, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The Java Pathfinder core (jpf-core) platform is licensed under the
7  * Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  *        http://www.apache.org/licenses/LICENSE-2.0. 
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and 
16  * limitations under the License.
17  */
18
19 package gov.nasa.jpf.test.mc.data;
20
21 import gov.nasa.jpf.util.json.CGCreator;
22 import gov.nasa.jpf.util.json.Value;
23 import gov.nasa.jpf.util.test.TestJPF;
24 import gov.nasa.jpf.vm.BooleanChoiceGenerator;
25 import gov.nasa.jpf.vm.ChoiceGenerator;
26 import gov.nasa.jpf.vm.Verify;
27
28 import org.junit.Test;
29
30 /**
31  *
32  * @author Ivan Mushketik
33  */
34 public class CGCreatorFactoryTest extends TestJPF {
35 static class TestBoolCGCreator implements CGCreator {
36
37     @Override
38         public ChoiceGenerator createCG(String id, Value[] values) {
39       return new BooleanChoiceGenerator(id);
40     }
41
42   }
43
44   class B {
45
46     boolean b;
47
48     public B(boolean b) {
49       this.b = b;
50     }
51
52     @Override
53     public boolean equals(Object o) {
54       B other = (B) o;
55
56       return this.b == other.b;
57     }
58
59   }
60
61   @Test
62   public void testAddUserDefinedCGCreator() {
63     if (verifyNoPropertyViolation("+jpf-core.native_classpath+=;${jpf-core}/build/tests",
64             "+jpf-core.test_classpath+=;${jpf-core.native_classpath}",
65             "+cg-creators=TF:" + TestBoolCGCreator.class.getName())) {
66
67       String json = "{"
68               + "'b' : TF()"
69               + "}";
70
71       Object[] expected = {
72         new B(true), new B(false)
73       };
74
75       B b = Verify.createFromJSON(B.class, json);
76       JSONTest.checkValue(expected, b);
77     }
78   }
79 }