PhpSpreadsheet/tests/PhpSpreadsheetTests/Worksheet/ColumnCellIteratorTest.php

88 lines
2.7 KiB
PHP
Raw Normal View History

<?php
namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
use PhpOffice\PhpSpreadsheet\Cell;
use PhpOffice\PhpSpreadsheet\Worksheet;
use PhpOffice\PhpSpreadsheet\Worksheet\ColumnCellIterator;
use PHPUnit_Framework_TestCase;
2015-05-30 11:25:17 +00:00
class ColumnCellIteratorTest extends PHPUnit_Framework_TestCase
{
public $mockWorksheet;
public $mockColumnCell;
2015-05-17 13:00:02 +00:00
public function setUp()
{
$this->mockCell = $this->getMockBuilder(Cell::class)
->disableOriginalConstructor()
->getMock();
$this->mockWorksheet = $this->getMockBuilder(Worksheet::class)
->disableOriginalConstructor()
->getMock();
$this->mockWorksheet->expects($this->any())
->method('getHighestRow')
->will($this->returnValue(5));
$this->mockWorksheet->expects($this->any())
->method('getCellByColumnAndRow')
->will($this->returnValue($this->mockCell));
}
2015-05-17 13:00:02 +00:00
public function testIteratorFullRange()
{
2015-05-30 11:25:17 +00:00
$iterator = new ColumnCellIterator($this->mockWorksheet, 'A');
$ColumnCellIndexResult = 1;
$this->assertEquals($ColumnCellIndexResult, $iterator->key());
2015-05-17 13:00:02 +00:00
foreach ($iterator as $key => $ColumnCell) {
$this->assertEquals($ColumnCellIndexResult++, $key);
$this->assertInstanceOf(Cell::class, $ColumnCell);
}
2015-05-17 13:00:02 +00:00
}
2015-05-17 13:00:02 +00:00
public function testIteratorStartEndRange()
{
2015-05-30 11:25:17 +00:00
$iterator = new ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
$ColumnCellIndexResult = 2;
$this->assertEquals($ColumnCellIndexResult, $iterator->key());
2015-05-17 13:00:02 +00:00
foreach ($iterator as $key => $ColumnCell) {
$this->assertEquals($ColumnCellIndexResult++, $key);
$this->assertInstanceOf(Cell::class, $ColumnCell);
}
2015-05-17 13:00:02 +00:00
}
2015-05-17 13:00:02 +00:00
public function testIteratorSeekAndPrev()
{
2015-05-30 11:25:17 +00:00
$iterator = new ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
$columnIndexResult = 4;
$iterator->seek(4);
$this->assertEquals($columnIndexResult, $iterator->key());
for ($i = 1; $i < $columnIndexResult - 1; ++$i) {
$iterator->prev();
$this->assertEquals($columnIndexResult - $i, $iterator->key());
}
2015-05-17 13:00:02 +00:00
}
/**
* @expectedException \PhpOffice\PhpSpreadsheet\Exception
*/
public function testSeekOutOfRange()
{
2015-05-30 11:25:17 +00:00
$iterator = new ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
$iterator->seek(1);
}
/**
* @expectedException \PhpOffice\PhpSpreadsheet\Exception
*/
public function testPrevOutOfRange()
{
2015-05-30 11:25:17 +00:00
$iterator = new ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
$iterator->prev();
}
}