blob: 38b663a7fe245d2360502158faa054e65e2e9275 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.cas_data.impl;
import junit.framework.Assert;
import junit.framework.TestCase;
import org.apache.uima.cas_data.CasData;
import org.apache.uima.cas_data.FeatureStructure;
import org.apache.uima.test.junit_extension.JUnitExtension;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
public class CasDataToXCasTest extends TestCase {
/**
* Constructor for CasDataToXCasTest.
*
* @param arg0
*/
public CasDataToXCasTest(String arg0) {
super(arg0);
}
/*
* Test for void generateXCas(CasData)
*/
public void testGenerateXCasCasData() throws Exception {
try {
CasData casData = new CasDataImpl();
FeatureStructure testFS = new FeatureStructureImpl();
testFS.setType("Test");
testFS.setId("foo");
testFS.setIndexed(new int[] { 1 });
testFS.setFeatureValue("myFeature", new PrimitiveValueImpl("myValue"));
testFS.setFeatureValue("value", new PrimitiveValueImpl("this should show up in XML content"));
casData.addFeatureStructure(testFS);
CasDataToXCas generator = new CasDataToXCas();
TestContentHandler testContentHandler = new TestContentHandler("Test");
generator.setContentHandler(testContentHandler);
generator.generateXCas(casData);
Assert.assertTrue(testContentHandler.foundTestElement);
// also try colon and dash conversions
casData = new CasDataImpl();
testFS = new FeatureStructureImpl();
testFS.setType("Test_colon_Foo_dash_Bar_colon_What_dash_a_dash_mess");
testFS.setId("foo");
testFS.setIndexed(new int[] { 1 });
testFS.setFeatureValue("myFeature", new PrimitiveValueImpl("myValue"));
testFS.setFeatureValue("value", new PrimitiveValueImpl("this should show up in XML content"));
casData.addFeatureStructure(testFS);
testContentHandler = new TestContentHandler("Test:Foo-Bar:What-a-mess");
generator.setContentHandler(testContentHandler);
generator.generateXCas(casData);
Assert.assertTrue(testContentHandler.foundTestElement);
} catch (Exception e) {
JUnitExtension.handleException(e);
}
}
public class TestContentHandler extends DefaultHandler {
String inElement;
StringBuffer buf;
boolean foundTestElement = false;
String testElementName;
public TestContentHandler(String aTestElementName) {
testElementName = aTestElementName;
}
/*
* (non-Javadoc)
*
* @see org.xml.sax.ContentHandler#startElement(java.lang.String, java.lang.String,
* java.lang.String, org.xml.sax.Attributes)
*/
public void startElement(String arg0, String arg1, String arg2, Attributes arg3)
throws SAXException {
this.inElement = arg1;
this.buf = new StringBuffer();
if (this.testElementName.equals(arg1)) {
foundTestElement = true;
Assert.assertEquals("myValue", arg3.getValue("myFeature"));
}
}
/*
* (non-Javadoc)
*
* @see org.xml.sax.ContentHandler#characters(char[], int, int)
*/
public void characters(char[] arg0, int arg1, int arg2) throws SAXException {
buf.append(arg0, arg1, arg2);
}
/*
* (non-Javadoc)
*
* @see org.xml.sax.ContentHandler#endElement(java.lang.String, java.lang.String,
* java.lang.String)
*/
public void endElement(String arg0, String arg1, String arg2) throws SAXException {
if (this.testElementName.equals(arg1)) {
Assert.assertEquals("this should show up in XML content", buf.toString());
}
}
}
}