| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?php
- namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Engineering;
- use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
- use PhpOffice\PhpSpreadsheet\Calculation\Exception as CalcExp;
- use PhpOffice\PhpSpreadsheet\Calculation\Functions;
- use PhpOffice\PhpSpreadsheet\Spreadsheet;
- use PHPUnit\Framework\TestCase;
- class Hex2BinTest extends TestCase
- {
- /**
- * @var string
- */
- private $compatibilityMode;
- protected function setUp(): void
- {
- $this->compatibilityMode = Functions::getCompatibilityMode();
- }
- protected function tearDown(): void
- {
- Functions::setCompatibilityMode($this->compatibilityMode);
- }
- /**
- * @dataProvider providerHEX2BIN
- *
- * @param mixed $expectedResult
- * @param mixed $formula
- */
- public function testHEX2BIN($expectedResult, $formula): void
- {
- if ($expectedResult === 'exception') {
- $this->expectException(CalcExp::class);
- }
- $spreadsheet = new Spreadsheet();
- $sheet = $spreadsheet->getActiveSheet();
- $sheet->setCellValue('A2', 'B');
- $sheet->getCell('A1')->setValue("=HEX2BIN($formula)");
- $result = $sheet->getCell('A1')->getCalculatedValue();
- self::assertEquals($expectedResult, $result);
- }
- public function providerHEX2BIN(): array
- {
- return require 'tests/data/Calculation/Engineering/HEX2BIN.php';
- }
- /**
- * @dataProvider providerHEX2BIN
- *
- * @param mixed $expectedResult
- * @param mixed $formula
- */
- public function testHEX2BINOds($expectedResult, $formula): void
- {
- Functions::setCompatibilityMode(Functions::COMPATIBILITY_OPENOFFICE);
- if ($expectedResult === 'exception') {
- $this->expectException(CalcExp::class);
- }
- if ($formula === 'true') {
- $expectedResult = 1;
- } elseif ($formula === 'false') {
- $expectedResult = 0;
- }
- $spreadsheet = new Spreadsheet();
- $sheet = $spreadsheet->getActiveSheet();
- $sheet->setCellValue('A2', 'B');
- $sheet->getCell('A1')->setValue("=HEX2BIN($formula)");
- $result = $sheet->getCell('A1')->getCalculatedValue();
- self::assertEquals($expectedResult, $result);
- }
- public function testHEX2BINFrac(): void
- {
- $spreadsheet = new Spreadsheet();
- $sheet = $spreadsheet->getActiveSheet();
- Functions::setCompatibilityMode(Functions::COMPATIBILITY_GNUMERIC);
- $cell = 'G1';
- $sheet->setCellValue($cell, '=HEX2BIN(10.1)');
- self::assertEquals('10000', $sheet->getCell($cell)->getCalculatedValue());
- $cell = 'F21';
- $sheet->setCellValue($cell, '=HEX2BIN("A.1")');
- self::assertEquals('#NUM!', $sheet->getCell($cell)->getCalculatedValue());
- Functions::setCompatibilityMode(Functions::COMPATIBILITY_OPENOFFICE);
- $cell = 'O1';
- $sheet->setCellValue($cell, '=HEX2BIN(10.1)');
- self::assertEquals('#NUM!', $sheet->getCell($cell)->getCalculatedValue());
- Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
- $cell = 'E1';
- $sheet->setCellValue($cell, '=HEX2BIN(10.1)');
- self::assertEquals('#NUM!', $sheet->getCell($cell)->getCalculatedValue());
- }
- /**
- * @dataProvider providerHex2BinArray
- */
- public function testHex2BinArray(array $expectedResult, string $value): void
- {
- $calculation = Calculation::getInstance();
- $formula = "=HEX2BIN({$value})";
- $result = $calculation->_calculateFormulaValue($formula);
- self::assertEquals($expectedResult, $result);
- }
- public function providerHex2BinArray(): array
- {
- return [
- 'row/column vector' => [
- [['100', '111', '111111', '10011001', '11001100', '101010101']],
- '{"4", "7", "3F", "99", "CC", "155"}',
- ],
- ];
- }
- }
|