Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 27693 invoked from network); 10 Dec 2008 00:42:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Dec 2008 00:42:18 -0000 Received: (qmail 79933 invoked by uid 500); 10 Dec 2008 00:42:31 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 79908 invoked by uid 500); 10 Dec 2008 00:42:31 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 79899 invoked by uid 99); 10 Dec 2008 00:42:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Dec 2008 16:42:30 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Dec 2008 00:42:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F38AE2388882; Tue, 9 Dec 2008 16:41:54 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r724940 - /cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/standalone/StandaloneWriteTest.java Date: Wed, 10 Dec 2008 00:41:54 -0000 To: commits@cxf.apache.org From: bimargulies@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081210004154.F38AE2388882@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bimargulies Date: Tue Dec 9 16:41:54 2008 New Revision: 724940 URL: http://svn.apache.org/viewvc?rev=724940&view=rev Log: Add a unit test for writing with Aegis standalone. Added: cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/standalone/StandaloneWriteTest.java (with props) Added: cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/standalone/StandaloneWriteTest.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/standalone/StandaloneWriteTest.java?rev=724940&view=auto ============================================================================== --- cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/standalone/StandaloneWriteTest.java (added) +++ cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/standalone/StandaloneWriteTest.java Tue Dec 9 16:41:54 2008 @@ -0,0 +1,114 @@ +/** + * 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.cxf.aegis.standalone; + +import java.io.StringReader; +import java.io.StringWriter; +import java.util.HashSet; +import java.util.Set; + +import javax.xml.XMLConstants; +import javax.xml.namespace.QName; +import javax.xml.stream.XMLInputFactory; +import javax.xml.stream.XMLOutputFactory; +import javax.xml.stream.XMLStreamReader; +import javax.xml.stream.XMLStreamWriter; + +import org.apache.cxf.aegis.AegisContext; +import org.apache.cxf.aegis.AegisWriter; +import org.apache.cxf.aegis.services.SimpleBean; +import org.apache.cxf.aegis.type.Type; +import org.apache.cxf.aegis.type.basic.StringType; +import org.apache.cxf.test.TestUtilities; + +import org.junit.Before; +import org.junit.Test; +import static org.junit.Assert.*; + +/** + * + */ +public class StandaloneWriteTest { + private AegisContext context; + private TestUtilities testUtilities; + private XMLOutputFactory xmlOutputFactory; + private XMLInputFactory xmlInputFactory; + + @Before + public void before() { + testUtilities = new TestUtilities(getClass()); + testUtilities.addNamespace("feline", "urn:meow"); + xmlOutputFactory = XMLOutputFactory.newInstance(); + xmlInputFactory = XMLInputFactory.newInstance(); + } + + @Test + public void testTypeLookup() throws Exception { + context = new AegisContext(); + context.initialize(); + Type st = context.getTypeMapping().getType(new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, + "string")); + assertNotNull(st); + assertEquals(st.getClass(), StringType.class); + } + + @Test + public void testBasicTypeWrite() throws Exception { + context = new AegisContext(); + context.initialize(); + AegisWriter writer = context.createXMLStreamWriter(); + StringWriter stringWriter = new StringWriter(); + XMLStreamWriter xmlWriter = xmlOutputFactory.createXMLStreamWriter(stringWriter); + writer.write("ball-of-yarn", + new QName("urn:meow", "cat-toy"), + false, xmlWriter, new StringType()); + xmlWriter.close(); + String xml = stringWriter.toString(); + XMLStreamReader reader = xmlInputFactory.createXMLStreamReader(new StringReader(xml)); + reader.nextTag(); + assertEquals("urn:meow", reader.getNamespaceURI()); + assertEquals("cat-toy", reader.getLocalName()); + reader.next(); + String text = reader.getText(); + assertEquals("ball-of-yarn", text); + } + + @Test + public void testBean() throws Exception { + context = new AegisContext(); + Set> rootClasses = new HashSet>(); + rootClasses.add(SimpleBean.class); + context.setRootClasses(rootClasses); + context.initialize(); + SimpleBean sb = new SimpleBean(); + sb.setCharacter('\u4000'); + sb.setHowdy("doody"); + Type sbType = context.getTypeMapping().getType(sb.getClass()); + AegisWriter writer = context.createXMLStreamWriter(); + StringWriter stringWriter = new StringWriter(); + XMLStreamWriter xmlWriter = xmlOutputFactory.createXMLStreamWriter(stringWriter); + writer.write(sb, new QName("urn:meow", "catnip"), + false, xmlWriter, sbType); + xmlWriter.close(); + String xml = stringWriter.toString(); + assertTrue(xml.contains("doody")); + + } +} Propchange: cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/standalone/StandaloneWriteTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/trunk/rt/databinding/aegis/src/test/java/org/apache/cxf/aegis/standalone/StandaloneWriteTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date