public class XSSFDataValidationConstraint implements DataValidationConstraint {
/**
* Excel validation constraints with static lists are delimited with optional whitespace and the Windows List Separator,
- * which is typically comma, but can be changed by users. POI will just assume comma.
+ * which is typically comma, but can be changed by users. POI will just assume comma.
+ * In addition, Excel validation with static lists has a maximum size of 255 characters, including separators and excluding quotes.
*/
private static final String LIST_SEPARATOR = ",";
private static final Pattern LIST_SPLIT_REGEX = Pattern.compile("\\s*" + LIST_SEPARATOR + "\\s*");
private static final String QUOTE = "\"";
-
+ private static final int MAX_EXPLICIT_LIST_LENGTH = 257;
+
private String formula1;
private String formula2;
private int validationType = -1;
if (isFormulaEmpty(formula1)) {
throw new IllegalArgumentException("A valid formula or a list of values must be specified for list validation.");
}
+ if(formula1.length() > MAX_EXPLICIT_LIST_LENGTH) {
+ throw new IllegalArgumentException("A valid formula or a list of values must be less than or equal to 255 characters (including separators).");
+ }
} else {
if( isFormulaEmpty(formula1) ) {
throw new IllegalArgumentException("Formula is not specified. Formula is required for all validation types except explicit list validation.");
import static org.junit.Assert.*;
+import org.apache.poi.ss.formula.DataValidationEvaluator;
import org.apache.poi.ss.usermodel.DataValidationConstraint;
import org.apache.poi.ss.usermodel.DataValidationConstraint.ValidationType;
+import org.apache.poi.xssf.XSSFTestDataSamples;
import org.apache.poi.ss.usermodel.DataValidationConstraint.OperatorType;
+import org.apache.poi.ss.util.CellReference;
import org.junit.Test;
+import java.util.Collections;
+import java.util.stream.Collectors;
+import java.util.stream.IntStream;
+
public class TestXSSFDataValidationConstraint {
static final int listType = ValidationType.LIST;
static final int ignoredType = OperatorType.IGNORED;
assertEquals(literal.replace(" ", ""), constraint.getFormula1());
}
+ @Test
+ public void listLiteralsGreaterThan255CharactersThrows() {
+ String[] literal = IntStream.range(0, 129).mapToObj(i -> "a").toArray(String[]::new);
+ assertThrows(IllegalArgumentException.class, () -> new XSSFDataValidationConstraint(literal));
+ }
+
+ @Test
+ public void dataValidationListLiteralTooLongFromFile() {
+ XSSFWorkbook wb = XSSFTestDataSamples.openSampleWorkbook("DataValidationListTooLong.xlsx");
+ XSSFFormulaEvaluator fEval = wb.getCreationHelper().createFormulaEvaluator();
+ DataValidationEvaluator dvEval = new DataValidationEvaluator(wb, fEval);
+ assertThrows(IllegalArgumentException.class, () -> dvEval.getValidationValuesForCell(new CellReference("Sheet0!A1")));
+ }
+
@Test
public void rangeReference() {
// (unnamed range) reference list