ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/AtomicLongArrayTest.java
Revision: 1.38
Committed: Tue Jan 26 13:33:05 2021 UTC (3 years, 2 months ago) by dl
Branch: MAIN
CVS Tags: HEAD
Changes since 1.37: +2 -0 lines
Log Message:
Replace Integer with Item class

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 java.util.Arrays;
10 import java.util.concurrent.atomic.AtomicLongArray;
11
12 import junit.framework.Test;
13 import junit.framework.TestSuite;
14
15 public class AtomicLongArrayTest extends JSR166TestCase {
16 public static void main(String[] args) {
17 main(suite(), args);
18 }
19 public static Test suite() {
20 return new TestSuite(AtomicLongArrayTest.class);
21 }
22
23 /**
24 * constructor creates array of given size with all elements zero
25 */
26 public void testConstructor() {
27 AtomicLongArray aa = new AtomicLongArray(SIZE);
28 for (int i = 0; i < SIZE; i++)
29 assertEquals(0, aa.get(i));
30 }
31
32 /**
33 * constructor with null array throws NPE
34 */
35 public void testConstructor2NPE() {
36 try {
37 long[] a = null;
38 new AtomicLongArray(a);
39 shouldThrow();
40 } catch (NullPointerException success) {}
41 }
42
43 /**
44 * constructor with array is of same size and has all elements
45 */
46 public void testConstructor2() {
47 long[] a = { 17L, 3L, -42L, 99L, -7L };
48 AtomicLongArray aa = new AtomicLongArray(a);
49 assertEquals(a.length, aa.length());
50 for (int i = 0; i < a.length; i++)
51 assertEquals(a[i], aa.get(i));
52 }
53
54 /**
55 * get and set for out of bound indices throw IndexOutOfBoundsException
56 */
57 @SuppressWarnings("deprecation")
58 public void testIndexing() {
59 AtomicLongArray aa = new AtomicLongArray(SIZE);
60 for (int index : new int[] { -1, SIZE }) {
61 try {
62 aa.get(index);
63 shouldThrow();
64 } catch (IndexOutOfBoundsException success) {}
65 try {
66 aa.set(index, 1);
67 shouldThrow();
68 } catch (IndexOutOfBoundsException success) {}
69 try {
70 aa.lazySet(index, 1);
71 shouldThrow();
72 } catch (IndexOutOfBoundsException success) {}
73 try {
74 aa.compareAndSet(index, 1, 2);
75 shouldThrow();
76 } catch (IndexOutOfBoundsException success) {}
77 try {
78 aa.weakCompareAndSet(index, 1, 2);
79 shouldThrow();
80 } catch (IndexOutOfBoundsException success) {}
81 try {
82 aa.getAndAdd(index, 1);
83 shouldThrow();
84 } catch (IndexOutOfBoundsException success) {}
85 try {
86 aa.addAndGet(index, 1);
87 shouldThrow();
88 } catch (IndexOutOfBoundsException success) {}
89 }
90 }
91
92 /**
93 * get returns the last value set at index
94 */
95 public void testGetSet() {
96 AtomicLongArray aa = new AtomicLongArray(SIZE);
97 for (int i = 0; i < SIZE; i++) {
98 aa.set(i, 1);
99 assertEquals(1, aa.get(i));
100 aa.set(i, 2);
101 assertEquals(2, aa.get(i));
102 aa.set(i, -3);
103 assertEquals(-3, aa.get(i));
104 }
105 }
106
107 /**
108 * get returns the last value lazySet at index by same thread
109 */
110 public void testGetLazySet() {
111 AtomicLongArray aa = new AtomicLongArray(SIZE);
112 for (int i = 0; i < SIZE; i++) {
113 aa.lazySet(i, 1);
114 assertEquals(1, aa.get(i));
115 aa.lazySet(i, 2);
116 assertEquals(2, aa.get(i));
117 aa.lazySet(i, -3);
118 assertEquals(-3, aa.get(i));
119 }
120 }
121
122 /**
123 * compareAndSet succeeds in changing value if equal to expected else fails
124 */
125 public void testCompareAndSet() {
126 AtomicLongArray aa = new AtomicLongArray(SIZE);
127 for (int i = 0; i < SIZE; i++) {
128 aa.set(i, 1);
129 assertTrue(aa.compareAndSet(i, 1, 2));
130 assertTrue(aa.compareAndSet(i, 2, -4));
131 assertEquals(-4, aa.get(i));
132 assertFalse(aa.compareAndSet(i, -5, 7));
133 assertEquals(-4, aa.get(i));
134 assertTrue(aa.compareAndSet(i, -4, 7));
135 assertEquals(7, aa.get(i));
136 }
137 }
138
139 /**
140 * compareAndSet in one thread enables another waiting for value
141 * to succeed
142 */
143 public void testCompareAndSetInMultipleThreads() throws InterruptedException {
144 final AtomicLongArray a = new AtomicLongArray(1);
145 a.set(0, 1);
146 Thread t = new Thread(new CheckedRunnable() {
147 public void realRun() {
148 while (!a.compareAndSet(0, 2, 3))
149 Thread.yield();
150 }});
151
152 t.start();
153 assertTrue(a.compareAndSet(0, 1, 2));
154 t.join(LONG_DELAY_MS);
155 assertFalse(t.isAlive());
156 assertEquals(3, a.get(0));
157 }
158
159 /**
160 * repeated weakCompareAndSet succeeds in changing value when equal
161 * to expected
162 */
163 @SuppressWarnings("deprecation")
164 public void testWeakCompareAndSet() {
165 AtomicLongArray aa = new AtomicLongArray(SIZE);
166 for (int i = 0; i < SIZE; i++) {
167 aa.set(i, 1);
168 do {} while (!aa.weakCompareAndSet(i, 1, 2));
169 do {} while (!aa.weakCompareAndSet(i, 2, -4));
170 assertEquals(-4, aa.get(i));
171 do {} while (!aa.weakCompareAndSet(i, -4, 7));
172 assertEquals(7, aa.get(i));
173 }
174 }
175
176 /**
177 * getAndSet returns previous value and sets to given value at given index
178 */
179 public void testGetAndSet() {
180 AtomicLongArray aa = new AtomicLongArray(SIZE);
181 for (int i = 0; i < SIZE; i++) {
182 aa.set(i, 1);
183 assertEquals(1, aa.getAndSet(i, 0));
184 assertEquals(0, aa.getAndSet(i, -10));
185 assertEquals(-10, aa.getAndSet(i, 1));
186 }
187 }
188
189 /**
190 * getAndAdd returns previous value and adds given value
191 */
192 public void testGetAndAdd() {
193 AtomicLongArray aa = new AtomicLongArray(SIZE);
194 for (int i = 0; i < SIZE; i++) {
195 aa.set(i, 1);
196 assertEquals(1, aa.getAndAdd(i, 2));
197 assertEquals(3, aa.get(i));
198 assertEquals(3, aa.getAndAdd(i, -4));
199 assertEquals(-1, aa.get(i));
200 }
201 }
202
203 /**
204 * getAndDecrement returns previous value and decrements
205 */
206 public void testGetAndDecrement() {
207 AtomicLongArray aa = new AtomicLongArray(SIZE);
208 for (int i = 0; i < SIZE; i++) {
209 aa.set(i, 1);
210 assertEquals(1, aa.getAndDecrement(i));
211 assertEquals(0, aa.getAndDecrement(i));
212 assertEquals(-1, aa.getAndDecrement(i));
213 }
214 }
215
216 /**
217 * getAndIncrement returns previous value and increments
218 */
219 public void testGetAndIncrement() {
220 AtomicLongArray aa = new AtomicLongArray(SIZE);
221 for (int i = 0; i < SIZE; i++) {
222 aa.set(i, 1);
223 assertEquals(1, aa.getAndIncrement(i));
224 assertEquals(2, aa.get(i));
225 aa.set(i, -2);
226 assertEquals(-2, aa.getAndIncrement(i));
227 assertEquals(-1, aa.getAndIncrement(i));
228 assertEquals(0, aa.getAndIncrement(i));
229 assertEquals(1, aa.get(i));
230 }
231 }
232
233 /**
234 * addAndGet adds given value to current, and returns current value
235 */
236 public void testAddAndGet() {
237 AtomicLongArray aa = new AtomicLongArray(SIZE);
238 for (int i = 0; i < SIZE; i++) {
239 aa.set(i, 1);
240 assertEquals(3, aa.addAndGet(i, 2));
241 assertEquals(3, aa.get(i));
242 assertEquals(-1, aa.addAndGet(i, -4));
243 assertEquals(-1, aa.get(i));
244 }
245 }
246
247 /**
248 * decrementAndGet decrements and returns current value
249 */
250 public void testDecrementAndGet() {
251 AtomicLongArray aa = new AtomicLongArray(SIZE);
252 for (int i = 0; i < SIZE; i++) {
253 aa.set(i, 1);
254 assertEquals(0, aa.decrementAndGet(i));
255 assertEquals(-1, aa.decrementAndGet(i));
256 assertEquals(-2, aa.decrementAndGet(i));
257 assertEquals(-2, aa.get(i));
258 }
259 }
260
261 /**
262 * incrementAndGet increments and returns current value
263 */
264 public void testIncrementAndGet() {
265 AtomicLongArray aa = new AtomicLongArray(SIZE);
266 for (int i = 0; i < SIZE; i++) {
267 aa.set(i, 1);
268 assertEquals(2, aa.incrementAndGet(i));
269 assertEquals(2, aa.get(i));
270 aa.set(i, -2);
271 assertEquals(-1, aa.incrementAndGet(i));
272 assertEquals(0, aa.incrementAndGet(i));
273 assertEquals(1, aa.incrementAndGet(i));
274 assertEquals(1, aa.get(i));
275 }
276 }
277
278 class Counter extends CheckedRunnable {
279 final AtomicLongArray aa;
280 int decs;
281 Counter(AtomicLongArray a) { aa = a; }
282 public void realRun() {
283 for (;;) {
284 boolean done = true;
285 for (int i = 0; i < aa.length(); i++) {
286 long v = aa.get(i);
287 assertTrue(v >= 0);
288 if (v != 0) {
289 done = false;
290 if (aa.compareAndSet(i, v, v - 1))
291 decs++;
292 }
293 }
294 if (done)
295 break;
296 }
297 }
298 }
299
300 /**
301 * Multiple threads using same array of counters successfully
302 * update a number of times equal to total count
303 */
304 public void testCountingInMultipleThreads() throws InterruptedException {
305 final AtomicLongArray aa = new AtomicLongArray(SIZE);
306 long countdown = 10000;
307 for (int i = 0; i < SIZE; i++)
308 aa.set(i, countdown);
309 Counter c1 = new Counter(aa);
310 Counter c2 = new Counter(aa);
311 Thread t1 = newStartedThread(c1);
312 Thread t2 = newStartedThread(c2);
313 t1.join();
314 t2.join();
315 assertEquals(c1.decs + c2.decs, SIZE * countdown);
316 }
317
318 /**
319 * a deserialized/reserialized array holds same values in same order
320 */
321 public void testSerialization() throws Exception {
322 AtomicLongArray x = new AtomicLongArray(SIZE);
323 for (int i = 0; i < SIZE; i++)
324 x.set(i, -i);
325 AtomicLongArray y = serialClone(x);
326 assertNotSame(x, y);
327 assertEquals(x.length(), y.length());
328 for (int i = 0; i < SIZE; i++) {
329 assertEquals(x.get(i), y.get(i));
330 }
331 }
332
333 /**
334 * toString returns current value.
335 */
336 public void testToString() {
337 long[] a = { 17, 3, -42, 99, -7 };
338 AtomicLongArray aa = new AtomicLongArray(a);
339 assertEquals(Arrays.toString(a), aa.toString());
340 }
341
342 }