blob: 583fdf75acbf98128f61e5ce9315c7dd9d49bd4d [file] [log] [blame]
/* Copyright 2004 The Apache Software Foundation
*
* Licensed 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 xmlobject.xmlloader.detailed;
import junit.framework.TestCase;
import org.apache.xmlbeans.XmlOptions;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlCursor;
import org.openuri.bea.samples.workshop.CreditCardDataDocument;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamException;
import java.io.ByteArrayInputStream;
/**
* Date: Oct 29, 2004
* Time: 11:43:06 AM
*
* @owner ykadiysk
*/
public class XmlStreamBeanReader extends TestCase{
String creditCardXmlwPrefix =
" <cc:credit-card-data xmlns:cc=\"http://openuri.org/bea/samples/workshop\">\n" +
" <cc:customer id=\"1\">\n" +
" <cc:card name=\"MasterCard\" number=\"15385\">\n" +
" <cc:available-credit>0</cc:available-credit>\n" +
" <cc:credit-used>0</cc:credit-used>\n" +
" </cc:card>\n" +
" <cc:card name=\"Visa\" number=\"12346\">\n" +
" <cc:available-credit>0</cc:available-credit>\n" +
" <cc:credit-used>0</cc:credit-used>\n" +
" </cc:card>\n" +
" </cc:customer>\n" +
" <cc:customer id=\"2\">\n" +
" <cc:card name=\"MasterCard\" number=\"String\">\n" +
" <cc:available-credit>0</cc:available-credit>\n" +
" <cc:credit-used>0</cc:credit-used>\n" +
" </cc:card>\n" +
" <cc:card name=\"MasterCard\" number=\"String\">\n" +
" <cc:available-credit>0</cc:available-credit>\n" +
" <cc:credit-used>0</cc:credit-used>\n" +
" </cc:card>\n" +
" </cc:customer>\n" +
" </cc:credit-card-data>";
public void testXMLStreamReaderLoader () throws XMLStreamException, XmlException {
XMLStreamReader reader = XMLInputFactory.newInstance().createXMLStreamReader(new ByteArrayInputStream(creditCardXmlwPrefix.getBytes()));
CreditCardDataDocument ccdoc = (CreditCardDataDocument) XmlObject.Factory.parse(reader, new XmlOptions().setDocumentType(CreditCardDataDocument.type));
assertEquals(1,ccdoc.getCreditCardData().getCustomerArray(0).getId());
}
// test for IllegalStateException thrown on using XmlStreamReader
public void testXmlStreamReaderException() {
XmlObject xo = XmlObject.Factory.newInstance();
XmlCursor xc = xo.newCursor();
xc.toNextToken();
xc.insertElementWithText("int", "http://openuri.org/testNumerals", "5");
xc.insertElementWithText("float", "http://openuri.org/testNumerals", "7.654321");
try {
XMLStreamReader xsr = xo.newXMLStreamReader();
while(xsr.hasNext())
{
xsr.next();
}
}
catch (XMLStreamException xse)
{
xse.printStackTrace();
fail("XMLStreamException thrown with XMLStreamReader usage");
}
catch (IllegalStateException ise)
{
ise.printStackTrace();
fail("IllegalStateException thrown with XMLStreamReader usage");
}
}
}