blob: 702d168da08ffa9370a485207e38c89c1e0e0e2e [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.elements.detailed;
import org.apache.xmlbeans.XmlDate;
import org.apache.xmlbeans.XmlOptions;
import org.apache.xmlbeans.XmlString;
import org.junit.jupiter.api.Test;
import xbean.scomp.element.any.AnyEltDocument;
import xbean.scomp.element.any.AnySimpleDocument;
import xbean.scomp.substGroup.wide.BusinessShirtType;
import java.math.BigInteger;
import java.util.Calendar;
import java.util.GregorianCalendar;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static scomp.common.BaseCase.createOptions;
public class AnyTest {
@Test
void testAny() throws Throwable {
AnyEltDocument doc = AnyEltDocument.Factory.newInstance();
BusinessShirtType bst = BusinessShirtType.Factory.newInstance();
bst.setName("shirt");
bst.setNumber("SkU034");
bst.setColor("white");
bst.setSize(new BigInteger("10"));
doc.setAnyElt(bst);
XmlOptions validateOptions = createOptions();
assertTrue(doc.validate(validateOptions));
validateOptions.getErrorListener().clear();
doc = AnyEltDocument.Factory.newInstance();
XmlString val = XmlString.Factory.newInstance();
val.setStringValue("foobar");
doc.setAnyElt(val);
assertTrue(doc.validate(validateOptions));
}
@Test
void testAnySimple() throws Throwable {
AnySimpleDocument doc = AnySimpleDocument.Factory.newInstance();
XmlString str = XmlString.Factory.newInstance();
str.setStringValue("foobar");
doc.setAnySimple(str);
XmlOptions validateOptions = createOptions();
assertTrue(doc.validate(validateOptions));
XmlDate date = XmlDate.Factory.newInstance();
date.setCalendarValue(new GregorianCalendar(2004, Calendar.SEPTEMBER, 12));
doc.setAnySimple(date);
assertTrue(doc.validate(validateOptions));
}
}