blob: bec77207448054c15260951460c0f3e971f1c7f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Francois Chouinard - Initial API and implementation
* Alexandre Montplaisir - Port to JUnit4
*******************************************************************************/
package org.eclipse.tracecompass.tmf.core.tests.event;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
import org.eclipse.tracecompass.tmf.core.timestamp.TmfSimpleTimestamp;
import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
import org.junit.Test;
/**
* Test suite for the TmfSimpleTimestampTest class.
*/
@SuppressWarnings("javadoc")
public class TmfSimpleTimestampTest {
// ------------------------------------------------------------------------
// Variables
// ------------------------------------------------------------------------
private final ITmfTimestamp ts0 = new TmfSimpleTimestamp();
private final ITmfTimestamp ts1 = new TmfSimpleTimestamp(12345);
private final ITmfTimestamp ts2 = new TmfSimpleTimestamp(-1234);
// ------------------------------------------------------------------------
// Constructors
// ------------------------------------------------------------------------
@Test
public void testDefaultConstructor() {
assertEquals("getValue", 0, ts0.getValue());
assertEquals("getscale", 0, ts0.getScale());
}
@Test
public void testFullConstructor() {
assertEquals("getValue", 12345, ts1.getValue());
assertEquals("getscale", 0, ts1.getScale());
}
@Test
public void testCopyConstructor() {
final ITmfTimestamp copy = new TmfSimpleTimestamp(ts1);
assertEquals("getValue", ts1.getValue(), copy.getValue());
assertEquals("getscale", ts1.getScale(), copy.getScale());
assertEquals("getValue", 12345, copy.getValue());
assertEquals("getscale", 0, copy.getScale());
}
@Test
public void testCopyBadTimestamp() {
try {
new TmfSimpleTimestamp(null);
fail("TmfSimpleTimestamp: null argument");
} catch (final NullPointerException e) {
}
}
// ------------------------------------------------------------------------
// equals
// ------------------------------------------------------------------------
@Test
public void testEqualsReflexivity() {
assertTrue("equals", ts0.equals(ts0));
assertTrue("equals", ts1.equals(ts1));
assertTrue("equals", ts2.equals(ts2));
assertTrue("equals", !ts0.equals(ts1));
assertTrue("equals", !ts0.equals(ts2));
assertTrue("equals", !ts1.equals(ts0));
assertTrue("equals", !ts1.equals(ts2));
assertTrue("equals", !ts2.equals(ts0));
assertTrue("equals", !ts2.equals(ts1));
}
@Test
public void testEqualsSymmetry() {
final ITmfTimestamp ts0copy = new TmfSimpleTimestamp(ts0);
assertTrue("equals", ts0.equals(ts0copy));
assertTrue("equals", ts0copy.equals(ts0));
final ITmfTimestamp ts1copy = new TmfSimpleTimestamp(ts1);
assertTrue("equals", ts1.equals(ts1copy));
assertTrue("equals", ts1copy.equals(ts1));
}
@Test
public void testEqualsTransivity() {
final ITmfTimestamp ts0copy1 = new TmfSimpleTimestamp(ts0);
final ITmfTimestamp ts0copy2 = new TmfSimpleTimestamp(ts0copy1);
assertTrue("equals", ts0.equals(ts0copy1));
assertTrue("equals", ts0copy1.equals(ts0copy2));
assertTrue("equals", ts0.equals(ts0copy2));
final ITmfTimestamp ts1copy1 = new TmfSimpleTimestamp(ts1);
final ITmfTimestamp ts1copy2 = new TmfSimpleTimestamp(ts1copy1);
assertTrue("equals", ts1.equals(ts1copy1));
assertTrue("equals", ts1copy1.equals(ts1copy2));
assertTrue("equals", ts1.equals(ts1copy2));
}
@Test
public void testEqualsNull() {
assertTrue("equals", !ts0.equals(null));
assertTrue("equals", !ts1.equals(null));
assertTrue("equals", !ts2.equals(null));
}
@Test
public void testEqualsNonTimestamp() {
assertFalse("equals", ts0.equals(ts0.toString()));
}
// ------------------------------------------------------------------------
// toString
// ------------------------------------------------------------------------
@Test
public void testToString() {
DateFormat df = new SimpleDateFormat("HH:mm:ss.SSS");
Date d0 = new Date(ts0.getValue()*1000);
Date d1 = new Date(ts1.getValue()*1000);
Date d2 = new Date(ts2.getValue()*1000);
assertEquals("toString", df.format(d0) + " 000 000", ts0.toString());
assertEquals("toString", df.format(d1) + " 000 000", ts1.toString());
assertEquals("toString", df.format(d2) + " 000 000", ts2.toString());
}
// ------------------------------------------------------------------------
// hashCode
// ------------------------------------------------------------------------
@Test
public void testHashCode() {
final ITmfTimestamp ts0copy = new TmfTimestamp(ts0);
final ITmfTimestamp ts1copy = new TmfTimestamp(ts1);
final ITmfTimestamp ts2copy = new TmfTimestamp(ts2);
assertTrue("hashCode", ts0.hashCode() == ts0copy.hashCode());
assertTrue("hashCode", ts1.hashCode() == ts1copy.hashCode());
assertTrue("hashCode", ts2.hashCode() == ts2copy.hashCode());
assertTrue("hashCode", ts0.hashCode() != ts1.hashCode());
}
// ------------------------------------------------------------------------
// normalize
// ------------------------------------------------------------------------
@Test
public void testNormalizeScale0() {
ITmfTimestamp ts = ts0.normalize(0, 0);
assertEquals("getValue", 0, ts.getValue());
assertEquals("getscale", 0, ts.getScale());
ts = ts0.normalize(12345, 0);
assertEquals("getValue", 12345, ts.getValue());
assertEquals("getscale", 0, ts.getScale());
ts = ts0.normalize(10, 0);
assertEquals("getValue", 10, ts.getValue());
assertEquals("getscale", 0, ts.getScale());
ts = ts0.normalize(-10, 0);
assertEquals("getValue", -10, ts.getValue());
assertEquals("getscale", 0, ts.getScale());
}
@Test
public void testNormalizeScaleNot0() {
ITmfTimestamp ts = ts0.normalize(0, 1);
assertEquals("getValue", 0, ts.getValue());
assertEquals("getscale", 1, ts.getScale());
ts = ts0.normalize(12345, 1);
assertEquals("getValue", 12345, ts.getValue());
assertEquals("getscale", 1, ts.getScale());
ts = ts0.normalize(10, 1);
assertEquals("getValue", 10, ts.getValue());
assertEquals("getscale", 1, ts.getScale());
ts = ts0.normalize(-10, 1);
assertEquals("getValue", -10, ts.getValue());
assertEquals("getscale", 1, ts.getScale());
}
// ------------------------------------------------------------------------
// compareTo
// ------------------------------------------------------------------------
@Test
public void testBasicCompareTo() {
final ITmfTimestamp tstamp1 = new TmfSimpleTimestamp(900);
final ITmfTimestamp tstamp2 = new TmfSimpleTimestamp(1000);
final ITmfTimestamp tstamp3 = new TmfSimpleTimestamp(1100);
assertTrue(tstamp1.compareTo(tstamp1) == 0);
assertTrue("CompareTo", tstamp1.compareTo(tstamp2) < 0);
assertTrue("CompareTo", tstamp1.compareTo(tstamp3) < 0);
assertTrue("CompareTo", tstamp2.compareTo(tstamp1) > 0);
assertTrue("CompareTo", tstamp2.compareTo(tstamp3) < 0);
assertTrue("CompareTo", tstamp3.compareTo(tstamp1) > 0);
assertTrue("CompareTo", tstamp3.compareTo(tstamp2) > 0);
}
@Test
public void testCompareTo() {
final ITmfTimestamp ts0a = new TmfTimestamp(0, 2);
final ITmfTimestamp ts1a = new TmfTimestamp(123450, -1);
final ITmfTimestamp ts2a = new TmfTimestamp(-12340, -1);
assertTrue(ts1.compareTo(ts1) == 0);
assertTrue("CompareTo", ts0.compareTo(ts0a) == 0);
assertTrue("CompareTo", ts1.compareTo(ts1a) == 0);
assertTrue("CompareTo", ts2.compareTo(ts2a) == 0);
}
// ------------------------------------------------------------------------
// getDelta
// ------------------------------------------------------------------------
@Test
public void testDelta() {
// Delta for same scale and precision (delta > 0)
TmfTimestamp tstamp0 = new TmfSimpleTimestamp(10);
TmfTimestamp tstamp1 = new TmfSimpleTimestamp(5);
TmfTimestamp expectd = new TmfSimpleTimestamp(5);
ITmfTimestamp delta = tstamp0.getDelta(tstamp1);
assertEquals("getDelta", 0, delta.compareTo(expectd));
// Delta for same scale and precision (delta < 0)
tstamp0 = new TmfTimestamp(5);
tstamp1 = new TmfTimestamp(10);
expectd = new TmfTimestamp(-5);
delta = tstamp0.getDelta(tstamp1);
assertEquals("getDelta", 0, delta.compareTo(expectd));
}
@Test
public void testDelta2() {
// Delta for different scale and same precision (delta > 0)
final TmfTimestamp tstamp0 = new TmfSimpleTimestamp(10);
final TmfTimestamp tstamp1 = new TmfTimestamp(1, 1);
final TmfTimestamp expectd = new TmfTimestamp(0, 0);
final ITmfTimestamp delta = tstamp0.getDelta(tstamp1);
assertEquals("getDelta", 0, delta.compareTo(expectd));
}
}