rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / tmf / ctf / core / tests / event / CtfTmfLostEventStatisticsTest.java
CommitLineData
e8f9ac01 1/*******************************************************************************
60ae41e1 2 * Copyright (c) 2012, 2014 Ericsson
e8f9ac01
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 * Alexandre Montplaisir - Initial API and implementation
11 ******************************************************************************/
12
9722e5d7 13package org.eclipse.tracecompass.tmf.ctf.core.tests.event;
e8f9ac01
AM
14
15import static org.junit.Assert.assertEquals;
c1264bdc
AM
16import static org.junit.Assert.assertNotNull;
17import static org.junit.Assert.assertTrue;
e8f9ac01
AM
18import static org.junit.Assert.fail;
19import static org.junit.Assume.assumeTrue;
20
e8f9ac01
AM
21import java.util.Map;
22
f357bcd4 23import org.eclipse.tracecompass.ctf.core.CTFStrings;
e894a508 24import org.eclipse.tracecompass.statesystem.core.ITmfStateSystem;
2bdf0193
AM
25import org.eclipse.tracecompass.tmf.core.exceptions.TmfAnalysisException;
26import org.eclipse.tracecompass.tmf.core.statistics.ITmfStatistics;
27import org.eclipse.tracecompass.tmf.core.statistics.TmfStateStatistics;
28import org.eclipse.tracecompass.tmf.core.statistics.TmfStatisticsEventTypesModule;
29import org.eclipse.tracecompass.tmf.core.statistics.TmfStatisticsTotalsModule;
30import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
31import org.eclipse.tracecompass.tmf.ctf.core.tests.shared.CtfTmfTestTrace;
c1264bdc
AM
32import org.junit.After;
33import org.junit.Before;
e8f9ac01
AM
34import org.junit.BeforeClass;
35import org.junit.Rule;
36import org.junit.Test;
37import org.junit.rules.TestRule;
38import org.junit.rules.Timeout;
39
40/**
41 * Unit tests for handling of lost events by the statistics backends.
42 *
43 * @author Alexandre Montplaisir
44 */
91e7f946 45public class CtfTmfLostEventStatisticsTest {
e8f9ac01 46
c1264bdc 47 /** Time-out tests after 30 seconds */
e8f9ac01 48 @Rule
c1264bdc 49 public TestRule globalTimeout= new Timeout(30000);
e8f9ac01
AM
50
51 /**Test trace with lost events */
52 private static final CtfTmfTestTrace lostEventsTrace = CtfTmfTestTrace.HELLO_LOST;
53
c1264bdc
AM
54 private ITmfTrace fTrace;
55
e8f9ac01 56 /** The statistics back-end object for the trace with lost events */
c1264bdc 57 private ITmfStatistics fStats;
e8f9ac01 58
bd64ee73
AM
59 /* The two analysis modules needed for fStats */
60 private TmfStatisticsTotalsModule fTotalsMod;
61 private TmfStatisticsEventTypesModule fEventTypesMod;
62
e8f9ac01
AM
63 // ------------------------------------------------------------------------
64 // Maintenance
65 // ------------------------------------------------------------------------
66
67 /**
68 * Class setup
69 */
70 @BeforeClass
71 public static void setUpClass() {
c1264bdc
AM
72 assumeTrue(lostEventsTrace.exists());
73 }
802017fe 74
c1264bdc
AM
75 /**
76 * Test setup
77 */
78 @Before
79 public void setUp() {
ba27dd38
GB
80 ITmfTrace trace = lostEventsTrace.getTrace();
81 fTrace = trace;
e8f9ac01 82
c1264bdc 83 /* Prepare the two analysis-backed state systems */
bd64ee73
AM
84 fTotalsMod = new TmfStatisticsTotalsModule();
85 fEventTypesMod = new TmfStatisticsEventTypesModule();
c1264bdc 86 try {
ba27dd38
GB
87 fTotalsMod.setTrace(trace);
88 fEventTypesMod.setTrace(trace);
c1264bdc 89 } catch (TmfAnalysisException e) {
e8f9ac01
AM
90 fail();
91 }
c1264bdc 92
bd64ee73
AM
93 fTotalsMod.schedule();
94 fEventTypesMod.schedule();
95 assertTrue(fTotalsMod.waitForCompletion());
96 assertTrue(fEventTypesMod.waitForCompletion());
c1264bdc 97
bd64ee73
AM
98 ITmfStateSystem totalsSS = fTotalsMod.getStateSystem();
99 ITmfStateSystem eventTypesSS = fEventTypesMod.getStateSystem();
c1264bdc
AM
100 assertNotNull(totalsSS);
101 assertNotNull(eventTypesSS);
102
103 fStats = new TmfStateStatistics(totalsSS, eventTypesSS);
104 }
105
106 /**
107 * Test cleanup
108 */
109 @After
110 public void tearDown() {
bd64ee73 111 fStats.dispose();
03f0b0b1
AM
112 fTotalsMod.dispose();
113 fEventTypesMod.dispose();
c1264bdc 114 fTrace.dispose();
e8f9ac01
AM
115 }
116
117 // ------------------------------------------------------------------------
118 // Test methods
119 // ------------------------------------------------------------------------
120
121 /*
122 * Trace start = 1376592664828559410
123 * Trace end = 1376592665108210547
124 */
125
126 private static final long rangeStart = 1376592664900000000L;
127 private static final long rangeEnd = 1376592665000000000L;
128
129 /**
130 * Test the total number of "real" events. Make sure the lost events aren't
131 * counted in the total.
132 */
133 @Test
134 public void testLostEventsTotals() {
c1264bdc 135 long realEvents = fStats.getEventsTotal();
e8f9ac01
AM
136 assertEquals(32300, realEvents);
137 }
138
139 /**
140 * Test the number of real events in a given range. Lost events shouldn't be
141 * counted.
142 */
143 @Test
144 public void testLostEventsTotalInRange() {
c1264bdc 145 long realEventsInRange = fStats.getEventsInRange(rangeStart, rangeEnd);
e8f9ac01
AM
146 assertEquals(11209L, realEventsInRange);
147 }
148
149 /**
150 * Test the total number of lost events reported in the trace.
151 */
152 @Test
153 public void testLostEventsTypes() {
c1264bdc 154 Map<String, Long> events = fStats.getEventTypesTotal();
e8f9ac01
AM
155 Long lostEvents = events.get(CTFStrings.LOST_EVENT_NAME);
156 assertEquals(Long.valueOf(967700L), lostEvents);
157 }
158
159 /**
160 * Test the number of lost events reported in a given range.
161 */
162 @Test
163 public void testLostEventsTypesInRange() {
c1264bdc 164 Map<String, Long> eventsInRange = fStats.getEventTypesInRange(rangeStart, rangeEnd);
e8f9ac01
AM
165 long lostEventsInRange = eventsInRange.get(CTFStrings.LOST_EVENT_NAME);
166 assertEquals(363494L, lostEventsInRange);
167 }
168}
This page took 0.068691 seconds and 5 git commands to generate.