blob: 55f4f1c51b0da23230faee89d5aa7916eec1e86d [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.checkin;
import junit.framework.*;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.XmlOptions;
import javax.xml.namespace.QName;
import xmlcursor.common.*;
import test.xbean.xmlcursor.purchaseOrder.PurchaseOrderDocument;
import tools.util.JarUtil;
/**
*
*
*/
public class ValidateTest extends BasicCursorTestCase {
public ValidateTest(String sName) {
super(sName);
}
public static Test suite() {
return new TestSuite(ValidateTest.class);
}
public void testClassPath() throws Exception {
String sClassPath = System.getProperty("java.class.path");
int i = sClassPath.indexOf(Common.CARLOCATIONMESSAGE_JAR);
assertTrue(i >= 0);
i = sClassPath.indexOf(Common.XMLCURSOR_JAR);
assertTrue(i >= 0);
}
public void testValidateTrue() throws Exception {
//m_xo = XmlObject.Factory.parse(Common.XML_PURCHASEORDER);
m_xo = XmlObject.Factory.parse(
JarUtil.getResourceFromJar("xbean/xmlcursor/po.xml"));
assertEquals(true, m_xo.validate());
}
public void testValidateTrueWithOptionDiscardDocElement() throws Exception {
XmlOptions map = new XmlOptions();
map.put(XmlOptions.LOAD_REPLACE_DOCUMENT_ELEMENT, null);
m_xo = XmlObject.Factory.parse(
JarUtil.getResourceFromJar(Common.TRANXML_FILE_XMLCURSOR_PO)
, map);
assertEquals(false, m_xo.validate(map));
}
public void testValidateFalseFixedAttr() throws Exception {
m_xo = XmlObject.Factory.parse(
JarUtil.getResourceFromJar("xbean/xmlcursor/po.xml"));
String ns="declare namespace po=\"http://xbean.test/xmlcursor/PurchaseOrder\";";
String exp_ns="xmlns:po=\"http://xbean.test/xmlcursor/PurchaseOrder\"";
m_xc = m_xo.newCursor();
m_xc.selectPath(ns+" $this//po:shipTo");
QName name = new QName("country");
m_xc.setAttributeText(name, "UK");
XmlObject xo = m_xc.getObject();
assertEquals("UK", m_xc.getAttributeText(name));
PurchaseOrderDocument pod = (PurchaseOrderDocument) m_xo;
assertEquals(false, xo.validate());
assertEquals(false, pod.validate());
assertEquals(false, m_xo.validate());
assertTrue(true);
}
}