ctf: Assign a CtfTmfEventFactory to each trace
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / tmf / ctf / core / tests / event / CtfTmfEventTest.java
CommitLineData
95bf10e7 1/*******************************************************************************
97de0bca 2 * Copyright (c) 2012, 2015 Ericsson
95bf10e7
AM
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial generation with CodePro tools
11 * Alexandre Montplaisir - Clean up, consolidate redundant tests
97de0bca 12 * Patrick Tasse - Remove getSubField
95bf10e7
AM
13 *******************************************************************************/
14
9722e5d7 15package org.eclipse.tracecompass.tmf.ctf.core.tests.event;
a3fc8213 16
b4f71e4a
FC
17import static org.junit.Assert.assertEquals;
18import static org.junit.Assert.assertNotNull;
8e964be1
MK
19import static org.junit.Assert.assertNull;
20
b742c196 21import java.util.Collection;
8e964be1 22import java.util.Set;
a3fc8213 23
c4d57ac1 24import org.eclipse.jdt.annotation.NonNull;
fe71057b 25import org.eclipse.tracecompass.internal.tmf.ctf.core.trace.iterator.CtfIterator;
c4d57ac1 26import org.eclipse.tracecompass.testtraces.ctf.CtfTestTrace;
2bdf0193
AM
27import org.eclipse.tracecompass.tmf.core.event.ITmfEventField;
28import org.eclipse.tracecompass.tmf.core.event.ITmfEventType;
29import org.eclipse.tracecompass.tmf.core.trace.ITmfContext;
9722e5d7
AM
30import org.eclipse.tracecompass.tmf.ctf.core.event.CtfTmfEvent;
31import org.eclipse.tracecompass.tmf.ctf.core.event.CtfTmfEventFactory;
c4d57ac1 32import org.eclipse.tracecompass.tmf.ctf.core.tests.shared.CtfTmfTestTraceUtils;
9722e5d7 33import org.eclipse.tracecompass.tmf.ctf.core.trace.CtfTmfTrace;
a3fc8213
AM
34import org.junit.Before;
35import org.junit.Test;
36
37/**
95bf10e7
AM
38 * The class <code>CtfTmfEventTest</code> contains tests for the class
39 * <code>{@link CtfTmfEvent}</code>.
a3fc8213
AM
40 *
41 * @author ematkho
42 * @version $Revision: 1.0 $
43 */
44public class CtfTmfEventTest {
45
c4d57ac1 46 private static final @NonNull CtfTestTrace testTrace = CtfTestTrace.KERNEL;
5dd1fa65 47
6cfa0200 48 private static CtfTmfEvent nullEvent;
a3fc8213
AM
49 private CtfTmfEvent fixture;
50
a3fc8213
AM
51 /**
52 * Perform pre-test initialization.
a3fc8213
AM
53 */
54 @Before
fe71057b 55 public void setUp() {
c4d57ac1 56 CtfTmfTrace trace = CtfTmfTestTraceUtils.getTrace(testTrace);
0ff9e595 57 try (CtfIterator tr = (CtfIterator) trace.createIterator();) {
dd9752d5
AM
58 tr.advance();
59 fixture = tr.getCurrentEvent();
ca5b04ad 60 nullEvent = CtfTmfEventFactory.getNullEvent(trace);
dd9752d5 61 }
0ff9e595 62 trace.dispose();
a3fc8213
AM
63 }
64
a3fc8213
AM
65 /**
66 * Run the CTFEvent(EventDefinition,StreamInputReader) constructor test.
67 */
68 @Test
69 public void testCTFEvent_read() {
70 assertNotNull(fixture);
71 }
72
73 /**
74 * Run the int getCPU() method test.
75 */
76 @Test
77 public void testGetCPU() {
b0c7c92d 78 int result = nullEvent.getCPU();
a3fc8213
AM
79 assertEquals(-1, result);
80 }
81
a3fc8213
AM
82 /**
83 * Run the String getEventName() method test.
84 */
85 @Test
86 public void testGetEventName() {
33803b9b 87 String result = nullEvent.getType().getName();
cad06250 88 assertEquals("Empty CTF event", result);
a3fc8213
AM
89 }
90
91 /**
92 * Run the ArrayList<String> getFieldNames() method test.
93 */
94 @Test
95 public void testGetFieldNames() {
b742c196 96 Collection<String> result = fixture.getContent().getFieldNames();
a3fc8213
AM
97 assertNotNull(result);
98 }
99
100 /**
101 * Run the Object getFieldValue(String) method test.
102 */
103 @Test
104 public void testGetFieldValue() {
cad06250 105 String fieldName = "pid";
788ddcbc 106 ITmfEventField result = fixture.getContent().getField(fieldName);
a3fc8213
AM
107
108 assertNotNull(result);
788ddcbc 109 assertNotNull(result.getValue());
a3fc8213
AM
110 }
111
112 /**
113 * Run the HashMap<String, CTFEventField> getFields() method test.
114 */
115 @Test
116 public void testGetFields() {
b742c196
AM
117 Collection<? extends ITmfEventField> fields = nullEvent.getContent().getFields();
118 assertEquals(0, fields.size());
a3fc8213
AM
119 }
120
6c204912
GB
121 /**
122 * Run the ITmfEventField getSubFieldValue(String[]) method test.
123 */
124 @Test
125 public void testGetSubFieldValue() {
126 /* Field exists */
127 String[] names = { "pid" };
97de0bca 128 assertNotNull(fixture.getContent().getField(names));
6c204912
GB
129
130 /* First field exists, not the second */
131 String[] names2 = { "pid", "abcd" };
97de0bca 132 assertNull(fixture.getContent().getField(names2));
6c204912
GB
133
134 /* Both field do not exist */
135 String[] names3 = { "pfid", "abcd" };
97de0bca 136 assertNull(fixture.getContent().getField(names3));
6c204912
GB
137
138 /* TODO Missing case of embedded field, need event for it */
139 }
140
a3fc8213
AM
141 /**
142 * Run the long getTimestamp() method test.
a3fc8213
AM
143 */
144 @Test
145 public void testGetTimestamp() {
58f3bc52 146 long result = nullEvent.getTimestamp().getValue();
a3fc8213
AM
147 assertEquals(-1L, result);
148 }
81c8e6f7 149
95bf10e7 150 /**
6cfa0200 151 * Test the getters for the reference, source and type.
95bf10e7 152 */
81c8e6f7 153 @Test
95bf10e7 154 public void testGetters() {
81c8e6f7 155 long rank = fixture.getRank();
0ff9e595
AM
156 CtfTmfTrace trace = fixture.getTrace();
157 assertEquals("kernel", trace.getName());
158
ed8c3fb6 159 String reference = fixture.getChannel();
b0c7c92d 160 int cpu = fixture.getCPU();
81c8e6f7 161 ITmfEventType type = fixture.getType();
5dd1fa65 162 assertEquals(ITmfContext.UNKNOWN_RANK, rank);
090c006e 163
cad06250 164 assertEquals("channel0_1", reference);
f9ff7d40 165 assertEquals(1, cpu);
cad06250 166 assertEquals("lttng_statedump_vm_map", type.toString());
81c8e6f7
MK
167 }
168
8e964be1
MK
169 /**
170 * Test the custom CTF attributes methods. The test trace doesn't have any,
171 * so the list of attributes should be empty.
172 */
173 @Test
174 public void testCustomAttributes() {
175 Set<String> attributes = fixture.listCustomAttributes();
176 assertEquals(0, attributes.size());
177
cad06250 178 String attrib = fixture.getCustomAttribute("bozo");
8e964be1
MK
179 assertNull(attrib);
180 }
181
95bf10e7
AM
182 /**
183 * Test the toString() method
184 */
81c8e6f7 185 @Test
0879b6b9 186 public void testToString() {
81c8e6f7 187 String s = fixture.getContent().toString();
cad06250 188 assertEquals("pid=1922, start=0xb73ea000, end=0xb73ec000, flags=0x8000075, inode=917738, pgoff=0", s);
81c8e6f7 189 }
6cfa0200
AM
190
191 /**
8e376474 192 * Test the {@link CtfTmfEventFactory#getNullEvent()} method, and
ca5b04ad 193 * the nullEvent's values.
6cfa0200
AM
194 */
195 @Test
196 public void testNullEvent() {
ca5b04ad 197 CtfTmfEvent nullEvent2 = CtfTmfEventFactory.getNullEvent(fixture.getTrace());
8e376474 198 assertEquals(nullEvent2, nullEvent);
6cfa0200 199 assertNotNull(nullEvent);
b0c7c92d 200 assertEquals(-1, nullEvent.getCPU());
33803b9b 201 assertEquals("Empty CTF event", nullEvent.getType().getName());
ed8c3fb6 202 assertEquals("", nullEvent.getChannel());
b742c196 203 assertEquals(0, nullEvent.getContent().getFields().size());
6cfa0200
AM
204 assertEquals(-1L, nullEvent.getTimestamp().getValue());
205 }
a3fc8213 206}
This page took 0.182319 seconds and 5 git commands to generate.