ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/AtomicBooleanTest.java
Revision: 1.18
Committed: Tue Mar 15 19:47:06 2011 UTC (13 years, 2 months ago) by jsr166
Branch: MAIN
CVS Tags: release-1_7_0
Changes since 1.17: +1 -1 lines
Log Message:
Update Creative Commons license URL in legal notices

File Contents

# Content
1 /*
2 * Written by Doug Lea with assistance from members of JCP JSR-166
3 * Expert Group and released to the public domain, as explained at
4 * http://creativecommons.org/publicdomain/zero/1.0/
5 * Other contributors include Andrew Wright, Jeffrey Hayes,
6 * Pat Fisher, Mike Judd.
7 */
8
9 import junit.framework.*;
10 import java.util.concurrent.atomic.*;
11 import java.io.*;
12
13 public class AtomicBooleanTest extends JSR166TestCase {
14 public static void main(String[] args) {
15 junit.textui.TestRunner.run(suite());
16 }
17 public static Test suite() {
18 return new TestSuite(AtomicBooleanTest.class);
19 }
20
21 /**
22 * constructor initializes to given value
23 */
24 public void testConstructor() {
25 assertTrue(new AtomicBoolean(true).get());
26 assertFalse(new AtomicBoolean(false).get());
27 }
28
29 /**
30 * default constructed initializes to false
31 */
32 public void testConstructor2() {
33 AtomicBoolean ai = new AtomicBoolean();
34 assertFalse(ai.get());
35 }
36
37 /**
38 * get returns the last value set
39 */
40 public void testGetSet() {
41 AtomicBoolean ai = new AtomicBoolean(true);
42 assertTrue(ai.get());
43 ai.set(false);
44 assertFalse(ai.get());
45 ai.set(true);
46 assertTrue(ai.get());
47 }
48
49 /**
50 * get returns the last value lazySet in same thread
51 */
52 public void testGetLazySet() {
53 AtomicBoolean ai = new AtomicBoolean(true);
54 assertTrue(ai.get());
55 ai.lazySet(false);
56 assertFalse(ai.get());
57 ai.lazySet(true);
58 assertTrue(ai.get());
59 }
60
61 /**
62 * compareAndSet succeeds in changing value if equal to expected else fails
63 */
64 public void testCompareAndSet() {
65 AtomicBoolean ai = new AtomicBoolean(true);
66 assertTrue(ai.compareAndSet(true,false));
67 assertFalse(ai.get());
68 assertTrue(ai.compareAndSet(false,false));
69 assertFalse(ai.get());
70 assertFalse(ai.compareAndSet(true,false));
71 assertFalse(ai.get());
72 assertTrue(ai.compareAndSet(false,true));
73 assertTrue(ai.get());
74 }
75
76 /**
77 * compareAndSet in one thread enables another waiting for value
78 * to succeed
79 */
80 public void testCompareAndSetInMultipleThreads() throws Exception {
81 final AtomicBoolean ai = new AtomicBoolean(true);
82 Thread t = new Thread(new CheckedRunnable() {
83 public void realRun() {
84 while (!ai.compareAndSet(false, true)) Thread.yield();
85 }});
86
87 t.start();
88 assertTrue(ai.compareAndSet(true, false));
89 t.join(LONG_DELAY_MS);
90 assertFalse(t.isAlive());
91 }
92
93 /**
94 * repeated weakCompareAndSet succeeds in changing value when equal
95 * to expected
96 */
97 public void testWeakCompareAndSet() {
98 AtomicBoolean ai = new AtomicBoolean(true);
99 while (!ai.weakCompareAndSet(true,false));
100 assertFalse(ai.get());
101 while (!ai.weakCompareAndSet(false,false));
102 assertFalse(ai.get());
103 while (!ai.weakCompareAndSet(false,true));
104 assertTrue(ai.get());
105 }
106
107 /**
108 * getAndSet returns previous value and sets to given value
109 */
110 public void testGetAndSet() {
111 AtomicBoolean ai = new AtomicBoolean(true);
112 assertEquals(true,ai.getAndSet(false));
113 assertEquals(false,ai.getAndSet(false));
114 assertEquals(false,ai.getAndSet(true));
115 assertTrue(ai.get());
116 }
117
118 /**
119 * a deserialized serialized atomic holds same value
120 */
121 public void testSerialization() throws Exception {
122 AtomicBoolean l = new AtomicBoolean();
123
124 l.set(true);
125 ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
126 ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
127 out.writeObject(l);
128 out.close();
129
130 ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
131 ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
132 AtomicBoolean r = (AtomicBoolean) in.readObject();
133 assertEquals(l.get(), r.get());
134 }
135
136 /**
137 * toString returns current value.
138 */
139 public void testToString() {
140 AtomicBoolean ai = new AtomicBoolean();
141 assertEquals(ai.toString(), Boolean.toString(false));
142 ai.set(true);
143 assertEquals(ai.toString(), Boolean.toString(true));
144 }
145
146 }