blob: 496b608d56c6f5814b6a3249f9636244dd16dfac [file]
/* 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 scomp.substGroup.detailed;
import org.apache.xmlbeans.XmlErrorCodes;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlOptions;
import org.junit.jupiter.api.Test;
import xbean.scomp.substGroup.deep.*;
import java.math.BigInteger;
import static org.junit.jupiter.api.Assertions.*;
import static scomp.common.BaseCase.createOptions;
import static scomp.common.BaseCase.getErrorCodes;
/**
*
*/
public class Deep {
/**
* QName for casualBShirt is incorrect:
* err. message seems bad to me
* TODO: seems like the first err is enuf
*/
@Test
void testErrorMessage() throws XmlException {
String input =
"<pre:items xmlns:pre=\"http://xbean/scomp/substGroup/Deep\">" +
"<casualBShirt>" +
" <number>SKU25</number>" +
" <name>Oxford Shirt</name>" +
" <size>12</size>" +
" <color>blue</color>" +
"<pokadotColor>yellow</pokadotColor>" +
"</casualBShirt>" +
"</pre:items>";
ItemsDocument doc = ItemsDocument.Factory.parse(input);
XmlOptions validateOptions = createOptions();
assertFalse(doc.validate(validateOptions));
String[] errExpected = {
XmlErrorCodes.ELEM_COMPLEX_TYPE_LOCALLY_VALID$EXPECTED_DIFFERENT_ELEMENT,
XmlErrorCodes.ELEM_COMPLEX_TYPE_LOCALLY_VALID$MISSING_ELEMENT
};
assertArrayEquals(errExpected, getErrorCodes(validateOptions));
}
@Test
void testValidSubstParse() throws Throwable {
String input =
"<pre:items xmlns:pre=\"http://xbean/scomp/substGroup/Deep\">" +
"<pre:casualBShirt>" +
" <number>SKU25</number>" +
" <name>Oxford Shirt</name>" +
" <size>12</size>" +
" <color>blue</color>" +
"<pokadotColor>yellow</pokadotColor>" +
"</pre:casualBShirt>" +
"<pre:product>" +
" <number>SKU45</number>" +
" <name>Accessory</name>" +
"</pre:product>" +
"<pre:umbrella>" +
" <number>SKU15</number>" +
" <name>Umbrella</name>" +
"</pre:umbrella>" +
"</pre:items>";
ItemsDocument doc = ItemsDocument.Factory.parse(input);
assertTrue(doc.validate(createOptions()));
}
/**
* Test error message. 1 product too many
*/
@Test
void testValidSubstParseInvalid() throws Throwable {
String input =
"<root:items xmlns:root=\"http://xbean/scomp/substGroup/Deep\">" +
"<root:shirt>" +
" <number>SKU25</number>" +
" <name>Oxford Shirt</name>" +
" <size>12</size>" +
" <color>blue</color>" +
"</root:shirt>" +
"<root:product>" +
" <number>SKU45</number>" +
" <name>Accessory</name>" +
"</root:product>" +
"<root:umbrella>" +
" <number>SKU15</number>" +
" <name>Umbrella</name>" +
"</root:umbrella>" +
"<root:casualBShirt>" +
" <number>SKU25</number>" +
" <name>Oxford Shirt</name>" +
" <size>12</size>" +
" <color>blue</color>" +
"<pokadotColor>yellow</pokadotColor>" +
"</root:casualBShirt>" +
"</root:items>";
ItemsDocument doc = ItemsDocument.Factory.parse(input);
XmlOptions validateOptions = createOptions();
assertFalse(doc.validate(validateOptions));
String[] errExpected = {XmlErrorCodes.ELEM_COMPLEX_TYPE_LOCALLY_VALID$ELEMENT_NOT_ALLOWED};
assertArrayEquals(errExpected, getErrorCodes(validateOptions));
}
@Test
void testValidSubstBuild() throws Throwable {
ItemsDocument doc = ItemsDocument.Factory.newInstance();
ItemType items = doc.addNewItems();
BusinessCasualShirtType bShirt = BusinessCasualShirtType.Factory.newInstance();
bShirt.setName("Funny Shirt");
bShirt.setNumber("SKU84");
bShirt.setSize(new BigInteger("10"));
bShirt.setPokadotColor("yellow");
bShirt.setColor("blue");
// This doesn't work
// ProductType hat = elt.addNewProduct();
// ((HatType)hat).setNumber(3);
// ShirtType shirt = (ShirtType) elt.addNewProduct();
ShirtType shirt = ShirtType.Factory.newInstance();
shirt.setName("Funny Shirt");
shirt.setNumber("SKU54");
shirt.setColor("green");
shirt.setSize(new BigInteger("10"));
ProductType genericProd = ProductType.Factory.newInstance();
genericProd.setName("Pants");
genericProd.setNumber("32");
items.setProductArray(new ProductType[]{bShirt, shirt, genericProd});
assertTrue(doc.validate(createOptions()));
}
@Test
void testInsertAndDeleteMany() throws Throwable {
final int size = 100;
ItemsDocument doc = ItemsDocument.Factory.newInstance();
ItemType items = doc.addNewItems();
ShirtType[] shirts = new ShirtType[size];
for (int i = 0; i < size; i++) {
ShirtType shirt = ShirtType.Factory.newInstance();
shirt.setName("Funny Shirt " + i);
shirt.setNumber("SKU" + i);
shirt.setColor("green");
shirt.setSize(BigInteger.TEN);
shirts[i] = shirt;
}
items.setProductArray(shirts);
assertEquals(size, items.getProductArray().length);
items.setProductArray(new ProductType[0]);
assertEquals(0, items.getProductArray().length);
}
}