Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.analysis.xml.core.tests / src / org / eclipse / tracecompass / tmf / analysis / xml / core / tests / stateprovider / StateProviderModuleTest.java
CommitLineData
8945f67f 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 École Polytechnique de Montréal
8945f67f
GB
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.analysis.xml.core.tests.stateprovider;
8945f67f
GB
14
15import static org.junit.Assert.assertEquals;
16import static org.junit.Assert.assertNotNull;
17import static org.junit.Assert.assertTrue;
18import static org.junit.Assert.fail;
19import static org.junit.Assume.assumeTrue;
20
8945f67f 21import org.eclipse.core.runtime.NullProgressMonitor;
2bdf0193
AM
22import org.eclipse.tracecompass.tmf.analysis.xml.core.stateprovider.TmfXmlStrings;
23import org.eclipse.tracecompass.tmf.analysis.xml.core.stateprovider.XmlStateSystemModule;
24import org.eclipse.tracecompass.tmf.analysis.xml.core.tests.common.TmfXmlTestFiles;
25import org.eclipse.tracecompass.tmf.core.exceptions.TmfAnalysisException;
2bdf0193 26import org.eclipse.tracecompass.tmf.ctf.core.tests.shared.CtfTmfTestTrace;
9722e5d7 27import org.eclipse.tracecompass.tmf.ctf.core.trace.CtfTmfTrace;
8945f67f
GB
28import org.junit.Test;
29import org.w3c.dom.Document;
30import org.w3c.dom.Element;
31import org.w3c.dom.NodeList;
8945f67f
GB
32
33/**
34 * Test suite for the XmlStateSystemModule Test. It tests the reading of the
35 * file, the header and the module's proper functioning as a module, but not the
36 * state system building, which is covered by another test suite.
37 *
38 * @author Geneviève Bastien
39 */
40public class StateProviderModuleTest {
41
f47f1bbe 42 private static String ANALYSIS_ID = "kernel.linux.sp";
8945f67f
GB
43 private static String ANALYSIS_NAME = "Xml kernel State System";
44
45 private XmlStateSystemModule fModule;
46
8945f67f
GB
47 /**
48 * Test the module construction
49 */
50 @Test
51 public void testModuleConstruction() {
52
9a0aa59e 53 Document doc = TmfXmlTestFiles.VALID_FILE.getXmlDocument();
8945f67f
GB
54 assertNotNull(doc);
55
56 /* get State Providers modules */
57 NodeList stateproviderNodes = doc.getElementsByTagName(TmfXmlStrings.STATE_PROVIDER);
58 assertTrue(stateproviderNodes.getLength() > 0);
59
60 Element node = (Element) stateproviderNodes.item(0);
61 fModule = new XmlStateSystemModule();
f47f1bbe 62 String moduleId = node.getAttribute(TmfXmlStrings.ID);
ba27dd38 63 assertNotNull(moduleId);
8945f67f
GB
64 fModule.setId(moduleId);
65 assertEquals(ANALYSIS_ID, fModule.getId());
66
9a0aa59e 67 fModule.setXmlFile(TmfXmlTestFiles.VALID_FILE.getPath());
8945f67f
GB
68
69 assertEquals(ANALYSIS_NAME, fModule.getName());
70 }
71
72 /**
73 * Test the module executes correctly
74 */
75 @Test
76 public void testModuleExecution() {
77 assumeTrue(CtfTmfTestTrace.KERNEL.exists());
78
9a0aa59e 79 Document doc = TmfXmlTestFiles.VALID_FILE.getXmlDocument();
8945f67f
GB
80 assertNotNull(doc);
81
82 /* get State Providers modules */
83 NodeList stateproviderNodes = doc.getElementsByTagName(TmfXmlStrings.STATE_PROVIDER);
84
85 Element node = (Element) stateproviderNodes.item(0);
86 fModule = new XmlStateSystemModule();
f47f1bbe 87 String moduleId = node.getAttribute(TmfXmlStrings.ID);
ba27dd38 88 assertNotNull(moduleId);
8945f67f
GB
89 fModule.setId(moduleId);
90
9a0aa59e 91 fModule.setXmlFile(TmfXmlTestFiles.VALID_FILE.getPath());
8945f67f 92
7b3eb8c0 93 try (CtfTmfTrace trace = CtfTmfTestTrace.KERNEL.getTrace();) {
8945f67f
GB
94 fModule.setTrace(trace);
95 fModule.schedule();
7b3eb8c0 96
8945f67f
GB
97 assertTrue(fModule.waitForCompletion(new NullProgressMonitor()));
98 } catch (TmfAnalysisException e) {
99 fail("Cannot set trace " + e.getMessage());
8945f67f
GB
100 }
101
102 }
103}
This page took 0.045564 seconds and 5 git commands to generate.