blob: 1b75f5bec37dd590d304f90246a57df834ddf213 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2008 IBM Corporation and others.
* 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 - initial API and implementation
*******************************************************************************/
package org.eclipse.ua.tests.help.dynamic;
import java.io.InputStream;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.core.runtime.Platform;
import org.eclipse.help.internal.base.HelpEvaluationContext;
import org.eclipse.help.internal.dynamic.DocumentReader;
import org.eclipse.help.internal.dynamic.ExtensionHandler;
import org.eclipse.help.internal.dynamic.FilterHandler;
import org.eclipse.help.internal.dynamic.IncludeHandler;
import org.eclipse.help.internal.dynamic.ProcessorHandler;
import org.eclipse.help.internal.dynamic.XMLProcessor;
import org.eclipse.help.ui.internal.HelpUIPlugin;
import org.eclipse.ua.tests.plugin.UserAssistanceTestPlugin;
import org.eclipse.ua.tests.util.FileUtil;
import org.eclipse.ua.tests.util.XMLUtil;
import org.osgi.framework.Bundle;
public class XMLProcessorTest extends TestCase {
/*
* Returns an instance of this Test.
*/
public static Test suite() {
return new TestSuite(XMLProcessorTest.class);
}
@Override
protected void setUp() throws Exception {
// activate the UI plug-in for UI filtering ability
HelpUIPlugin.getDefault();
}
private void xmlProcess(String path) throws Exception {
DocumentReader reader = new DocumentReader();
ProcessorHandler[] handlers = new ProcessorHandler[] {
new IncludeHandler(reader, Platform.getNL()),
new ExtensionHandler(reader, Platform.getNL()),
new FilterHandler(HelpEvaluationContext.getContext())
};
XMLProcessor processor = new XMLProcessor(handlers);
Bundle bundle = UserAssistanceTestPlugin.getDefault().getBundle();
InputStream in = bundle.getEntry(FileUtil.getResultFile(path)).openStream();
InputStream in2 = processor.process(bundle.getEntry(path).openStream(), '/' + bundle.getSymbolicName() + '/' + path, "UTF-8");
XMLUtil.assertXMLEquals("XML content was not processed correctly: " + path, in, in2);
}
public void testExtension() throws Exception {
xmlProcess("data/help/dynamic/extension.xml");
}
public void testFilter() throws Exception {
xmlProcess("data/help/dynamic/filter.xml");
}
public void testInclude() throws Exception {
xmlProcess("data/help/dynamic/include.xml");
}
public void testIndex() throws Exception {
xmlProcess("data/help/dynamic/index.xml");
}
public void testSimple() throws Exception {
xmlProcess("data/help/dynamic/simple.xml");
}
public void testToc() throws Exception {
xmlProcess("data/help/dynamic/toc.xml");
}
public void testXhtml() throws Exception {
xmlProcess("data/help/dynamic/xhtml.xml");
}
public void testEntities() throws Exception {
xmlProcess("data/help/dynamic/entities.xml");
}
}