Initial import
[jpf-core.git] / src / tests / gov / nasa / jpf / test / java / concurrent / AtomicIntegerFieldUpdaterTest.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 package gov.nasa.jpf.test.java.concurrent;
19
20 import gov.nasa.jpf.util.test.TestJPF;
21
22 import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
23
24 import org.junit.Test;
25
26 /**
27  * raw test for java.util.concurrent.atomic.AtomicIntegerFieldUpdater
28  */
29 public class AtomicIntegerFieldUpdaterTest extends TestJPF {
30
31   int value;
32
33   @Test
34   public void testField() {
35
36     if (verifyNoPropertyViolation()) {
37       AtomicIntegerFieldUpdater<AtomicIntegerFieldUpdaterTest> upd =
38               AtomicIntegerFieldUpdater.newUpdater(AtomicIntegerFieldUpdaterTest.class, "value");
39
40       final int v1 = 98734534;
41       final int v2 = 79304843;
42       final int nogo = 46907854;
43       value = v1;
44
45       assert upd.compareAndSet(this, v1, v2);
46       assert value == v2;
47
48       assert !upd.compareAndSet(this, v1, nogo);
49       assert value == v2;
50
51       assert value == upd.get(this);
52
53       assert v2 == upd.getAndSet(this, v1);
54       assert value == v1;
55
56       upd.set(this, v2);
57       assert value == v2;
58
59       upd.lazySet(this, v1);
60       assert value == v1;
61
62       assert upd.weakCompareAndSet(this, v1, v2);
63       assert value == v2;
64
65       assert !upd.weakCompareAndSet(this, v1, nogo);
66       assert value == v2;
67
68       assert v2 == upd.getAndAdd(this, 5);
69       assert v2 + 5 == value;
70     }
71   }
72 }