forked from StydeNet/enlighten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHideSessionDataTest.php
40 lines (34 loc) · 995 Bytes
/
HideSessionDataTest.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
<?php
namespace Tests\Unit\Models;
use Styde\Enlighten\Models\HttpData;
use Tests\TestCase;
class HideSessionDataTest extends TestCase
{
/** @test */
function can_hide_and_overwrite_request_input_values()
{
$httpData = new HttpData([
'session_data' => [
'token' => 'should_be_displayed',
'secret_token' => 'should_not_be_displayed',
'password' => 'should_be_overwriten',
],
]);
config([
'enlighten.session' => [
'hide' => [
'secret_token',
],
'overwrite' => [
'secret_token' => 'should_not_be_displayed',
'password' => '******',
],
],
]);
$expected = [
'token' => 'should_be_displayed',
'password' => '******',
];
$this->assertSame($expected, $httpData->session_data);
}
}