mirror of https://github.com/apache/poi.git
Disabled unit tests for bug #48703
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1242807 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a3a8dcf335
commit
5b291578bc
|
@ -1255,4 +1255,34 @@ public final class TestXSSFBugs extends BaseTestBugzillaIssues {
|
|||
assertEquals(1, ref.getLastCell().getRow());
|
||||
assertEquals(0, ref.getLastCell().getCol());
|
||||
}
|
||||
|
||||
/**
|
||||
* Sum across multiple workbooks
|
||||
* eg =SUM($Sheet1.C1:$Sheet4.C1)
|
||||
* DISABLED As we can't currently evaluate these
|
||||
*/
|
||||
public void DISABLEDtest48703() throws Exception {
|
||||
XSSFWorkbook wb = XSSFTestDataSamples.openSampleWorkbook("48703.xlsx");
|
||||
XSSFSheet sheet = wb.getSheetAt(0);
|
||||
|
||||
// Contains two forms, one with a range and one a list
|
||||
XSSFRow r1 = sheet.getRow(0);
|
||||
XSSFRow r2 = sheet.getRow(1);
|
||||
XSSFCell c1 = r1.getCell(1);
|
||||
XSSFCell c2 = r2.getCell(1);
|
||||
|
||||
assertEquals(20.0, c1.getNumericCellValue());
|
||||
assertEquals("SUM(Sheet1!C1,Sheet2!C1,Sheet3!C1,Sheet4!C1)", c1.getCellFormula());
|
||||
|
||||
assertEquals(20.0, c2.getNumericCellValue());
|
||||
assertEquals("SUM(Sheet1:Sheet4!C1)", c2.getCellFormula());
|
||||
|
||||
// Try evaluating both
|
||||
XSSFFormulaEvaluator eval = new XSSFFormulaEvaluator(wb);
|
||||
eval.evaluateFormulaCell(c1);
|
||||
eval.evaluateFormulaCell(c2);
|
||||
|
||||
assertEquals(20.0, c1.getNumericCellValue());
|
||||
assertEquals(20.0, c2.getNumericCellValue());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2181,6 +2181,29 @@ if(1==2) {
|
|||
writeOutAndReadBack(wb);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sum across multiple workbooks
|
||||
* eg =SUM($Sheet2.A1:$Sheet3.A1)
|
||||
* DISABLED - We currently get the formula wrong, and mis-evaluate
|
||||
*/
|
||||
public void DISABLEDtest48703() {
|
||||
HSSFWorkbook wb = openSample("48703.xls");
|
||||
assertEquals(3, wb.getNumberOfSheets());
|
||||
|
||||
// Check reading the formula
|
||||
Sheet sheet = wb.getSheetAt(0);
|
||||
Row r = sheet.getRow(0);
|
||||
Cell c = r.getCell(0);
|
||||
|
||||
assertEquals("SUM(Sheet2!A1:Sheet3!A1)", c.getCellFormula());
|
||||
assertEquals(4.0, c.getNumericCellValue());
|
||||
|
||||
// Check the evaluated result
|
||||
HSSFFormulaEvaluator eval = new HSSFFormulaEvaluator(wb);
|
||||
eval.evaluateFormulaCell(c);
|
||||
assertEquals(4.0, c.getNumericCellValue());
|
||||
}
|
||||
|
||||
/**
|
||||
* Normally encrypted files have BOF then FILEPASS, but
|
||||
* some may squeeze a WRITEPROTECT in the middle
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue