Iterators prev() behavior is now consistent with next(), meaning that it can go out of bounds and it must be validated with valid() before using it. Fixes #587 Fixes #627
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
 | 
						|
 | 
						|
use PhpOffice\PhpSpreadsheet\Cell\Cell;
 | 
						|
use PhpOffice\PhpSpreadsheet\Worksheet\ColumnCellIterator;
 | 
						|
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
 | 
						|
use PHPUnit\Framework\TestCase;
 | 
						|
 | 
						|
class ColumnCellIteratorTest extends TestCase
 | 
						|
{
 | 
						|
    public $mockWorksheet;
 | 
						|
 | 
						|
    public $mockCell;
 | 
						|
 | 
						|
    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));
 | 
						|
    }
 | 
						|
 | 
						|
    public function testIteratorFullRange()
 | 
						|
    {
 | 
						|
        $iterator = new ColumnCellIterator($this->mockWorksheet, 'A');
 | 
						|
        $ColumnCellIndexResult = 1;
 | 
						|
        self::assertEquals($ColumnCellIndexResult, $iterator->key());
 | 
						|
 | 
						|
        foreach ($iterator as $key => $ColumnCell) {
 | 
						|
            self::assertEquals($ColumnCellIndexResult++, $key);
 | 
						|
            self::assertInstanceOf(Cell::class, $ColumnCell);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function testIteratorStartEndRange()
 | 
						|
    {
 | 
						|
        $iterator = new ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
 | 
						|
        $ColumnCellIndexResult = 2;
 | 
						|
        self::assertEquals($ColumnCellIndexResult, $iterator->key());
 | 
						|
 | 
						|
        foreach ($iterator as $key => $ColumnCell) {
 | 
						|
            self::assertEquals($ColumnCellIndexResult++, $key);
 | 
						|
            self::assertInstanceOf(Cell::class, $ColumnCell);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function testIteratorSeekAndPrev()
 | 
						|
    {
 | 
						|
        $iterator = new ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
 | 
						|
        $columnIndexResult = 4;
 | 
						|
        $iterator->seek(4);
 | 
						|
        self::assertEquals($columnIndexResult, $iterator->key());
 | 
						|
 | 
						|
        for ($i = 1; $i < $columnIndexResult - 1; ++$i) {
 | 
						|
            $iterator->prev();
 | 
						|
            self::assertEquals($columnIndexResult - $i, $iterator->key());
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSeekOutOfRange()
 | 
						|
    {
 | 
						|
        $this->expectException(\PhpOffice\PhpSpreadsheet\Exception::class);
 | 
						|
 | 
						|
        $iterator = new ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
 | 
						|
        $iterator->seek(1);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testPrevOutOfRange()
 | 
						|
    {
 | 
						|
        $iterator = new ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
 | 
						|
        $iterator->prev();
 | 
						|
        self::assertFalse($iterator->valid());
 | 
						|
    }
 | 
						|
}
 |