blob: a1a1a7fddbe3a00bfed61530dbd1e835bed047b4 [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.derivation.restriction.facets.detailed;
import org.apache.xmlbeans.XmlErrorCodes;
import org.junit.Test;
import scomp.common.BaseCase;
import xbean.scomp.derivation.facets.facetRestriction.*;
import java.math.BigDecimal;
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.TimeZone;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
public class FacetRestrictionTest extends BaseCase {
@Test
public void testMinMaxInclusiveElt() throws Throwable {
MinMaxInclusiveEltDocument doc =
MinMaxInclusiveEltDocument.Factory.newInstance();
doc.setMinMaxInclusiveElt(3);
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
String[] errExpected = new String[]{
XmlErrorCodes.DATATYPE_MIN_INCLUSIVE_VALID};
doc.setMinMaxInclusiveElt(2);
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
clearErrors();
errExpected = new String[]{
XmlErrorCodes.DATATYPE_MAX_INCLUSIVE_VALID};
doc.setMinMaxInclusiveElt(10);
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
}
@Test
public void testMinMaxInclusiveDateElt() throws Throwable {
MinMaxInclusiveDateEltDocument doc =
MinMaxInclusiveDateEltDocument.Factory.newInstance();
TimeZone tz = TimeZone.getDefault();
Calendar c = new GregorianCalendar(tz);
c.set(2003, 11, 22);
doc.setMinMaxInclusiveDateElt(c);
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
c = new GregorianCalendar(2003, 11, 24);
doc.setMinMaxInclusiveDateElt(c);
String[] errExpected = new String[]{
XmlErrorCodes.DATATYPE_MAX_INCLUSIVE_VALID};
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
}
@Test
public void testMinMaxExclusiveElt() throws Throwable {
MinMaxExclusiveEltDocument doc =
MinMaxExclusiveEltDocument.Factory.newInstance();
String[] errExpected = new String[]{
XmlErrorCodes.DATATYPE_MIN_EXCLUSIVE_VALID};
doc.setMinMaxExclusiveElt(3);
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
clearErrors();
doc.setMinMaxExclusiveElt(4);
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
doc.setMinMaxExclusiveElt(8);
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
}
@Test
public void testMinMaxExclusiveDateElt() throws Throwable {
MinMaxExclusiveDateEltDocument doc = MinMaxExclusiveDateEltDocument.Factory.newInstance();
Calendar c = new GregorianCalendar(2003, 11, 24);
doc.setMinMaxExclusiveDateElt(c);
String[] errExpected = new String[]{
XmlErrorCodes.DATATYPE_MAX_EXCLUSIVE_VALID};
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
clearErrors();
c = new GregorianCalendar(2003, 11, 23);
doc.setMinMaxExclusiveDateElt(c);
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
}
@Test
public void testMinMaxLengthElt() throws Throwable {
MinMaxLengthEltDocument doc = MinMaxLengthEltDocument.Factory.newInstance();
String[] errExpected = new String[]{
XmlErrorCodes.DATATYPE_MAX_LENGTH_VALID$STRING};
doc.setMinMaxLengthElt("fooba");
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
doc.setMinMaxLengthElt("fo");
errExpected = new String[]{
XmlErrorCodes.DATATYPE_MIN_LENGTH_VALID$STRING};
clearErrors();
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
doc.setMinMaxLengthElt("foo");
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
doc.setMinMaxLengthElt("foob");
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
}
@Test
public void testDigitsElt() throws Throwable {
DigitsEltDocument doc = DigitsEltDocument.Factory.newInstance();
String[] errExpected = new String[]{
XmlErrorCodes.DATATYPE_TOTAL_DIGITS_VALID};
doc.setDigitsElt(new BigDecimal("122.2"));
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
doc.setDigitsElt(new BigDecimal("12.3"));
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
clearErrors();
errExpected = new String[]{
XmlErrorCodes.DATATYPE_FRACTION_DIGITS_VALID};
doc.setDigitsElt(new BigDecimal("2.45"));
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
}
@Test
public void testWSElt() throws Throwable {
// whiteSpace="replace" case
WSReplaceEltDocument doc = WSReplaceEltDocument.Factory.parse("<WSReplaceElt " +
"xmlns=\"http://xbean/scomp/derivation/facets/FacetRestriction\">" +
" This is a test.\nThe resulting string should convert tabs \t, line feeds \n and carriage returns into a single space \n" +
"</WSReplaceElt>");
// whiteSpace="collapse " case
WSCollapseEltDocument doc2 = WSCollapseEltDocument.Factory.parse("<WSCollapseElt " +
"xmlns=\"http://xbean/scomp/derivation/facets/FacetRestriction\">" +
" This is a test.\nThe resulting string should convert tabs \t, line feeds \n and carriage returns into a single space \n" +
"</WSCollapseElt>");
try {
assertTrue(doc.validate(validateOptions));
assertTrue(doc2.validate(validateOptions));
}
catch (Throwable t) {
showErrors();
throw t;
}
String replaceExpected = " This is a test. The resulting string should convert tabs , line feeds and carriage returns into a single space ";
assertEquals(replaceExpected, doc.getWSReplaceElt());
String collapseExpected = "This is a test. The resulting string should convert tabs , line feeds and carriage returns into a single space";
assertEquals(collapseExpected, doc2.getWSCollapseElt());
}
@Test
public void testEnumElt() throws Throwable {
EnumEltDocument doc = EnumEltDocument.Factory.newInstance();
doc.setEnumElt(EnumT.A);
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
doc = EnumEltDocument.Factory.parse("<EnumElt " +
"xmlns=\"http://xbean/scomp/derivation/facets/FacetRestriction\">" +
"b" +
"</EnumElt>");
String[] errExpected = new String[]{
XmlErrorCodes.DATATYPE_ENUM_VALID};
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
}
@Test
public void testPatternElt() throws Throwable {
// base pattern is (a[^bc]d){3}, derived pattern is (a[^ef]d){3}
PatternEltDocument doc = PatternEltDocument.Factory.newInstance();
doc.setPatternElt("axdaydazd");
try {
assertTrue(doc.validate(validateOptions));
} catch (Throwable t) {
showErrors();
throw t;
}
String[] errExpected = new String[]{
XmlErrorCodes.DATATYPE_VALID$PATTERN_VALID};
doc.setPatternElt("aedafdagd");
assertTrue(!doc.validate(validateOptions));
assertTrue(compareErrorCodes(errExpected));
}
}