2013-06-14 22:57:50 +00:00
|
|
|
<?php
|
|
|
|
|
2016-08-31 17:18:12 +00:00
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation;
|
2013-06-14 22:57:50 +00:00
|
|
|
|
2016-08-31 17:18:12 +00:00
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\LookupRef;
|
2018-07-22 18:17:04 +00:00
|
|
|
use PhpOffice\PhpSpreadsheet\Cell\Cell;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
|
2017-11-08 15:48:01 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-08-14 04:08:43 +00:00
|
|
|
|
2016-05-20 06:41:09 +00:00
|
|
|
/**
|
2016-12-22 14:43:37 +00:00
|
|
|
* Class LookupRefTest.
|
2016-05-20 06:41:09 +00:00
|
|
|
*/
|
2017-11-08 15:48:01 +00:00
|
|
|
class LookupRefTest extends TestCase
|
2013-06-14 22:57:50 +00:00
|
|
|
{
|
2020-04-27 10:28:36 +00:00
|
|
|
protected function setUp(): void
|
2013-06-14 22:57:50 +00:00
|
|
|
{
|
2016-08-14 04:08:43 +00:00
|
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2013-06-14 22:57:50 +00:00
|
|
|
|
2018-07-22 18:17:04 +00:00
|
|
|
/**
|
|
|
|
* @dataProvider providerFormulaText
|
|
|
|
*
|
|
|
|
* @param mixed $expectedResult
|
|
|
|
* @param mixed $reference Reference to the cell we wish to test
|
|
|
|
* @param mixed $value Value of the cell we wish to test
|
|
|
|
*/
|
|
|
|
public function testFormulaText($expectedResult, $reference, $value = 'undefined')
|
|
|
|
{
|
|
|
|
$ourCell = null;
|
|
|
|
if ($value !== 'undefined') {
|
|
|
|
$remoteCell = $this->getMockBuilder(Cell::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$remoteCell->method('isFormula')
|
|
|
|
->will($this->returnValue(substr($value, 0, 1) == '='));
|
|
|
|
$remoteCell->method('getValue')
|
|
|
|
->will($this->returnValue($value));
|
|
|
|
|
|
|
|
$remoteSheet = $this->getMockBuilder(Worksheet::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$remoteSheet->method('getCell')
|
|
|
|
->will($this->returnValue($remoteCell));
|
|
|
|
|
|
|
|
$workbook = $this->getMockBuilder(Spreadsheet::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$workbook->method('getSheetByName')
|
|
|
|
->will($this->returnValue($remoteSheet));
|
|
|
|
|
|
|
|
$sheet = $this->getMockBuilder(Worksheet::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$sheet->method('getCell')
|
|
|
|
->will($this->returnValue($remoteCell));
|
|
|
|
$sheet->method('getParent')
|
|
|
|
->will($this->returnValue($workbook));
|
|
|
|
|
|
|
|
$ourCell = $this->getMockBuilder(Cell::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$ourCell->method('getWorksheet')
|
|
|
|
->will($this->returnValue($sheet));
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = LookupRef::FORMULATEXT($reference, $ourCell);
|
2020-04-27 10:28:36 +00:00
|
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-8);
|
2018-07-22 18:17:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function providerFormulaText()
|
|
|
|
{
|
|
|
|
return require 'data/Calculation/LookupRef/FORMULATEXT.php';
|
|
|
|
}
|
2013-06-14 22:57:50 +00:00
|
|
|
}
|