-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathJsLocalizationControllerTest.php
118 lines (80 loc) · 3.38 KB
/
JsLocalizationControllerTest.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
use Mockery as m;
class JsLocalizationControllerTest extends TestCase
{
public function testCreateJsMessages()
{
// Prepare & Request
$this->mockLang($locale = 'en');
Artisan::call('js-localization:refresh');
$response = $this->call('GET', '/js-localization/messages');
$content = $response->getContent();
$this->assertTrue($response->isOk());
// Test for Lang.addMessages()
$this->assertLangAddMessages($content, $this->testMessagesFlat);
}
public function testCreateJsConfig()
{
// Prepare & Request
$this->mockLang($locale = 'en');
Artisan::call('js-localization:refresh');
$response = $this->call('GET', '/js-localization/config');
$content = $response->getContent();
$this->assertTrue($response->isOk());
$this->assertNotNull($response->getLastModified());
$this->assertNull($response->getEtag());
// Test for Config.addConfig()
$this->assertConfigAddConfig($content, $this->testConfigExportFlat);
}
public function testCreateJsConfigWithCacheDisabled()
{
// Prepare & Request
$this->mockLang($locale = 'en');
Config::set('js-localization.disable_config_cache', true);
$response = $this->call('GET', '/js-localization/config');
$content = $response->getContent();
$this->assertTrue($response->isOk());
$this->assertNull($response->getLastModified());
$this->assertEquals('"'.md5($content).'"', $response->getEtag());
// Test for Config.addConfig()
$this->assertConfigAddConfig($content, $this->testConfigExportFlat);
}
public function testBackwardsCompatibility()
{
// Prepare & Request
$this->mockLang($locale = 'en');
$this->mockMessageCachingService($this->testMessagesFlat['en']);
$response = $this->call('GET', '/js-localization/messages');
$content = $response->getContent();
$this->assertTrue($response->isOk());
// Test for Lang.addMessages()
$this->assertLangAddMessages($content, $this->testMessagesFlat);
}
private function mockMessageCachingService(array $messages)
{
$service = m::mock('CachingServiceMock');
JsLocalization\Facades\MessageCachingService::swap($service);
$service->shouldReceive('getMessagesJson')
->andReturn(json_encode($messages));
$service->shouldReceive('getLastRefreshTimestamp')
->andReturn(new DateTime);
}
private function assertLangAddMessages($jsContent, array $expectedMessages)
{
$this->assertJsCall($jsContent, 'Lang.addMessages', $expectedMessages);
}
protected function assertConfigAddConfig($jsContent, array $expectedConfig)
{
$this->assertJsCall($jsContent, 'Config.addConfig', $expectedConfig);
}
protected function assertJsCall($jsContent, $functionName, $functionParam)
{
$functionName = str_replace('.', '\\.', $functionName);
$functionNameRegex = '/' . $functionName . '\( (\{.*?\}) \);/x';
preg_match($functionNameRegex, $jsContent, $matches);
$paramJson = $matches[1];
$this->assertJson($paramJson);
$parsedParam = json_decode($paramJson, true);
$this->assertEquals($functionParam, $parsedParam);
}
}