ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/AtomicReferenceTest.java
(Generate patch)

Comparing jsr166/src/test/tck/AtomicReferenceTest.java (file contents):
Revision 1.9 by jsr166, Mon Nov 2 20:28:31 2009 UTC vs.
Revision 1.22 by jsr166, Wed Dec 31 19:05:42 2014 UTC

# Line 1 | Line 1
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/licenses/publicdomain
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.*;
9 > import java.util.concurrent.atomic.AtomicReference;
10 >
11 > import junit.framework.Test;
12 > import junit.framework.TestSuite;
13  
14   public class AtomicReferenceTest extends JSR166TestCase {
15 <    public static void main (String[] args) {
16 <        junit.textui.TestRunner.run (suite());
15 >    public static void main(String[] args) {
16 >        junit.textui.TestRunner.run(suite());
17      }
18      public static Test suite() {
19          return new TestSuite(AtomicReferenceTest.class);
# Line 21 | Line 22 | public class AtomicReferenceTest extends
22      /**
23       * constructor initializes to given value
24       */
25 <    public void testConstructor(){
25 >    public void testConstructor() {
26          AtomicReference ai = new AtomicReference(one);
27 <        assertEquals(one,ai.get());
27 >        assertSame(one, ai.get());
28      }
29  
30      /**
31       * default constructed initializes to null
32       */
33 <    public void testConstructor2(){
33 >    public void testConstructor2() {
34          AtomicReference ai = new AtomicReference();
35 <        assertNull(ai.get());
35 >        assertNull(ai.get());
36      }
37  
38      /**
39       * get returns the last value set
40       */
41 <    public void testGetSet(){
41 >    public void testGetSet() {
42          AtomicReference ai = new AtomicReference(one);
43 <        assertEquals(one,ai.get());
44 <        ai.set(two);
45 <        assertEquals(two,ai.get());
46 <        ai.set(m3);
47 <        assertEquals(m3,ai.get());
43 >        assertSame(one, ai.get());
44 >        ai.set(two);
45 >        assertSame(two, ai.get());
46 >        ai.set(m3);
47 >        assertSame(m3, ai.get());
48      }
49  
50      /**
51       * get returns the last value lazySet in same thread
52       */
53 <    public void testGetLazySet(){
53 >    public void testGetLazySet() {
54          AtomicReference ai = new AtomicReference(one);
55 <        assertEquals(one,ai.get());
56 <        ai.lazySet(two);
57 <        assertEquals(two,ai.get());
58 <        ai.lazySet(m3);
59 <        assertEquals(m3,ai.get());
55 >        assertSame(one, ai.get());
56 >        ai.lazySet(two);
57 >        assertSame(two, ai.get());
58 >        ai.lazySet(m3);
59 >        assertSame(m3, ai.get());
60      }
61  
62      /**
63       * compareAndSet succeeds in changing value if equal to expected else fails
64       */
65 <    public void testCompareAndSet(){
65 >    public void testCompareAndSet() {
66          AtomicReference ai = new AtomicReference(one);
67 <        assertTrue(ai.compareAndSet(one,two));
68 <        assertTrue(ai.compareAndSet(two,m4));
69 <        assertEquals(m4,ai.get());
70 <        assertFalse(ai.compareAndSet(m5,seven));
71 <        assertFalse((seven.equals(ai.get())));
72 <        assertTrue(ai.compareAndSet(m4,seven));
73 <        assertEquals(seven,ai.get());
67 >        assertTrue(ai.compareAndSet(one, two));
68 >        assertTrue(ai.compareAndSet(two, m4));
69 >        assertSame(m4, ai.get());
70 >        assertFalse(ai.compareAndSet(m5, seven));
71 >        assertSame(m4, ai.get());
72 >        assertTrue(ai.compareAndSet(m4, seven));
73 >        assertSame(seven, ai.get());
74      }
75  
76      /**
77       * compareAndSet in one thread enables another waiting for value
78       * to succeed
79       */
80 <    public void testCompareAndSetInMultipleThreads() {
80 >    public void testCompareAndSetInMultipleThreads() throws Exception {
81          final AtomicReference ai = new AtomicReference(one);
82 <        Thread t = new Thread(new Runnable() {
83 <                public void run() {
84 <                    while(!ai.compareAndSet(two, three)) Thread.yield();
85 <                }});
86 <        try {
87 <            t.start();
88 <            assertTrue(ai.compareAndSet(one, two));
89 <            t.join(LONG_DELAY_MS);
90 <            assertFalse(t.isAlive());
91 <            assertEquals(ai.get(), three);
92 <        }
92 <        catch(Exception e) {
93 <            unexpectedException();
94 <        }
82 >        Thread t = new Thread(new CheckedRunnable() {
83 >            public void realRun() {
84 >                while (!ai.compareAndSet(two, three))
85 >                    Thread.yield();
86 >            }});
87 >
88 >        t.start();
89 >        assertTrue(ai.compareAndSet(one, two));
90 >        t.join(LONG_DELAY_MS);
91 >        assertFalse(t.isAlive());
92 >        assertSame(three, ai.get());
93      }
94  
95      /**
96       * repeated weakCompareAndSet succeeds in changing value when equal
97       * to expected
98       */
99 <    public void testWeakCompareAndSet(){
99 >    public void testWeakCompareAndSet() {
100          AtomicReference ai = new AtomicReference(one);
101 <        while(!ai.weakCompareAndSet(one,two));
102 <        while(!ai.weakCompareAndSet(two,m4));
103 <        assertEquals(m4,ai.get());
104 <        while(!ai.weakCompareAndSet(m4,seven));
105 <        assertEquals(seven,ai.get());
101 >        while (!ai.weakCompareAndSet(one, two));
102 >        while (!ai.weakCompareAndSet(two, m4));
103 >        assertSame(m4, ai.get());
104 >        while (!ai.weakCompareAndSet(m4, seven));
105 >        assertSame(seven, ai.get());
106      }
107  
108      /**
109       * getAndSet returns previous value and sets to given value
110       */
111 <    public void testGetAndSet(){
111 >    public void testGetAndSet() {
112          AtomicReference ai = new AtomicReference(one);
113 <        assertEquals(one,ai.getAndSet(zero));
114 <        assertEquals(zero,ai.getAndSet(m10));
115 <        assertEquals(m10,ai.getAndSet(one));
113 >        assertSame(one, ai.getAndSet(zero));
114 >        assertSame(zero, ai.getAndSet(m10));
115 >        assertSame(m10, ai.getAndSet(one));
116      }
117  
118      /**
119       * a deserialized serialized atomic holds same value
120       */
121 <    public void testSerialization() {
122 <        AtomicReference l = new AtomicReference();
123 <
124 <        try {
125 <            l.set(one);
126 <            ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
127 <            ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
128 <            out.writeObject(l);
129 <            out.close();
130 <
133 <            ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
134 <            ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
135 <            AtomicReference r = (AtomicReference) in.readObject();
136 <            assertEquals(l.get(), r.get());
137 <        } catch(Exception e){
138 <            unexpectedException();
139 <        }
121 >    public void testSerialization() throws Exception {
122 >        AtomicReference x = new AtomicReference();
123 >        AtomicReference y = serialClone(x);
124 >        assertNotSame(x, y);
125 >        x.set(one);
126 >        AtomicReference z = serialClone(x);
127 >        assertNotSame(y, z);
128 >        assertEquals(one, x.get());
129 >        assertEquals(null, y.get());
130 >        assertEquals(one, z.get());
131      }
132  
133      /**
# Line 144 | Line 135 | public class AtomicReferenceTest extends
135       */
136      public void testToString() {
137          AtomicReference<Integer> ai = new AtomicReference<Integer>(one);
138 <        assertEquals(ai.toString(), one.toString());
138 >        assertEquals(one.toString(), ai.toString());
139          ai.set(two);
140 <        assertEquals(ai.toString(), two.toString());
140 >        assertEquals(two.toString(), ai.toString());
141      }
142  
143   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines