Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 29e45f0f1776d4f0a8c2d6d43ba5e65253faa5f2 (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
/*******************************************************************************
 * Copyright (c) 2006, 2018 IBM Corporation and others.
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - Jeff Briggs, Henry Hughes, Ryan Morse
 *******************************************************************************/

package org.eclipse.linuxtools.systemtap.graphing.core.tests.structures;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;

import org.eclipse.linuxtools.systemtap.graphing.core.datasets.row.RowDataSet;
import org.eclipse.linuxtools.systemtap.graphing.core.datasets.row.RowParser;
import org.eclipse.linuxtools.systemtap.graphing.core.structures.ChartStreamDaemon;
import org.junit.Before;
import org.junit.Test;

public class ChartStreamDaemonTest {

    @Before
    public void setUp() {
        csd = new ChartStreamDaemon(null, null);
        assertNotNull(csd);

        csd1 = new ChartStreamDaemon(new RowDataSet(new String[] {"a"}), new RowParser(new String[] {"\\w", "\\s"}));
        assertNotNull(csd1);
    }
    @Test
    public void testHandleEvent() {
        csd.handleDataEvent("a a a");
        csd1.handleDataEvent("a a a");
    }
    @Test
    public void testIsDisposed() {
        assertFalse(csd1.isDisposed());
    }
    @Test
    public void testDispose() {
        assertFalse(csd1.isDisposed());
        csd1.dispose();
        assertTrue(csd1.isDisposed());
    }

    private ChartStreamDaemon csd, csd1;
}

Back to the top