![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/Data/Test/Unit/Argument/Interpreter/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Data\Test\Unit\Argument\Interpreter; use Magento\Framework\Data\Argument\Interpreter\Composite; use Magento\Framework\Data\Argument\InterpreterInterface; use Magento\Framework\ObjectManagerInterface; use PHPUnit\Framework\TestCase; class CompositeTest extends TestCase { /** * @var InterpreterInterface */ protected $_interpreterOne; /** * @var InterpreterInterface */ protected $_interpreterTwo; /** * @var Composite */ protected $_model; protected function setUp(): void { $this->_interpreterOne = $this->getMockForAbstractClass(InterpreterInterface::class); $this->_interpreterTwo = $this->getMockForAbstractClass(InterpreterInterface::class); $this->_model = new Composite( ['one' => $this->_interpreterOne, 'two' => $this->_interpreterTwo], 'interpreter' ); } public function testConstructWrongInterpreter() { $this->expectException('InvalidArgumentException'); $this->expectExceptionMessage('Interpreter named \'wrong\' is expected to be an argument interpreter instance'); $interpreters = [ 'correct' => $this->getMockForAbstractClass(InterpreterInterface::class), 'wrong' => $this->getMockForAbstractClass(ObjectManagerInterface::class), ]; new Composite($interpreters, 'interpreter'); } /** * @param array $input * @param string $expectedExceptionMessage * * @dataProvider evaluateWrongDiscriminatorDataProvider */ public function testEvaluateWrongDiscriminator($input, $expectedExceptionMessage) { $this->expectException('\InvalidArgumentException'); $this->expectExceptionMessage($expectedExceptionMessage); $this->_model->evaluate($input); } /** * @return array */ public function evaluateWrongDiscriminatorDataProvider() { return [ 'no discriminator' => [[], 'Value for key "interpreter" is missing in the argument data'], 'nonexistent interpreter ' => [ ['interpreter' => 'nonexistent'], "Argument interpreter named 'nonexistent' has not been defined", ] ]; } public function testEvaluate() { $input = ['interpreter' => 'one', 'value' => 'test']; $expected = ['value' => 'test (updated)']; $this->_interpreterOne->expects( $this->once() )->method( 'evaluate' )->with( ['value' => 'test'] )->willReturn( $expected ); $this->assertSame($expected, $this->_model->evaluate($input)); } public function testAddInterpreter() { $input = ['interpreter' => 'new', 'value' => 'test']; $newInterpreter = $this->getMockForAbstractClass(InterpreterInterface::class); $this->_model->addInterpreter('new', $newInterpreter); $newInterpreter->expects($this->once())->method('evaluate')->with(['value' => 'test']); $this->_model->evaluate($input); } public function testAddInterpreterException() { $this->expectException('InvalidArgumentException'); $this->expectExceptionMessage('Argument interpreter named \'one\' has already been defined'); $newInterpreter = $this->getMockForAbstractClass(InterpreterInterface::class); $this->_model->addInterpreter('one', $newInterpreter); } }