49 lines
1.1 KiB
PHP
Executable File
49 lines
1.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* This file is part of the PHPExiftool package.
|
|
*
|
|
* (c) Alchemy <support@alchemy.fr>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace PHPExiftool\Test;
|
|
|
|
use Monolog\Logger;
|
|
use Monolog\Handler\NullHandler;
|
|
use PHPExiftool\Exiftool;
|
|
|
|
class ExiftoolTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* @covers PHPExiftool\Exiftool::executeCommand
|
|
*/
|
|
public function testExecuteCommand()
|
|
{
|
|
$exiftool = new Exiftool($this->getlogger());
|
|
$this->assertRegExp('/\d+\.\d+/', $exiftool->executeCommand('-ver'));
|
|
}
|
|
|
|
/**
|
|
* @covers PHPExiftool\Exiftool::executeCommand
|
|
* @covers \PHPExiftool\Exception\RuntimeException
|
|
* @expectedException \PHPExiftool\Exception\RuntimeException
|
|
*/
|
|
public function testExecuteCommandFailed()
|
|
{
|
|
$exiftool = new Exiftool($this->getlogger());
|
|
$exiftool->executeCommand('-prout');
|
|
}
|
|
|
|
private function getlogger()
|
|
{
|
|
$logger = new Logger('Tests');
|
|
$logger->pushHandler(new NullHandler());
|
|
|
|
return $logger;
|
|
}
|
|
}
|
|
|