spout/tests/Spout/Reader/Common/Creator/ReaderEntityFactoryTest.php
2018-10-23 13:33:39 +02:00

74 lines
2.1 KiB
PHP

<?php
namespace Box\Spout\Reader\Common\Creator;
use Box\Spout\Common\Exception\IOException;
use Box\Spout\Common\Exception\UnsupportedTypeException;
use Box\Spout\TestUsingResource;
use PHPUnit\Framework\TestCase;
class ReaderEntityFactoryTest extends TestCase
{
use TestUsingResource;
/**
* @return void
*/
public function testCreateFromFileCSV()
{
$validCsv = $this->getResourcePath('csv_test_create_from_file.csv');
$reader = ReaderEntityFactory::createReaderFromFile($validCsv);
$this->assertInstanceOf('Box\Spout\Reader\CSV\Reader', $reader);
}
/**
* @return void
*/
public function testCreateFromFileCSVAllCaps()
{
$validCsv = $this->getResourcePath('csv_test_create_from_file.CSV');
$reader = ReaderEntityFactory::createReaderFromFile($validCsv);
$this->assertInstanceOf('Box\Spout\Reader\CSV\Reader', $reader);
}
/**
* @return void
*/
public function testCreateFromFileODS()
{
$validOds = $this->getResourcePath('csv_test_create_from_file.ods');
$reader = ReaderEntityFactory::createReaderFromFile($validOds);
$this->assertInstanceOf('Box\Spout\Reader\ODS\Reader', $reader);
}
/**
* @return void
*/
public function testCreateFromFileXLSX()
{
$validXlsx = $this->getResourcePath('csv_test_create_from_file.xlsx');
$reader = ReaderEntityFactory::createReaderFromFile($validXlsx);
$this->assertInstanceOf('Box\Spout\Reader\XLSX\Reader', $reader);
}
/**
* @return void
*/
public function testCreateFromFileUnsupported()
{
$this->expectException(UnsupportedTypeException::class);
$invalid = $this->getResourcePath('test_unsupported_file_type.other');
$reader = ReaderEntityFactory::createReaderFromFile($invalid);
}
/**
* @return void
*/
public function testCreateFromFileMissing()
{
$this->expectException(IOException::class);
$invalid = 'thereisnosuchfile.ext';
$reader = ReaderEntityFactory::createReaderFromFile($invalid);
}
}