lttng: More luna annotation updates
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / trace / TmfLocationTest.java
index a0cf96e77763bca77974e6f97d7c100240850ae4..82ff2679e8e78f40c6181263ac6849e6d0ca8ec1 100644 (file)
 /*******************************************************************************
- * Copyright (c) 2009, 2010, 2012 Ericsson
- * 
+ * Copyright (c) 2009, 2013 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
+ *   Patrick Tasse - Add tests for TmfExperimentLocation
  *******************************************************************************/
 
 package org.eclipse.linuxtools.tmf.core.tests.trace;
 
-import junit.framework.TestCase;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
 
-import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
-import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
-import org.eclipse.linuxtools.tmf.core.trace.TmfLocation;
+import org.eclipse.linuxtools.internal.tmf.core.trace.TmfExperimentLocation;
+import org.eclipse.linuxtools.internal.tmf.core.trace.TmfLocationArray;
+import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimestamp;
+import org.eclipse.linuxtools.tmf.core.trace.ITmfLocation;
+import org.eclipse.linuxtools.tmf.core.trace.TmfLongLocation;
+import org.eclipse.linuxtools.tmf.core.trace.TmfTimestampLocation;
+import org.junit.Before;
+import org.junit.Test;
 
 /**
  * Test suite for the TmfLocation class.
  */
-@SuppressWarnings("nls")
-public class TmfLocationTest extends TestCase {
+@SuppressWarnings("javadoc")
+public class TmfLocationTest {
 
     // ------------------------------------------------------------------------
     // Variables
     // ------------------------------------------------------------------------
 
-    String aString = "some location";
-    Long aLong = 12345L;
-    TmfTimestamp aTimestamp = new TmfTimestamp();
+    private String aString = "some location";
+    private Long aLong = 12345L;
+    private TmfTimestamp aTimestamp = new TmfTimestamp();
+    private TmfLocationArray aLocationArray;
 
-    TmfLocation<String> fLocation1;
-    TmfLocation<String> fLocation2;
-    TmfLocation<Long> fLocation3;
-    TmfLocation<ITmfTimestamp> fLocation4;
+    private TmfStringLocation fLocation1;
+    private TmfStringLocation fLocation2;
+    private TmfLongLocation fLocation3;
+    private TmfTimestampLocation fLocation4;
+    private TmfExperimentLocation fExpLocation;
 
     // ------------------------------------------------------------------------
     // Housekeeping
     // ------------------------------------------------------------------------
 
-    /**
-     * @param name
-     *            the test name
-     */
-    public TmfLocationTest(String name) {
-        super(name);
-    }
-
-    @Override
-    protected void setUp() throws Exception {
-        super.setUp();
-        fLocation1 = new TmfLocation<String>((String) null);
-        fLocation2 = new TmfLocation<String>(aString);
-        fLocation3 = new TmfLocation<Long>(aLong);
-        fLocation4 = new TmfLocation<ITmfTimestamp>(aTimestamp);
-    }
-
-    @Override
-    protected void tearDown() throws Exception {
-        super.tearDown();
+    @Before
+    public void setUp() {
+        fLocation1 = new TmfStringLocation((String) null);
+        fLocation2 = new TmfStringLocation(aString);
+        fLocation3 = new TmfLongLocation(aLong);
+        fLocation4 = new TmfTimestampLocation(aTimestamp);
+        aLocationArray = new TmfLocationArray(
+                new ITmfLocation[] { fLocation1, fLocation2, fLocation3, fLocation4 },
+                new long[] { 1, 2, 3, 4 }
+                );
+        fExpLocation = new TmfExperimentLocation(aLocationArray);
     }
 
     // ------------------------------------------------------------------------
     // Constructors
     // ------------------------------------------------------------------------
 
+    @Test
     public void testTmfLocation() {
-        assertNull("TmfLocation", fLocation1.getLocation());
-        assertEquals("TmfLocation", aString, fLocation2.getLocation());
-        assertEquals("TmfLocation", aLong, fLocation3.getLocation());
-        assertEquals("TmfLocation", aTimestamp, fLocation4.getLocation());
+        assertNull("TmfLocation", fLocation1.getLocationInfo());
+        assertEquals("TmfLocation", aString, fLocation2.getLocationInfo());
+        assertEquals("TmfLocation", aLong, fLocation3.getLocationInfo());
+        assertEquals("TmfLocation", aTimestamp, fLocation4.getLocationInfo());
+        assertEquals("TmfLocation", aLocationArray, fExpLocation.getLocationInfo());
     }
 
+    @Test
     public void testTmfLocationCopy() {
-        TmfLocation<String> location1 = new TmfLocation<String>(fLocation1);
-        TmfLocation<String> location2 = new TmfLocation<String>(fLocation2);
-        TmfLocation<Long> location3 = new TmfLocation<Long>(fLocation3);
-        TmfLocation<ITmfTimestamp> location4 = new TmfLocation<ITmfTimestamp>(fLocation4);
-
-        assertNull("TmfLocation", location1.getLocation());
-        assertEquals("TmfLocation", aString, location2.getLocation());
-        assertEquals("TmfLocation", aLong, location3.getLocation());
-        assertEquals("TmfLocation", aTimestamp, location4.getLocation());
-    }
-
-    // ------------------------------------------------------------------------
-    // clone
-    // ------------------------------------------------------------------------
-
-    public void testClone() {
-        try {
-            TmfLocation<String> location1 = fLocation1.clone();
-            TmfLocation<String> location2 = fLocation2.clone();
-            TmfLocation<Long> location3 = fLocation3.clone();
-            TmfLocation<ITmfTimestamp> location4 = fLocation4.clone();
-
-            assertEquals("clone", fLocation1, location1);
-            assertEquals("clone", fLocation2, location2);
-            assertEquals("clone", fLocation3, location3);
-            assertEquals("clone", fLocation4, location4);
-
-            assertEquals("clone", fLocation1.getLocation(), location1.getLocation());
-            assertEquals("clone", fLocation2.getLocation(), location2.getLocation());
-            assertEquals("clone", fLocation3.getLocation(), location3.getLocation());
-            assertEquals("clone", fLocation4.getLocation(), location4.getLocation());
-
-            assertNull("clone", location1.getLocation());
-            assertEquals("clone", aString, location2.getLocation());
-            assertEquals("clone", aLong, location3.getLocation());
-            assertEquals("clone", aTimestamp, location4.getLocation());
-        } catch (InternalError e) {
-            fail("clone()");
-        }
-    }
-
-    public static class MyCloneableClass implements Cloneable, Comparable<MyCloneableClass> {
-        private String fName;
-
-        public MyCloneableClass(String name) {
-            fName = name;
-        }
-
-        @Override
-        public String toString() {
-            return fName;
-        }
-
-        @Override
-        public MyCloneableClass clone() {
-            MyCloneableClass clone = null;
-            try {
-                clone = (MyCloneableClass) super.clone();
-                clone.fName = fName;
-            } catch (CloneNotSupportedException e) {
-            }
-            return clone;
-        }
-
-        @Override
-        public boolean equals(Object o) {
-            return fName.compareTo(((MyCloneableClass) o).fName) == 0;
-        }
-
-        @Override
-        public int compareTo(MyCloneableClass o) {
-            return fName.compareTo(o.fName);
-        }
-    }
-
-    public void testCloneCloneable() {
-        try {
-            MyCloneableClass myClass = new MyCloneableClass("myCloneableClass");
-            TmfLocation<MyCloneableClass> location = new TmfLocation<MyCloneableClass>(myClass);
-            TmfLocation<MyCloneableClass> clone = location.clone();
-
-            assertEquals("clone", location, clone);
-            assertEquals("clone", location.getLocation(), clone.getLocation());
-            assertEquals("clone", myClass, location.getLocation());
-        } catch (InternalError e) {
-            fail("clone a cloneable class");
-        }
-    }
-
-    public static class MyUnCloneableClass implements Comparable<MyUnCloneableClass> {
-        private String fName;
-
-        public MyUnCloneableClass(String name) {
-            fName = name;
-        }
-
-        @Override
-        public String toString() {
-            return fName;
-        }
-
-        @Override
-        public Object clone() throws CloneNotSupportedException {
-            throw new CloneNotSupportedException();
-        }
+        TmfStringLocation location1 = new TmfStringLocation(fLocation1);
+        TmfStringLocation location2 = new TmfStringLocation(fLocation2);
+        TmfLongLocation location3 = new TmfLongLocation(fLocation3);
+        TmfTimestampLocation location4 = new TmfTimestampLocation(fLocation4);
+        TmfExperimentLocation expLocation = new TmfExperimentLocation(fExpLocation);
 
-        @Override
-        public boolean equals(Object o) {
-            return fName.compareTo(((MyUnCloneableClass) o).fName) == 0;
-        }
-
-        @Override
-        public int compareTo(MyUnCloneableClass o) {
-            return fName.compareTo(o.fName);
-        }
-    }
-
-    public void testCloneUncloneable() {
-        try {
-            MyUnCloneableClass myClass = new MyUnCloneableClass("myUncloneableClass");
-            TmfLocation<MyUnCloneableClass> myLocation = new TmfLocation<MyUnCloneableClass>(myClass);
-            myLocation.clone();
-            fail("clone an uncloneable class");
-        } catch (InternalError e) {
-        }
+        assertNull("TmfLocation", location1.getLocationInfo());
+        assertEquals("TmfLocation", aString, location2.getLocationInfo());
+        assertEquals("TmfLocation", aLong, location3.getLocationInfo());
+        assertEquals("TmfLocation", aTimestamp, location4.getLocationInfo());
+        assertEquals("TmfLocation", aLocationArray, expLocation.getLocationInfo());
     }
 
     // ------------------------------------------------------------------------
     // hashCode
     // ------------------------------------------------------------------------
 
-    public void testHashCode() throws Exception {
-        TmfLocation<String> location1 = new TmfLocation<String>((String) null);
-        TmfLocation<String> location2 = new TmfLocation<String>(aString);
-        TmfLocation<Long> location3 = new TmfLocation<Long>(aLong);
+    @Test
+    public void testHashCode() {
+        TmfStringLocation location1 = new TmfStringLocation((String) null);
+        TmfStringLocation location2 = new TmfStringLocation(aString);
+        TmfLongLocation location3 = new TmfLongLocation(aLong);
+        TmfExperimentLocation expLocation = new TmfExperimentLocation(fExpLocation);
+        TmfLocationArray locationArray1 = new TmfLocationArray(aLocationArray, 3, fLocation4, 5);
+        TmfExperimentLocation expLocation1 = new TmfExperimentLocation(locationArray1);
+        TmfLocationArray locationArray2 = new TmfLocationArray(aLocationArray, 3, fLocation3, 4);
+        TmfExperimentLocation expLocation2 = new TmfExperimentLocation(locationArray2);
+        TmfLocationArray locationArray3 = new TmfLocationArray(
+                new ITmfLocation[] { fLocation1, fLocation2, fLocation3 },
+                new long[] { 1, 2, 3 }
+                );
+        TmfExperimentLocation expLocation3 = new TmfExperimentLocation(locationArray3);
 
         assertTrue("hashCode", fLocation1.hashCode() == location1.hashCode());
         assertTrue("hashCode", fLocation2.hashCode() == location2.hashCode());
         assertTrue("hashCode", fLocation3.hashCode() == location3.hashCode());
+        assertTrue("hashCode", fExpLocation.hashCode() == expLocation.hashCode());
 
         assertTrue("hashCode", fLocation2.hashCode() != location3.hashCode());
         assertTrue("hashCode", fLocation3.hashCode() != location2.hashCode());
+        assertTrue("hashCode", fExpLocation.hashCode() != expLocation1.hashCode());
+        assertTrue("hashCode", fExpLocation.hashCode() != expLocation2.hashCode());
+        assertTrue("hashCode", fExpLocation.hashCode() != expLocation3.hashCode());
     }
 
     // ------------------------------------------------------------------------
     // toEquals
     // ------------------------------------------------------------------------
 
-    private static class TmfLocation2 extends TmfLocation<String> {
+    private static class TmfLocation2 extends TmfStringLocation {
         public TmfLocation2(String location) {
             super(location);
         }
     }
 
-    public void testEqualsWrongTypes() throws Exception {
-        TmfLocation<String> location1 = new TmfLocation<String>(aString);
+    @Test
+    public void testEqualsWrongTypes() {
+        ITmfLocation location1 = new TmfStringLocation(aString);
         TmfLocation2 location2 = new TmfLocation2(aString);
-        
+
         assertFalse("equals", location1.equals(location2));
         assertFalse("equals", location2.equals(location1));
     }
 
-    public void testEqualsWithNulls() throws Exception {
-        TmfLocation<String> location1 = new TmfLocation<String>(aString);
-        TmfLocation<String> location2 = new TmfLocation<String>((String) null);
-        
+    @Test
+    public void testEqualsWithNulls() {
+        TmfStringLocation location1 = new TmfStringLocation(aString);
+        TmfStringLocation location2 = new TmfStringLocation((String) null);
+
         assertFalse("equals", location1.equals(location2));
         assertFalse("equals", location2.equals(location1));
     }
 
-    public void testEqualsReflexivity() throws Exception {
+    @Test
+    public void testEqualsReflexivity() {
         assertTrue("equals", fLocation2.equals(fLocation2));
         assertTrue("equals", fLocation3.equals(fLocation3));
+        assertTrue("equals", fExpLocation.equals(fExpLocation));
 
         assertTrue("equals", !fLocation2.equals(fLocation3));
         assertTrue("equals", !fLocation3.equals(fLocation2));
-    }
-
-    public void testEqualsSymmetry() throws Exception {
-        TmfLocation<String> location2 = new TmfLocation<String>(aString);
-        TmfLocation<Long> location3 = new TmfLocation<Long>(aLong);
+        TmfLocationArray locationArray1 = new TmfLocationArray(aLocationArray, 3, fLocation4, 5);
+        TmfExperimentLocation expLocation1 = new TmfExperimentLocation(locationArray1);
+        TmfLocationArray locationArray2 = new TmfLocationArray(aLocationArray, 3, fLocation3, 4);
+        TmfExperimentLocation expLocation2 = new TmfExperimentLocation(locationArray2);
+        TmfLocationArray locationArray3 = new TmfLocationArray(
+                new ITmfLocation[] { fLocation1, fLocation2, fLocation3 },
+                new long[] { 1, 2, 3 }
+                );
+        TmfExperimentLocation expLocation3 = new TmfExperimentLocation(locationArray3);
+        assertTrue("equals", !fExpLocation.equals(expLocation1));
+        assertTrue("equals", !expLocation1.equals(fExpLocation));
+        assertTrue("equals", !fExpLocation.equals(expLocation2));
+        assertTrue("equals", !expLocation2.equals(fExpLocation));
+        assertTrue("equals", !fExpLocation.equals(expLocation3));
+        assertTrue("equals", !expLocation3.equals(fExpLocation));
+    }
+
+    @Test
+    public void testEqualsSymmetry() {
+        TmfStringLocation location2 = new TmfStringLocation(aString);
+        TmfLongLocation location3 = new TmfLongLocation(aLong);
+        TmfExperimentLocation expLocation = new TmfExperimentLocation(fExpLocation);
 
         assertTrue("equals", location2.equals(fLocation2));
         assertTrue("equals", fLocation2.equals(location2));
 
         assertTrue("equals", location3.equals(fLocation3));
         assertTrue("equals", fLocation3.equals(location3));
+
+        assertTrue("equals", expLocation.equals(fExpLocation));
+        assertTrue("equals", fExpLocation.equals(expLocation));
     }
 
-    public void testEqualsTransivity() throws Exception {
-        TmfLocation<String> location1 = new TmfLocation<String>(aString);
-        TmfLocation<String> location2 = new TmfLocation<String>(aString);
-        TmfLocation<String> location3 = new TmfLocation<String>(aString);
+    @Test
+    public void testEqualsTransivity() {
+        TmfStringLocation location1 = new TmfStringLocation(aString);
+        TmfStringLocation location2 = new TmfStringLocation(aString);
+        TmfStringLocation location3 = new TmfStringLocation(aString);
+        TmfExperimentLocation expLocation1 = new TmfExperimentLocation(aLocationArray);
+        TmfExperimentLocation expLocation2 = new TmfExperimentLocation(aLocationArray);
+        TmfExperimentLocation expLocation3 = new TmfExperimentLocation(aLocationArray);
 
         assertTrue("equals", location1.equals(location2));
         assertTrue("equals", location2.equals(location3));
         assertTrue("equals", location3.equals(location1));
+        assertTrue("equals", expLocation1.equals(expLocation2));
+        assertTrue("equals", expLocation2.equals(expLocation3));
+        assertTrue("equals", expLocation3.equals(expLocation1));
     }
 
-    public void testEqualsNull() throws Exception {
+    @Test
+    public void testEqualsNull() {
         assertTrue("equals", !fLocation2.equals(null));
         assertTrue("equals", !fLocation2.equals(null));
+        assertTrue("equals", !fExpLocation.equals(null));
     }
 
     // ------------------------------------------------------------------------
     // toString
     // ------------------------------------------------------------------------
 
+    @Test
     public void testToString() {
-        String aString = "some location";
-        Long aLong = 12345L;
-        TmfTimestamp aTimestamp = new TmfTimestamp();
+        String str = "some location";
+        Long lng = 12345L;
+        TmfTimestamp ts = new TmfTimestamp();
 
-        TmfLocation<String> location1 = new TmfLocation<String>(aString);
-        TmfLocation<Long> location2 = new TmfLocation<Long>(aLong);
-        TmfLocation<ITmfTimestamp> location3 = new TmfLocation<ITmfTimestamp>(aTimestamp);
+        TmfStringLocation location1 = new TmfStringLocation(str);
+        TmfLongLocation location2 = new TmfLongLocation(lng);
+        TmfTimestampLocation location3 = new TmfTimestampLocation(ts);
+        TmfExperimentLocation expLocation = new TmfExperimentLocation(aLocationArray);
 
-        String expected1 = "TmfLocation [fLocation=" + aString + "]";
-        String expected2 = "TmfLocation [fLocation=" + aLong + "]";
-        String expected3 = "TmfLocation [fLocation=" + aTimestamp + "]";
+        String expected1 = "TmfStringLocation [fLocationInfo=" + str + "]";
+        String expected2 = "TmfLongLocation [fLocationInfo=" + lng + "]";
+        String expected3 = "TmfTimestampLocation [fLocationInfo=" + ts + "]";
+        String expected4 = "TmfExperimentLocation [" + aLocationArray + "]";
 
         assertEquals("toString", expected1, location1.toString());
         assertEquals("toString", expected2, location2.toString());
         assertEquals("toString", expected3, location3.toString());
+        assertEquals("toString", expected4, expLocation.toString());
     }
 
 }
This page took 0.030399 seconds and 5 git commands to generate.