ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/AtomicReferenceTest.java
Revision: 1.4
Committed: Sat Sep 20 18:20:07 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.3: +22 -2 lines
Log Message:
Documentation scaffolding

File Contents

# Content
1 /*
2 * Written by members of JCP JSR-166 Expert Group and released to the
3 * public domain. Use, modify, and redistribute this code in any way
4 * without acknowledgement. Other contributors include Andrew Wright,
5 * Jeffrey Hayes, Pat Fischer, Mike Judd.
6 */
7
8 import junit.framework.*;
9 import java.util.concurrent.atomic.*;
10 import java.io.*;
11
12 public class AtomicReferenceTest extends JSR166TestCase {
13 public static void main (String[] args) {
14 junit.textui.TestRunner.run (suite());
15 }
16 public static Test suite() {
17 return new TestSuite(AtomicReferenceTest.class);
18 }
19
20 /**
21 *
22 */
23 public void testConstructor(){
24 AtomicReference ai = new AtomicReference(one);
25 assertEquals(one,ai.get());
26 }
27
28 /**
29 *
30 */
31 public void testConstructor2(){
32 AtomicReference ai = new AtomicReference();
33 assertNull(ai.get());
34 }
35
36 /**
37 *
38 */
39 public void testGetSet(){
40 AtomicReference ai = new AtomicReference(one);
41 assertEquals(one,ai.get());
42 ai.set(two);
43 assertEquals(two,ai.get());
44 ai.set(m3);
45 assertEquals(m3,ai.get());
46
47 }
48 /**
49 *
50 */
51 public void testCompareAndSet(){
52 AtomicReference ai = new AtomicReference(one);
53 assertTrue(ai.compareAndSet(one,two));
54 assertTrue(ai.compareAndSet(two,m4));
55 assertEquals(m4,ai.get());
56 assertFalse(ai.compareAndSet(m5,seven));
57 assertFalse((seven.equals(ai.get())));
58 assertTrue(ai.compareAndSet(m4,seven));
59 assertEquals(seven,ai.get());
60 }
61
62 /**
63 *
64 */
65 public void testWeakCompareAndSet(){
66 AtomicReference ai = new AtomicReference(one);
67 while(!ai.weakCompareAndSet(one,two));
68 while(!ai.weakCompareAndSet(two,m4));
69 assertEquals(m4,ai.get());
70 while(!ai.weakCompareAndSet(m4,seven));
71 assertEquals(seven,ai.get());
72 }
73
74 /**
75 *
76 */
77 public void testGetAndSet(){
78 AtomicReference ai = new AtomicReference(one);
79 assertEquals(one,ai.getAndSet(zero));
80 assertEquals(zero,ai.getAndSet(m10));
81 assertEquals(m10,ai.getAndSet(one));
82 }
83
84 /**
85 *
86 */
87 public void testSerialization() {
88 AtomicReference l = new AtomicReference();
89
90 try {
91 l.set(one);
92 ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
93 ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
94 out.writeObject(l);
95 out.close();
96
97 ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
98 ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
99 AtomicReference r = (AtomicReference) in.readObject();
100 assertEquals(l.get(), r.get());
101 } catch(Exception e){
102 unexpectedException();
103 }
104 }
105
106 }
107