Welcome to mirror list, hosted at ThFree Co, Russian Federation.

JavaScriptMessagesControllerTest.php « Controllers « classes « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72bbed9329cd8742f379eac7e6bb9c25bf0f6ae9 (plain)
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
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Tests\Controllers;

use PhpMyAdmin\Controllers\JavaScriptMessagesController;
use PHPUnit\Framework\TestCase;

use function json_decode;
use function ob_end_clean;
use function ob_get_contents;
use function ob_start;
use function strlen;
use function substr;

class JavaScriptMessagesControllerTest extends TestCase
{
    public function testIndex(): void
    {
        global $cfg;

        $cfg['GridEditing'] = 'double-click';

        $controller = new JavaScriptMessagesController();

        ob_start();
        $controller->index();
        $actual = ob_get_contents();
        ob_end_clean();

        $this->assertIsString($actual);
        $this->assertStringStartsWith('var Messages = {', $actual);
        $this->assertStringEndsWith('};', $actual);

        $json = substr($actual, strlen('var Messages = '), -1);
        $array = json_decode($json, true);

        $this->assertIsArray($array);
        $this->assertArrayHasKey('strConfirm', $array);
        $this->assertEquals(__('Confirm'), $array['strConfirm']);
    }
}