96 regels
2.6 KiB
PHP
96 regels
2.6 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*
|
||
|
* https://www.d3data.de
|
||
|
*
|
||
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
||
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
||
|
* @link https://www.oxidmodule.com
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace D3\DataWizard\tests\unit\Application\Model\Exceptions;
|
||
|
|
||
|
use D3\DataWizard\Application\Model\Exceptions\InputUnvalidException;
|
||
|
use D3\DataWizard\Application\Model\ExportBase;
|
||
|
use D3\DataWizard\tests\tools\d3TestExport;
|
||
|
use D3\ModCfg\Tests\unit\d3ModCfgUnitTestCase;
|
||
|
use FormManager\Inputs\Number;
|
||
|
use PHPUnit\Framework\MockObject\MockObject;
|
||
|
|
||
|
class InputUnvalidExceptionTest extends d3ModCfgUnitTestCase
|
||
|
{
|
||
|
/** @var InputUnvalidException */
|
||
|
protected $_oModel;
|
||
|
|
||
|
/**
|
||
|
* @covers \D3\DataWizard\Application\Model\Exceptions\InputUnvalidException::__construct
|
||
|
* @test
|
||
|
* @throws \ReflectionException
|
||
|
*/
|
||
|
public function canConstruct()
|
||
|
{
|
||
|
$code = '500';
|
||
|
|
||
|
$exception = oxNew(\Exception::class);
|
||
|
|
||
|
/** @var Number $invalidField */
|
||
|
$invalidField = new Number(null, [
|
||
|
'required' => true,
|
||
|
'min' => 1,
|
||
|
'max' => 10,
|
||
|
'step' => 5,
|
||
|
]);
|
||
|
$invalidField
|
||
|
->setValue(20)
|
||
|
->setErrorMessages(['errorMsgs']);
|
||
|
|
||
|
/** @var ExportBase|MockObject $taskMock */
|
||
|
$taskMock = $this->getMockBuilder(d3TestExport::class)
|
||
|
->onlyMethods(['getTitle'])
|
||
|
->getMock();
|
||
|
$taskMock->expects($this->atLeastOnce())->method('getTitle')->willReturn('testTitle');
|
||
|
|
||
|
/** @var InputUnvalidException|MockObject $modelMock */
|
||
|
$modelMock = $this->getMockBuilder(InputUnvalidException::class)
|
||
|
->disableOriginalConstructor()
|
||
|
->getMock();
|
||
|
|
||
|
$this->_oModel = $modelMock;
|
||
|
|
||
|
$this->callMethod(
|
||
|
$this->_oModel,
|
||
|
'__construct',
|
||
|
[$taskMock, $invalidField, $code, $exception]
|
||
|
);
|
||
|
|
||
|
$this->assertRegExp(
|
||
|
'/^testTitle\s-\s*->\s.*\sless\s/m',
|
||
|
$this->callMethod(
|
||
|
$this->_oModel,
|
||
|
'getMessage'
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$this->assertEquals(
|
||
|
$code,
|
||
|
$this->callMethod(
|
||
|
$this->_oModel,
|
||
|
'getCode'
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$this->assertSame(
|
||
|
$exception,
|
||
|
$this->callMethod(
|
||
|
$this->_oModel,
|
||
|
'getPrevious'
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|