1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Stdlib\Test\Unit\Cookie;
use Magento\Framework\Stdlib\Cookie\PublicCookieMetadata;
use Magento\Framework\Stdlib\StringUtils;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
/**
* Test PublicCookieMetadata
*
*/
class PublicCookieMetadataTest extends \PHPUnit\Framework\TestCase
{
/** @var PublicCookieMetadata */
private $publicCookieMetadata;
protected function setUp()
{
$objectManager = new ObjectManager($this);
$this->publicCookieMetadata = $objectManager->getObject(
\Magento\Framework\Stdlib\Cookie\PublicCookieMetadata::class
);
}
/**
* @param StringUtils $setMethodName
* @param StringUtils $getMethodName
* @param StringUtils $expectedValue
* @dataProvider getMethodData
*/
public function testGetters($setMethodName, $getMethodName, $expectedValue)
{
$this->publicCookieMetadata->$setMethodName($expectedValue);
$this->assertSame($expectedValue, $this->publicCookieMetadata->$getMethodName());
}
/**
* @return array
*/
public function getMethodData()
{
return [
"getDomain" => ["setDomain", 'getDomain', "example.com"],
"getPath" => ["setPath", 'getPath', "path"],
"getDuration" => ["setDuration", 'getDuration', 125],
"getHttpOnly" => ["setHttpOnly", 'getHttpOnly', true],
"getSecure" => ["setSecure", 'getSecure', true],
"getDurationOneYear" => ["setDurationOneYear", 'getDuration', (3600*24*365)],
];
}
}