-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathAuthenticationTest.php
99 lines (89 loc) · 3.29 KB
/
AuthenticationTest.php
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\HTTP\Test\Unit;
use Magento\Framework\App\Request\Http;
use Magento\Framework\HTTP\Authentication;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;
class AuthenticationTest extends TestCase
{
/**
* @param array $server
* @param string $expectedLogin
* @param string $expectedPass
* @dataProvider getCredentialsDataProvider
*/
public function testGetCredentials($server, $expectedLogin, $expectedPass)
{
$request = $this->createMock(Http::class);
$request->expects($this->once())->method('getServerValue')->willReturn($server);
$response = $this->createMock(\Magento\Framework\App\Response\Http::class);
$authentication = new Authentication($request, $response);
$this->assertSame([$expectedLogin, $expectedPass], $authentication->getCredentials());
}
/**
* @return array
*/
public function getCredentialsDataProvider()
{
$login = 'login';
$password = 'password';
$header = 'Basic bG9naW46cGFzc3dvcmQ=';
$anotherLogin = 'another_login';
$anotherPassword = 'another_password';
$anotherHeader = 'Basic YW5vdGhlcl9sb2dpbjphbm90aGVyX3Bhc3N3b3Jk';
return [
[[], '', ''],
[['REDIRECT_HTTP_AUTHORIZATION' => $header], $login, $password],
[['HTTP_AUTHORIZATION' => $header], $login, $password],
[['Authorization' => $header], $login, $password],
[
[
'REDIRECT_HTTP_AUTHORIZATION' => $header,
'PHP_AUTH_USER' => $anotherLogin,
'PHP_AUTH_PW' => $anotherPassword,
],
$anotherLogin,
$anotherPassword
],
[
[
'REDIRECT_HTTP_AUTHORIZATION' => $header,
'PHP_AUTH_USER' => $anotherLogin,
'PHP_AUTH_PW' => $anotherPassword,
],
$anotherLogin,
$anotherPassword
],
[
['REDIRECT_HTTP_AUTHORIZATION' => $header, 'HTTP_AUTHORIZATION' => $anotherHeader],
$anotherLogin,
$anotherPassword
]
];
}
public function testSetAuthenticationFailed()
{
$objectManager = new ObjectManager($this);
$request = $objectManager->getObject(Http::class);
$response = $objectManager->getObject(\Magento\Framework\App\Response\Http::class);
$authentication = $objectManager->getObject(
Authentication::class,
[
'httpRequest' => $request,
'httpResponse' => $response
]
);
$realm = uniqid();
$authentication->setAuthenticationFailed($realm);
$headers = $response->getHeaders();
$this->assertTrue($headers->has('WWW-Authenticate'));
$header = $headers->get('WWW-Authenticate');
$this->assertEquals('Basic realm="' . $realm . '"', $header->current()->getFieldValue());
$this->assertStringContainsString('401', $response->getBody());
}
}