Search in sources :

Example 11 with WorkbenchContext

use of org.eclipse.wst.validation.internal.operations.WorkbenchContext in project webtools.sourceediting by eclipse.

the class TestDelegatingSourceValidatorForXSL method testDelegatingSourceValidatorNPEwithNoAttributeValue.

@Test
public void testDelegatingSourceValidatorNPEwithNoAttributeValue() throws Exception {
    WorkbenchContext context = setupFile(getxslTestFilesProjectName(), "bug272760.xsl");
    TestReporter reporter = new TestReporter();
    try {
        sourceValidator.validate(context, reporter);
    } catch (ValidationException e) {
    } catch (NullPointerException e) {
        StringWriter out = new StringWriter();
        e.printStackTrace(new PrintWriter(out));
        fail(out.toString());
    }
}
Also used : ValidationException(org.eclipse.wst.validation.internal.core.ValidationException) StringWriter(java.io.StringWriter) WorkbenchContext(org.eclipse.wst.validation.internal.operations.WorkbenchContext) PrintWriter(java.io.PrintWriter) Test(org.junit.Test) AbstractXSLUITest(org.eclipse.wst.xsl.ui.tests.AbstractXSLUITest)

Example 12 with WorkbenchContext

use of org.eclipse.wst.validation.internal.operations.WorkbenchContext in project webtools.sourceediting by eclipse.

the class TestDelegatingSourceValidatorForXSL method testValidXSLT.

@Test
public void testValidXSLT() throws Exception {
    String fileName1 = "ListAllChangeRequests.xsl";
    WorkbenchContext context = setupFile(getxslTestFilesProjectName(), fileName1);
    TestReporter reporter = new TestReporter();
    sourceValidator.validate(context, reporter);
    assertFalse("Messages were reported on " + fileName1 + ".", reporter.isMessageReported());
}
Also used : WorkbenchContext(org.eclipse.wst.validation.internal.operations.WorkbenchContext) Test(org.junit.Test) AbstractXSLUITest(org.eclipse.wst.xsl.ui.tests.AbstractXSLUITest)

Example 13 with WorkbenchContext

use of org.eclipse.wst.validation.internal.operations.WorkbenchContext in project webtools.sourceediting by eclipse.

the class TestHTMLValidator method performExternalValidatorTest.

private void performExternalValidatorTest(IFile testFile, boolean errorExpected) throws IOException, CoreException {
    IStructuredModel model = null;
    try {
        assertTrue("Test file " + testFile + " does not exist", testFile.exists());
        // get the document
        model = StructuredModelManager.getModelManager().getModelForEdit(testFile);
        // set up for fValidator
        WorkbenchContext context = new WorkbenchContext();
        List fileList = new ArrayList();
        fileList.add(testFile.getFullPath().toPortableString());
        context.setValidationFileURIs(fileList);
        // validate clean file
        TestReporter reporter = new TestReporter();
        fValidator.validate(context, reporter);
        if (errorExpected) {
            assertTrue("There should be validation errors on " + testFile, reporter.isMessageReported());
        } else {
            assertFalse("There should be no validation errors on " + testFile, reporter.isMessageReported());
        }
    } finally {
        if (model != null) {
            model.releaseFromEdit();
        }
    }
}
Also used : WorkbenchContext(org.eclipse.wst.validation.internal.operations.WorkbenchContext) ArrayList(java.util.ArrayList) ArrayList(java.util.ArrayList) List(java.util.List) IStructuredModel(org.eclipse.wst.sse.core.internal.provisional.IStructuredModel)

Example 14 with WorkbenchContext

use of org.eclipse.wst.validation.internal.operations.WorkbenchContext in project webtools.sourceediting by eclipse.

the class TestDelegatingSourceValidatorForXML method testRemoveAndAddBackCommentEndTag.

/**
 * Regression test for Bug 285285
 *
 * @see org.eclipse.wst.xml.ui.internal.validation.TestDelegatingSourceValidatorForXML#testRemoveAndAddBackCommentEndTag
 * @see org.eclipse.wst.html.ui.tests.validation.TestHTMLValidator#testRemoveAndAddBackCommentEndTag
 * @see org.eclipse.jst.jsp.ui.tests.validation.JSPHTMLValidatorTest#testRemoveAndAddBackCommentEndTag
 */
public void testRemoveAndAddBackCommentEndTag() throws Exception {
    String projectName = "RemoveAndAddBackCommentEndTag";
    IProject project = ProjectUtil.createProject(projectName, XMLUITestsPlugin.getDefault().getStateLocation().append(getName()), null);
    IFile testFile = null;
    IStructuredModel model = null;
    try {
        // get test file
        ProjectUtil.copyBundleEntriesIntoWorkspace("testresources/RemoveAndAddBackCommentEndTag", projectName);
        testFile = project.getFile("Test1.xml");
        assertTrue("Test file " + testFile + " does not exist", testFile.exists());
        // get the document
        model = StructuredModelManager.getModelManager().getModelForEdit(testFile);
        IStructuredDocument document = model.getStructuredDocument();
        // set up for validator
        WorkbenchContext context = new WorkbenchContext();
        List fileList = new ArrayList();
        fileList.add(testFile.getFullPath().toPortableString());
        context.setValidationFileURIs(fileList);
        // validate clean file
        TestReporter reporter = new TestReporter();
        sourceValidator.validate(context, reporter);
        assertFalse("There should be no validation errors on " + testFile, reporter.isMessageReported());
        // need to dynamically find where the --> is because
        // its different on unix vs windows because of line endings
        String contents = document.get();
        int endCommentIndex = contents.indexOf("-->");
        // remove -->
        document.replace(endCommentIndex, 3, "");
        // validate file with error
        reporter = new TestReporter();
        sourceValidator.validate(context, reporter);
        assertTrue("There should be validation errors on " + testFile, reporter.isMessageReported());
        // replace -->
        document.replace(endCommentIndex, 0, "-->");
        // validate clean file
        reporter = new TestReporter();
        sourceValidator.validate(context, reporter);
        assertFalse("There should be no validation errors on " + testFile, reporter.isMessageReported());
    } catch (ValidationException e) {
        fail("Could not validate test file " + testFile + ": " + e.getMessage());
    } finally {
        if (model != null) {
            model.releaseFromEdit();
        }
    }
    project.delete(true, null);
}
Also used : IFile(org.eclipse.core.resources.IFile) ValidationException(org.eclipse.wst.validation.internal.core.ValidationException) WorkbenchContext(org.eclipse.wst.validation.internal.operations.WorkbenchContext) ArrayList(java.util.ArrayList) IStructuredDocument(org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocument) ArrayList(java.util.ArrayList) List(java.util.List) IStructuredModel(org.eclipse.wst.sse.core.internal.provisional.IStructuredModel) IProject(org.eclipse.core.resources.IProject)

Aggregations

WorkbenchContext (org.eclipse.wst.validation.internal.operations.WorkbenchContext)14 ArrayList (java.util.ArrayList)8 List (java.util.List)8 IFile (org.eclipse.core.resources.IFile)7 AbstractXSLUITest (org.eclipse.wst.xsl.ui.tests.AbstractXSLUITest)6 Test (org.junit.Test)6 IStructuredModel (org.eclipse.wst.sse.core.internal.provisional.IStructuredModel)5 IProject (org.eclipse.core.resources.IProject)4 IStructuredDocument (org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocument)4 ValidationException (org.eclipse.wst.validation.internal.core.ValidationException)4 Path (org.eclipse.core.runtime.Path)2 PrintWriter (java.io.PrintWriter)1 StringWriter (java.io.StringWriter)1 IProjectDescription (org.eclipse.core.resources.IProjectDescription)1 CoreException (org.eclipse.core.runtime.CoreException)1 NullProgressMonitor (org.eclipse.core.runtime.NullProgressMonitor)1 JSPContentSourceValidator (org.eclipse.jst.jsp.ui.internal.validation.JSPContentSourceValidator)1