Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c2b65926e15495c0980e23d35426d629ac2c07c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*******************************************************************************
 * Copyright (c) 2012 Ericsson
 * Copyright (c) 2010, 2011 École Polytechnique de Montréal
 * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
 * 
 * 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
 * 
 *******************************************************************************/

package org.eclipse.linuxtools.lttng2.kernel.core.tests.stateprovider;

import static org.junit.Assert.assertEquals;

import org.eclipse.linuxtools.internal.lttng2.kernel.core.stateprovider.CTFKernelStateInput;
import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
import org.eclipse.linuxtools.tmf.core.statesystem.StateSystem;
import org.eclipse.linuxtools.tmf.core.statesystem.helpers.IStateChangeInput;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

/**
 * Tests for the LTTng 2.0 kernel state provider
 * 
 * @author alexmont
 *
 */
public class CTFKernelStateInputTest {

    static IStateChangeInput input;

    @BeforeClass
    public static void initialize() throws TmfTraceException {
        input = new CTFKernelStateInput(CTFTestFiles.getTestTrace());

    }

    @AfterClass
    public static void cleanup() {
        //
    }

    @Test
    public void testOpening() {
        long testStartTime;
        testStartTime = input.getStartTime();
        assertEquals(testStartTime, CTFTestFiles.startTime);
    }

    @Test
    public void testRunning() {
        StateSystem ss = new StateSystem();
        input.assignTargetStateSystem(ss);
        input.getStateSystem(); /* Let's pad that coverage... */
        input.run();
    }

}

Back to the top