Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 103ac3f17781eb5b6a0bfe0707a01ffa05b86497 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation.
 * 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:
 *     IBM Corporation - Jeff Briggs, Henry Hughes, Ryan Morse
 *******************************************************************************/

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

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertNull;

import org.eclipse.linuxtools.systemtap.structures.TreeDefinitionNode;
import org.junit.Before;
import org.junit.Test;

public class TreeDefinitionNodeTest {

    @Before
    public void setUp() {
        data = new StringBuilder("Object");
        data2 = "Data";
        d = "/usr/share";
        d2 = "/usr";
        s = "String";
        s2 = "bah";

        t = new TreeDefinitionNode(data, s, d, true);
        child = new TreeDefinitionNode(data2, s2, d2, false);
        t.add(child);
    }

    @Test
    public void testTreeDefinitionNode() {
        String d1 = "One";
        String d2 = "two";
        String s1 = "one";

        TreeDefinitionNode t = new TreeDefinitionNode(d1, s1, d2, false);
        assertEquals("Create child count", 0, t.getChildCount());
        assertEquals("Create child string", s1, t.toString());
        assertEquals("Create child data", d1, t.getData());
        assertEquals("Create child definition", d2, t.getDefinition());
        assertFalse("Create child clickable", t.isClickable());
    }

    @Test
    public void testGetDefinition() {
        assertNotSame("Correct definition", d2, t.getDefinition());
        assertEquals("Correct definition2", d2, ((TreeDefinitionNode)t.getChildAt(0)).getDefinition());
    }

    @Test
    public void testSetDefinition() {
        String s1 = "/user/share/systemtap";
        t.setDefinition(s1);
        assertEquals("Replaced definition", s1, t.getDefinition());
    }

    @Test
    public void testDispose() {
        assertNotNull(t.getDefinition());
        t.dispose();
        assertNull(t.getDefinition());
    }

    private TreeDefinitionNode t;
    private TreeDefinitionNode child;
    private Object data;
    private String data2;
    private String s, s2;
    private String d, d2;
}

Back to the top