blob: 6ac2efa8ab64d818ac51075fa3a9d461dc0d1a80 [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.detailed;
import com.easypo.XmlCustomerBean;
import com.easypo.XmlPurchaseOrderDocumentBean;
import org.apache.xmlbeans.XmlCursor;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class TypedObjectCursor {
@Test
public void testObjectCursor() {
XmlPurchaseOrderDocumentBean.PurchaseOrder po = XmlPurchaseOrderDocumentBean.PurchaseOrder.Factory.newInstance();
XmlCursor cur = po.newCursor();
XmlCustomerBean cust = po.addNewCustomer();
cust.setAddress("123 Fake Street");
cust.setAge(23);
cust.setName("Lisa Simpson");
cur.toFirstContentToken();
assertEquals(XmlCursor.TokenType.START, cur.currentTokenType());
assertEquals(XmlCursor.TokenType.ATTR, cur.toNextToken());
assertEquals("<xml-fragment age=\"23\"/>", cur.xmlText());
assertEquals(XmlCursor.TokenType.START, cur.toNextToken());
assertEquals(XmlCursor.TokenType.TEXT, cur.toNextToken());
assertEquals("<xml-fragment>Lisa Simpson</xml-fragment>", cur.xmlText());
assertEquals(XmlCursor.TokenType.END, cur.toNextToken());
assertEquals(XmlCursor.TokenType.START, cur.toNextToken());
assertEquals(XmlCursor.TokenType.TEXT, cur.toNextToken());
assertEquals("<xml-fragment>123 Fake Street</xml-fragment>", cur.xmlText());
cur.toPrevToken();
cur.setTextValue("456".toCharArray(), 0, 3);
}
}