blob: b2d91b84287c9af99fc3400a74db3e26a4802cc6 [file] [log] [blame]
/*
* Written by Doug Lea with assistance from members of JCP JSR-166
* Expert Group and released to the public domain, as explained at
* http://creativecommons.org/licenses/publicdomain
* Other contributors include Andrew Wright, Jeffrey Hayes,
* Pat Fisher, Mike Judd.
*/
package tests.api.java.util.concurrent; // android-added
import junit.framework.*;
import java.util.concurrent.atomic.*;
import java.io.*;
public class AtomicBooleanTest extends JSR166TestCase {
public static Test suite() {
return new TestSuite(AtomicBooleanTest.class);
}
/**
* constructor initializes to given value
*/
public void testConstructor() {
assertTrue(new AtomicBoolean(true).get());
assertFalse(new AtomicBoolean(false).get());
}
/**
* default constructed initializes to false
*/
public void testConstructor2() {
AtomicBoolean ai = new AtomicBoolean();
assertFalse(ai.get());
}
/**
* get returns the last value set
*/
public void testGetSet() {
AtomicBoolean ai = new AtomicBoolean(true);
assertTrue(ai.get());
ai.set(false);
assertFalse(ai.get());
ai.set(true);
assertTrue(ai.get());
}
/**
* get returns the last value lazySet in same thread
*/
public void testGetLazySet() {
AtomicBoolean ai = new AtomicBoolean(true);
assertTrue(ai.get());
ai.lazySet(false);
assertFalse(ai.get());
ai.lazySet(true);
assertTrue(ai.get());
}
/**
* compareAndSet succeeds in changing value if equal to expected else fails
*/
public void testCompareAndSet() {
AtomicBoolean ai = new AtomicBoolean(true);
assertTrue(ai.compareAndSet(true,false));
assertFalse(ai.get());
assertTrue(ai.compareAndSet(false,false));
assertFalse(ai.get());
assertFalse(ai.compareAndSet(true,false));
assertFalse(ai.get());
assertTrue(ai.compareAndSet(false,true));
assertTrue(ai.get());
}
/**
* compareAndSet in one thread enables another waiting for value
* to succeed
*/
public void testCompareAndSetInMultipleThreads() throws Exception {
final AtomicBoolean ai = new AtomicBoolean(true);
Thread t = new Thread(new CheckedRunnable() {
public void realRun() {
while (!ai.compareAndSet(false, true)) Thread.yield();
}});
t.start();
assertTrue(ai.compareAndSet(true, false));
t.join(LONG_DELAY_MS);
assertFalse(t.isAlive());
}
/**
* repeated weakCompareAndSet succeeds in changing value when equal
* to expected
*/
public void testWeakCompareAndSet() {
AtomicBoolean ai = new AtomicBoolean(true);
while (!ai.weakCompareAndSet(true,false));
assertFalse(ai.get());
while (!ai.weakCompareAndSet(false,false));
assertFalse(ai.get());
while (!ai.weakCompareAndSet(false,true));
assertTrue(ai.get());
}
/**
* getAndSet returns previous value and sets to given value
*/
public void testGetAndSet() {
AtomicBoolean ai = new AtomicBoolean(true);
assertEquals(true,ai.getAndSet(false));
assertEquals(false,ai.getAndSet(false));
assertEquals(false,ai.getAndSet(true));
assertTrue(ai.get());
}
/**
* a deserialized serialized atomic holds same value
*/
public void testSerialization() throws Exception {
AtomicBoolean l = new AtomicBoolean();
l.set(true);
ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
out.writeObject(l);
out.close();
ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
AtomicBoolean r = (AtomicBoolean) in.readObject();
assertEquals(l.get(), r.get());
}
/**
* toString returns current value.
*/
public void testToString() {
AtomicBoolean ai = new AtomicBoolean();
assertEquals(ai.toString(), Boolean.toString(false));
ai.set(true);
assertEquals(ai.toString(), Boolean.toString(true));
}
}