blob: 1ca3971655b34b9efa2eabb8c0574162de227bb1 [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.derivation.restriction.detailed;
import org.apache.xmlbeans.XmlErrorCodes;
import org.apache.xmlbeans.XmlOptions;
import org.apache.xmlbeans.XmlString;
import org.junit.jupiter.api.Test;
import xbean.scomp.derivation.attributeRestriction.AttrEltDocument;
import xbean.scomp.derivation.attributeRestriction.RestrictedAttrT;
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 AttributeRestriction {
/**
* A should be positive
* B should be there by default
*/
@Test
void testAttributeABC() throws Throwable {
AttrEltDocument doc = AttrEltDocument.Factory.newInstance();
RestrictedAttrT elt = doc.addNewAttrElt();
elt.setA(new BigInteger("-3"));
assertFalse(doc.validate(createOptions()));
String[] errExpected = {
"cvc-attribute",
XmlErrorCodes.ELEM_COMPLEX_TYPE_LOCALLY_VALID$MISSING_REQUIRED_ATTRIBUTE
};
// assertTrue(compareErrorCodes(errExpected));
assertEquals("b", elt.getB());
XmlString expected = XmlString.Factory.newInstance();
expected.setStringValue("c2");
assertTrue(expected.valueEquals(elt.xgetC()));
}
@Test
void testAttributeDEF() throws Throwable {
AttrEltDocument doc = AttrEltDocument.Factory.newInstance();
RestrictedAttrT elt = doc.addNewAttrElt();
XmlString expected = XmlString.Factory.newInstance();
expected.setStringValue("a");
elt.xsetD(expected);
assertEquals("a", elt.getD());
XmlOptions validateOptions = createOptions();
assertFalse(doc.validate(validateOptions));
// showErrors();
//D invalid, F missing
String[] errExpected = {
XmlErrorCodes.ATTR_LOCALLY_VALID$FIXED,
XmlErrorCodes.ELEM_COMPLEX_TYPE_LOCALLY_VALID$MISSING_REQUIRED_ATTRIBUTE
};
assertArrayEquals(errExpected, getErrorCodes(validateOptions));
elt.setD("d");
elt.setE("e");
elt.setF("foobar");
assertTrue(doc.validate(validateOptions));
}
/**
* G is prohibited, X can appear even though not explicit in type
*/
@Test
void testAttributeGX() throws Throwable {
AttrEltDocument doc = AttrEltDocument.Factory.newInstance();
RestrictedAttrT elt = doc.addNewAttrElt();
elt.setG("foobar");
XmlOptions validateOptions = createOptions();
assertFalse(doc.validate(validateOptions));
//g prohibited, f missing
String[] errExpected = {
XmlErrorCodes.ELEM_COMPLEX_TYPE_LOCALLY_VALID$NO_WILDCARD,
XmlErrorCodes.ELEM_COMPLEX_TYPE_LOCALLY_VALID$MISSING_REQUIRED_ATTRIBUTE
};
assertArrayEquals(errExpected, getErrorCodes(validateOptions));
elt.setX("myval");
elt.unsetG();
elt.setF("foobar");
assertTrue(doc.validate(validateOptions));
}
}