blob: 9ad52a30f9cf86e804d39fa1ba9b456d34579624 [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 scomp.substGroup.detailed;
import org.apache.xmlbeans.XmlErrorCodes;
import org.junit.Test;
import scomp.common.BaseCase;
import xbean.scomp.substGroup.oneLevel.*;
import java.math.BigInteger;
import static org.junit.Assert.assertTrue;
public class OneLevel extends BaseCase {
@Test
public void testValidSubstParse() throws Throwable {
String input =
"<items xmlns=\"http://xbean/scomp/substGroup/OneLevel\">" +
"<shirt>" +
" <number>SKU25</number>" +
" <name>Oxford Shirt</name>" +
" <size>12</size>" +
" <color>blue</color>" +
"</shirt>" +
"<product>" +
" <number>SKU45</number>" +
" <name>Accessory</name>" +
"</product>" +
"<hat>" +
" <number>SKU35</number>" +
" <name>Sombrero</name>" +
" <size>4</size>" +
"</hat>" +
"<umbrella>" +
" <number>SKU15</number>" +
" <name>Umbrella</name>" +
"</umbrella>" +
"</items>";
ItemsDocument doc = ItemsDocument.Factory.parse(input);
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
}
/**
* Test error message. 1 product too many
*/
@Test
public void testValidSubstParseInvalid() throws Throwable {
String input =
"<items xmlns=\"http://xbean/scomp/substGroup/OneLevel\">" +
"<shirt>" +
" <number>SKU25</number>" +
" <name>Oxford Shirt</name>" +
" <size>12</size>" +
" <color>blue</color>" +
"</shirt>" +
"<product>" +
" <number>SKU45</number>" +
" <name>Accessory</name>" +
"</product>" +
"<hat>" +
" <number>SKU35</number>" +
" <name>Sombrero</name>" +
" <size>4</size>" +
"</hat>" +
"<umbrella>" +
" <number>SKU15</number>" +
" <name>Umbrella</name>" +
"</umbrella>" +
"<hat>" +
" <number>SKU35</number>" +
" <name>Sombrero</name>" +
" <size>4</size>" +
"</hat>" +
"</items>";
ItemsDocument doc = ItemsDocument.Factory.parse(input);
assertTrue(!doc.validate(validateOptions));
String[] errExpected = new String[]{
XmlErrorCodes.ELEM_COMPLEX_TYPE_LOCALLY_VALID$ELEMENT_NOT_ALLOWED
};
assertTrue(compareErrorCodes(
errExpected));
}
@Test
public void testValidSubstBuild() throws Throwable {
ItemsDocument doc = ItemsDocument.Factory.newInstance();
ItemType items = doc.addNewItems();
HatType hat = HatType.Factory.newInstance();
hat.setName("Funny Hat");
hat.setNumber("SKU84");
hat.setSize(new BigInteger("10"));
/* 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("blue");
shirt.setSize(new BigInteger("10"));
ProductType genericProd = ProductType.Factory.newInstance();
genericProd.setName("Pants");
genericProd.setNumber("32");
items.setProductArray(new ProductType[]{hat, shirt, genericProd});
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
//TODO: what to do with the umbrella here???
}
}