![]() 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/dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Cookie\Model\Config\Backend; use Magento\Framework\Exception\LocalizedException; use Magento\TestFramework\Helper\Bootstrap; use PHPUnit\Framework\TestCase; /** * Test \Magento\Cookie\Model\Config\Backend\Domain * * @magentoAppArea adminhtml */ class DomainTest extends TestCase { /** * @param string $value * @param string $exceptionMessage * @magentoDbIsolation enabled * @dataProvider beforeSaveDataProvider */ public function testBeforeSave($value, $exceptionMessage = null) { /** @var $domain Domain */ $domain = Bootstrap::getObjectManager()->create(Domain::class); $domain->setValue($value); $domain->setPath('path'); try { $domain->save(); if ($exceptionMessage) { $this->fail('Failed to throw exception'); } else { $this->assertNotNull($domain->getId()); } } catch (LocalizedException $e) { $this->assertStringContainsString('Invalid domain name: ', $e->getMessage()); $this->assertEquals($exceptionMessage, $e->getMessage()); $this->assertNull($domain->getId()); } } /** * @return array */ public function beforeSaveDataProvider(): array { return [ 'notString' => [['array'], 'Invalid domain name: must be a string'], 'invalidHostname' => [ 'http://', 'Invalid domain name: The input does not match the expected structure for a DNS hostname; ' . 'The input does not appear to be a valid URI hostname; ' . 'The input does not appear to be a valid local network name', ], 'validHostname' => ['hostname.com'], 'emptyString' => [''], 'invalidCharacter' => ['hostname,com', 'Invalid domain name: invalid character in cookie domain'], ]; } }