blob: afb8c7dc8731694d5e5e48e04f3dd9c8b3ab0647 [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.
*/
import junit.framework.*;
import java.util.concurrent.*;
import java.io.*;
public class TimeUnitTest extends JSR166TestCase {
public static void main(String[] args) {
junit.textui.TestRunner.run(suite());
}
public static Test suite() {
return new TestSuite(TimeUnitTest.class);
}
// (loops to 88888 check increments at all time divisions.)
/**
* convert correctly converts sample values across the units
*/
public void testConvert() {
for (long t = 0; t < 88888; ++t) {
assertEquals(t,
TimeUnit.SECONDS.convert(t,
TimeUnit.SECONDS));
assertEquals(t,
TimeUnit.SECONDS.convert(1000L*t,
TimeUnit.MILLISECONDS));
assertEquals(t,
TimeUnit.SECONDS.convert(1000000L*t,
TimeUnit.MICROSECONDS));
assertEquals(t,
TimeUnit.SECONDS.convert(1000000000L*t,
TimeUnit.NANOSECONDS));
assertEquals(1000L*t,
TimeUnit.MILLISECONDS.convert(t,
TimeUnit.SECONDS));
assertEquals(t,
TimeUnit.MILLISECONDS.convert(t,
TimeUnit.MILLISECONDS));
assertEquals(t,
TimeUnit.MILLISECONDS.convert(1000L*t,
TimeUnit.MICROSECONDS));
assertEquals(t,
TimeUnit.MILLISECONDS.convert(1000000L*t,
TimeUnit.NANOSECONDS));
assertEquals(1000000L*t,
TimeUnit.MICROSECONDS.convert(t,
TimeUnit.SECONDS));
assertEquals(1000L*t,
TimeUnit.MICROSECONDS.convert(t,
TimeUnit.MILLISECONDS));
assertEquals(t,
TimeUnit.MICROSECONDS.convert(t,
TimeUnit.MICROSECONDS));
assertEquals(t,
TimeUnit.MICROSECONDS.convert(1000L*t,
TimeUnit.NANOSECONDS));
assertEquals(1000000000L*t,
TimeUnit.NANOSECONDS.convert(t,
TimeUnit.SECONDS));
assertEquals(1000000L*t,
TimeUnit.NANOSECONDS.convert(t,
TimeUnit.MILLISECONDS));
assertEquals(1000L*t,
TimeUnit.NANOSECONDS.convert(t,
TimeUnit.MICROSECONDS));
assertEquals(t,
TimeUnit.NANOSECONDS.convert(t,
TimeUnit.NANOSECONDS));
}
}
/**
* toNanos correctly converts sample values in different units to
* nanoseconds
*/
public void testToNanos() {
for (long t = 0; t < 88888; ++t) {
assertEquals(1000000000L*t,
TimeUnit.SECONDS.toNanos(t));
assertEquals(1000000L*t,
TimeUnit.MILLISECONDS.toNanos(t));
assertEquals(1000L*t,
TimeUnit.MICROSECONDS.toNanos(t));
assertEquals(t,
TimeUnit.NANOSECONDS.toNanos(t));
}
}
/**
* toMicros correctly converts sample values in different units to
* microseconds
*/
public void testToMicros() {
for (long t = 0; t < 88888; ++t) {
assertEquals(1000000L*t,
TimeUnit.SECONDS.toMicros(t));
assertEquals(1000L*t,
TimeUnit.MILLISECONDS.toMicros(t));
assertEquals(t,
TimeUnit.MICROSECONDS.toMicros(t));
assertEquals(t,
TimeUnit.NANOSECONDS.toMicros(t*1000L));
}
}
/**
* toMillis correctly converts sample values in different units to
* milliseconds
*/
public void testToMillis() {
for (long t = 0; t < 88888; ++t) {
assertEquals(1000L*t,
TimeUnit.SECONDS.toMillis(t));
assertEquals(t,
TimeUnit.MILLISECONDS.toMillis(t));
assertEquals(t,
TimeUnit.MICROSECONDS.toMillis(t*1000L));
assertEquals(t,
TimeUnit.NANOSECONDS.toMillis(t*1000000L));
}
}
/**
* toSeconds correctly converts sample values in different units to
* seconds
*/
public void testToSeconds() {
for (long t = 0; t < 88888; ++t) {
assertEquals(t,
TimeUnit.SECONDS.toSeconds(t));
assertEquals(t,
TimeUnit.MILLISECONDS.toSeconds(t*1000L));
assertEquals(t,
TimeUnit.MICROSECONDS.toSeconds(t*1000000L));
assertEquals(t,
TimeUnit.NANOSECONDS.toSeconds(t*1000000000L));
}
}
/**
* convert saturates positive too-large values to Long.MAX_VALUE
* and negative to LONG.MIN_VALUE
*/
public void testConvertSaturate() {
assertEquals(Long.MAX_VALUE,
TimeUnit.NANOSECONDS.convert(Long.MAX_VALUE / 2,
TimeUnit.SECONDS));
assertEquals(Long.MIN_VALUE,
TimeUnit.NANOSECONDS.convert(-Long.MAX_VALUE / 4,
TimeUnit.SECONDS));
}
/**
* toNanos saturates positive too-large values to Long.MAX_VALUE
* and negative to LONG.MIN_VALUE
*/
public void testToNanosSaturate() {
assertEquals(Long.MAX_VALUE,
TimeUnit.MILLISECONDS.toNanos(Long.MAX_VALUE / 2));
assertEquals(Long.MIN_VALUE,
TimeUnit.MILLISECONDS.toNanos(-Long.MAX_VALUE / 3));
}
/**
* toString returns string containing common name of unit
*/
public void testToString() {
String s = TimeUnit.SECONDS.toString();
assertTrue(s.indexOf("ECOND") >= 0);
}
/**
* Timed wait without holding lock throws
* IllegalMonitorStateException
*/
public void testTimedWait_IllegalMonitorException() {
//created a new thread with anonymous runnable
Thread t = new Thread(new Runnable() {
public void run() {
Object o = new Object();
TimeUnit tu = TimeUnit.MILLISECONDS;
try {
tu.timedWait(o,LONG_DELAY_MS);
threadShouldThrow();
}
catch (InterruptedException ie) {
threadUnexpectedException();
}
catch(IllegalMonitorStateException success) {
}
}
});
t.start();
try {
Thread.sleep(SHORT_DELAY_MS);
t.interrupt();
t.join();
} catch(Exception e) {
unexpectedException();
}
}
/**
* timedWait throws InterruptedException when interrupted
*/
public void testTimedWait() {
Thread t = new Thread(new Runnable() {
public void run() {
Object o = new Object();
TimeUnit tu = TimeUnit.MILLISECONDS;
try {
synchronized(o) {
tu.timedWait(o,MEDIUM_DELAY_MS);
}
threadShouldThrow();
}
catch(InterruptedException success) {}
catch(IllegalMonitorStateException failure) {
threadUnexpectedException();
}
}
});
t.start();
try {
Thread.sleep(SHORT_DELAY_MS);
t.interrupt();
t.join();
} catch(Exception e) {
unexpectedException();
}
}
/**
* timedJoin throws InterruptedException when interrupted
*/
public void testTimedJoin() {
Thread t = new Thread(new Runnable() {
public void run() {
TimeUnit tu = TimeUnit.MILLISECONDS;
try {
Thread s = new Thread(new Runnable() {
public void run() {
try {
Thread.sleep(MEDIUM_DELAY_MS);
} catch(InterruptedException success){}
}
});
s.start();
tu.timedJoin(s,MEDIUM_DELAY_MS);
threadShouldThrow();
}
catch(Exception e) {}
}
});
t.start();
try {
Thread.sleep(SHORT_DELAY_MS);
t.interrupt();
t.join();
} catch(Exception e) {
unexpectedException();
}
}
/**
* timedSleep throws InterruptedException when interrupted
*/
public void testTimedSleep() {
//created a new thread with anonymous runnable
Thread t = new Thread(new Runnable() {
public void run() {
TimeUnit tu = TimeUnit.MILLISECONDS;
try {
tu.sleep(MEDIUM_DELAY_MS);
threadShouldThrow();
}
catch(InterruptedException success) {}
}
});
t.start();
try {
Thread.sleep(SHORT_DELAY_MS);
t.interrupt();
t.join();
} catch(Exception e) {
unexpectedException();
}
}
/**
* a deserialized serialized unit is equal
*/
public void testSerialization() {
TimeUnit q = TimeUnit.MILLISECONDS;
try {
ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
out.writeObject(q);
out.close();
ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
TimeUnit r = (TimeUnit)in.readObject();
assertEquals(q.toString(), r.toString());
} catch(Exception e){
e.printStackTrace();
unexpectedException();
}
}
}