ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / trace / CustomXmlTraceInvalidTest.java
1 /*******************************************************************************
2 * Copyright (c) 2013 Ericsson
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 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.tests.trace;
14
15 import static org.junit.Assert.fail;
16
17 import java.io.File;
18 import java.util.ArrayList;
19 import java.util.Collection;
20
21 import org.eclipse.core.runtime.IStatus;
22 import org.junit.Test;
23 import org.junit.runner.RunWith;
24 import org.junit.runners.Parameterized;
25 import org.junit.runners.Parameterized.Parameters;
26
27 /**
28 * Invalid Xml files, random errors
29 *
30 * @author Matthew Khouzam
31 *
32 */
33 @RunWith(Parameterized.class)
34 public class CustomXmlTraceInvalidTest extends CustomXmlTraceTest{
35
36 private final static String pathname = "tracesets/xml/invalid";
37
38 /**
39 * This should create the parameters to launch the project
40 *
41 * @return the path of the parameters
42 */
43 @Parameters(name = "{index}: path {0}")
44 public static Collection<Object[]> getFiles() {
45 File[] invalidFiles = (new File(pathname)).listFiles();
46 Collection<Object[]> params = new ArrayList<>();
47 for (File f : invalidFiles) {
48 Object[] arr = new Object[] { f.getAbsolutePath() };
49 params.add(arr);
50 }
51 return params;
52 }
53
54 /**
55 * ctor
56 *
57 * @param filePath
58 * the path
59 */
60 public CustomXmlTraceInvalidTest(String filePath) {
61 setPath(filePath);
62 }
63
64 /**
65 * Test all the invalid xml files
66 */
67 @Test
68 public void testInvalid() {
69 IStatus invalid = getTrace().validate(null, getPath());
70 if (IStatus.ERROR != invalid.getSeverity()) {
71 fail(getPath());
72 }
73 }
74
75 }
This page took 0.033599 seconds and 5 git commands to generate.