tmf : Add the XML Schema Definition for the pattern matching analysis
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.core.tests / common / org / eclipse / tracecompass / tmf / analysis / xml / core / tests / common / TmfXmlTestFiles.java
CommitLineData
e11e382c
FW
1/*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
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.common;
e11e382c 14
9a0aa59e
GB
15import static org.junit.Assert.fail;
16
e11e382c 17import java.io.File;
9a0aa59e
GB
18import java.io.IOException;
19
20import javax.xml.parsers.DocumentBuilder;
21import javax.xml.parsers.DocumentBuilderFactory;
22import javax.xml.parsers.ParserConfigurationException;
23
24import org.eclipse.core.runtime.IPath;
25import org.eclipse.core.runtime.Path;
26import org.eclipse.tracecompass.tmf.analysis.xml.core.tests.Activator;
27import org.w3c.dom.Document;
28import org.xml.sax.SAXException;
e11e382c
FW
29
30/**
31 * Provides some test XML files to use
32 *
33 * @author Geneviève Bastien
34 */
35public enum TmfXmlTestFiles {
36 /** A valid XML test file */
9a0aa59e 37 VALID_FILE("test_xml_files/test_valid/test_valid.xml"),
e11e382c 38 /** An invalid test file */
d2e62865
GB
39 INVALID_FILE("test_xml_files/test_invalid/test_invalid.xml"),
40 /** A valid file for state attribute tests */
900cbf89
JCK
41 ATTRIBUTE_FILE("test_xml_files/test_valid/test_attributes.xml"),
42 /** A valid file for conditions tests */
43 CONDITION_FILE("test_xml_files/test_valid/test_conditions.xml");
e11e382c
FW
44
45 private final String fPath;
46
47 private TmfXmlTestFiles(String file) {
48 fPath = file;
49 }
50
51 /**
9a0aa59e 52 * Get the absolute path of this test file
e11e382c 53 *
9a0aa59e 54 * @return The absolute path of this test file
e11e382c 55 */
9a0aa59e
GB
56 public IPath getPath() {
57 IPath absPath = Activator.getAbsolutePath(new Path(fPath));
58 if (absPath == null) {
59 fail("Cannot find file path for '" + fPath + "'");
60 }
61 return absPath;
e11e382c
FW
62 }
63
64 /**
65 * Returns the file object corresponding to the test XML file
66 *
67 * @return The file object for this test file
68 */
69 public File getFile() {
9a0aa59e
GB
70 return getPath().toFile();
71 }
72
73 /**
74 * Get the XML {@link Document} for this test xml file
75 *
76 * @return The XML {@link Document}
77 */
78 public Document getXmlDocument() {
79 /* Initialize the state provider module */
80 Document doc = null;
81 try {
82 DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
83 DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
84 doc = dBuilder.parse(getFile());
85 doc.getDocumentElement().normalize();
86 } catch (ParserConfigurationException e) {
87 fail("Xml document parse exception");
88 } catch (SAXException e) {
89 fail("Exception parsing xml file");
90 } catch (IOException e) {
91 fail("File io exception");
92 }
93 return doc;
e11e382c
FW
94 }
95
96}
This page took 0.087052 seconds and 5 git commands to generate.