tikiwiki/packages/tiki-pkg-mediaalchemyst/alchemy/phpexiftool/tests/lib/PHPExiftool/Test/ExiftoolTest.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2023-11-20 21:52:04 +01:00
<?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;
}
}