mirror of https://github.com/apache/poi.git
The Event User Model fake-workbook for formula evaluations needs to know about the sheet names
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1611946 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7a372e6f36
commit
0bfa4f675d
|
@ -138,7 +138,14 @@ public class EventWorkbookBuilder {
|
|||
}
|
||||
|
||||
public HSSFWorkbook getStubHSSFWorkbook() {
|
||||
return HSSFWorkbook.create(getStubWorkbook());
|
||||
// Create a base workbook
|
||||
HSSFWorkbook wb = HSSFWorkbook.create(getStubWorkbook());
|
||||
// Stub the sheets, so sheet name lookups work
|
||||
for (BoundSheetRecord bsr : boundSheetRecords) {
|
||||
wb.createSheet(bsr.getSheetname());
|
||||
}
|
||||
// Ready for Formula use!
|
||||
return wb;
|
||||
}
|
||||
public InternalWorkbook getStubWorkbook() {
|
||||
return createStubWorkbook(
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
|
||||
package org.apache.poi.ss.formula.ptg;
|
||||
|
||||
import org.apache.poi.ss.formula.FormulaRenderingWorkbook;
|
||||
import org.apache.poi.ss.formula.EvaluationWorkbook.ExternalSheet;
|
||||
import org.apache.poi.ss.formula.FormulaRenderingWorkbook;
|
||||
import org.apache.poi.ss.formula.SheetNameFormatter;
|
||||
|
||||
/**
|
||||
|
@ -36,8 +36,13 @@ final class ExternSheetNameResolver {
|
|||
if (externalSheet != null) {
|
||||
String wbName = externalSheet.getWorkbookName();
|
||||
String sheetName = externalSheet.getSheetName();
|
||||
sb = new StringBuffer(wbName.length() + sheetName.length() + cellRefText.length() + 4);
|
||||
SheetNameFormatter.appendFormat(sb, wbName, sheetName);
|
||||
if (wbName != null) {
|
||||
sb = new StringBuffer(wbName.length() + sheetName.length() + cellRefText.length() + 4);
|
||||
SheetNameFormatter.appendFormat(sb, wbName, sheetName);
|
||||
} else {
|
||||
sb = new StringBuffer(sheetName.length() + cellRefText.length() + 4);
|
||||
SheetNameFormatter.appendFormat(sb, sheetName);
|
||||
}
|
||||
} else {
|
||||
String sheetName = book.getSheetNameByExternSheet(field_1_index_extern_sheet);
|
||||
sb = new StringBuffer(sheetName.length() + cellRefText.length() + 4);
|
||||
|
|
|
@ -97,8 +97,11 @@ public final class TestEventWorkbookBuilder extends TestCase {
|
|||
|
||||
// Check these stubs have the right stuff on them
|
||||
assertEquals("Sheet1", stubWB.getSheetName(0));
|
||||
assertEquals("S2", stubWB.getSheetName(1));
|
||||
assertEquals("Sh3", stubWB.getSheetName(2));
|
||||
assertEquals("Sheet1", stubHSSF.getSheetName(0));
|
||||
assertEquals("S2", stubWB.getSheetName(1));
|
||||
assertEquals("S2", stubHSSF.getSheetName(1));
|
||||
assertEquals("Sh3", stubWB.getSheetName(2));
|
||||
assertEquals("Sh3", stubHSSF.getSheetName(2));
|
||||
|
||||
// Check we can get the formula without breaking
|
||||
for(int i=0; i<fRecs.length; i++) {
|
||||
|
|
Loading…
Reference in New Issue