blob: bc93662e9c09c998b500036e9acae83de65b83bf [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.schematypes.checkin;
import com.enumtest.Data;
import com.enumtest.Quantity;
import com.enumtest.SalesreportDocument;
import com.enumtest.SalesreportDocument.Salesreport.Unit;
import com.enumtest.StatusreportDocument;
import org.apache.xmlbeans.XmlBeans;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlObject;
import org.junit.Test;
import tools.util.JarUtil;
import static org.junit.Assert.assertEquals;
public class EnumTests {
@Test
public void testReport1() throws Exception {
StatusreportDocument doc = (StatusreportDocument)
XmlObject.Factory.parse(
JarUtil.getResourceFromJarasFile(
"xbean/xmlobject/enumtest.xml"));
Quantity.Enum[] contents = {
Quantity.ALL,
Quantity.ALL,
Quantity.FEW,
Quantity.ALL,
Quantity.MOST,
Quantity.NONE,
Quantity.NONE,
Quantity.NONE,
};
Data[] data = doc.getStatusreport().getStatusArray();
int t = 0;
for (int i = 0; i < data.length; i++) {
assertEquals(contents[t++], data[i].enumValue());
// System.out.println("Target: " + data[i].getTarget() + ", value: " + data[i].enumValue());
assertEquals(contents[t++], data[i].getTarget());
}
}
@Test
public void testReport2() throws Exception {
StatusreportDocument doc = StatusreportDocument.Factory.newInstance();
StatusreportDocument.Statusreport report = doc.addNewStatusreport();
Data d = report.addNewStatus();
d.set(Quantity.ALL);
d.setTarget(Quantity.ALL);
d = report.addNewStatus();
d.set(Quantity.FEW);
d.setTarget(Quantity.ALL);
d = report.addNewStatus();
d.set(Quantity.MOST);
d.setTarget(Quantity.NONE);
d = report.addNewStatus();
d.set(Quantity.NONE);
d.setTarget(Quantity.NONE);
Quantity.Enum[] contents = {
Quantity.ALL,
Quantity.ALL,
Quantity.FEW,
Quantity.ALL,
Quantity.MOST,
Quantity.NONE,
Quantity.NONE,
Quantity.NONE,
};
Data[] data = doc.getStatusreport().getStatusArray();
int t = 0;
for (int i = 0; i < data.length; i++) {
assertEquals(contents[t++], data[i].enumValue());
// System.out.println("Target: " + data[i].getTarget() + ", value: " + data[i].enumValue());
assertEquals(contents[t++], data[i].getTarget());
}
}
@Test
public void testReport3() throws Exception {
SalesreportDocument doc = SalesreportDocument.Factory.newInstance();
SalesreportDocument.Salesreport report = doc.addNewSalesreport();
report.addUnit(Unit.ONE);
report.addUnit(Unit.TWO);
report.addUnit(Unit.NINETY_NINE);
report.addUnit(Unit.ONE_HUNDRED);
Unit.Enum[] contents = {
Unit.ONE,
Unit.TWO,
Unit.NINETY_NINE,
Unit.ONE_HUNDRED,
};
Unit[] xunits = report.xgetUnitArray();
for (int i = 0; i < xunits.length; i++) {
assertEquals(contents[i], xunits[i].enumValue());
}
Unit.Enum[] units = report.getUnitArray();
for (int i = 0; i < units.length; i++) {
assertEquals(contents[i], units[i]);
}
}
@Test(expected = XmlException.class)
public void testEnumRestriction() throws Exception {
String schema =
"<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\"\n" +
" xmlns:tns=\"foo\" targetNamespace=\"foo\">\n" +
"\n" +
" <xs:simpleType name=\"parent\">\n" +
" <xs:restriction base=\"xs:string\">\n" +
" <xs:enumeration value=\"abc\"/>\n" +
" <xs:enumeration value=\"123\"/>\n" +
" </xs:restriction>\n" +
" </xs:simpleType>\n" +
"\n" +
" <xs:simpleType name=\"child\">\n" +
" <xs:restriction base=\"tns:parent\">\n" +
" <xs:enumeration value=\"abc\"/>\n" +
" <xs:enumeration value=\"123\"/>\n" +
// 'xyz' is an invalid enumeration value
" <xs:enumeration value=\"xyz\"/>\n" +
" </xs:restriction>\n" +
" </xs:simpleType>\n" +
"\n" +
"</xs:schema>\n";
XmlObject xobj = XmlObject.Factory.parse(schema);
XmlBeans.loadXsd(new XmlObject[]{xobj});
}
}