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: b8d3f2cd88529cb656cbc1dedbad46ba49c7f624 (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
<?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;

/**
 * @covers \PhpMyAdmin\Controllers\JavaScriptMessagesController
 */
class JavaScriptMessagesControllerTest extends TestCase
{
    public function testIndex(): void
    {
        ob_start();
        (new JavaScriptMessagesController())();
        $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('strDoYouReally', $array);
        $this->assertEquals('Do you really want to execute "%s"?', $array['strDoYouReally']);
    }
}