PhpSpreadsheet/tests/PhpSpreadsheetTests/Cell/DefaultValueBinderTest.php

83 lines
2.1 KiB
PHP
Raw Normal View History

2015-03-27 21:28:26 +00:00
<?php
namespace PhpOffice\PhpSpreadsheetTests\Cell;
2015-03-27 21:28:26 +00:00
use PhpOffice\PhpSpreadsheet\Cell;
use PhpOffice\PhpSpreadsheet\Cell\DataType;
use PhpOffice\PhpSpreadsheet\Cell\DefaultValueBinder;
use PhpOffice\PhpSpreadsheet\RichText;
2016-03-22 14:35:50 +00:00
class DefaultValueBinderTest extends \PHPUnit_Framework_TestCase
2015-03-27 21:28:26 +00:00
{
protected $cellStub;
2015-03-27 21:28:26 +00:00
protected function createCellStub()
{
// Create a stub for the Cell class.
$this->cellStub = $this->getMockBuilder(Cell::class)
->disableOriginalConstructor()
->getMock();
// Configure the stub.
$this->cellStub->expects($this->any())
->method('setValueExplicit')
->will($this->returnValue(true));
}
/**
* @dataProvider binderProvider
2016-12-22 14:43:37 +00:00
*
* @param mixed $value
*/
public function testBindValue($value)
2015-05-17 13:00:02 +00:00
{
$this->createCellStub();
$binder = new DefaultValueBinder();
2015-05-17 13:00:02 +00:00
$result = $binder->bindValue($this->cellStub, $value);
$this->assertTrue($result);
}
public function binderProvider()
{
return [
[null],
[''],
['ABC'],
['=SUM(A1:B2)'],
[true],
[false],
[123],
[-123.456],
['123'],
['-123.456'],
['#REF!'],
[new \DateTime()],
];
}
2015-03-27 21:28:26 +00:00
/**
* @dataProvider providerDataTypeForValue
*
* @param mixed $expectedResult
2015-03-27 21:28:26 +00:00
*/
public function testDataTypeForValue($expectedResult, ...$args)
2015-05-17 13:00:02 +00:00
{
$result = DefaultValueBinder::dataTypeForValue(...$args);
2015-05-17 13:00:02 +00:00
$this->assertEquals($expectedResult, $result);
}
2015-03-27 21:28:26 +00:00
public function providerDataTypeForValue()
{
return require 'data/Cell/DefaultValueBinder.php';
2015-05-17 13:00:02 +00:00
}
2015-03-27 21:28:26 +00:00
2015-05-17 13:00:02 +00:00
public function testDataTypeForRichTextObject()
{
$objRichText = new RichText();
$objRichText->createText('Hello World');
$expectedResult = DataType::TYPE_INLINE;
$result = DefaultValueBinder::dataTypeForValue($objRichText);
2015-05-17 13:00:02 +00:00
$this->assertEquals($expectedResult, $result);
}
2015-03-27 21:28:26 +00:00
}