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

BinlogControllerTest.php « Server « Controllers « classes « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84e9a86a895ec394cb4fe8a411b6da67d902acc4 (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
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
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Tests\Controllers\Server;

use PhpMyAdmin\Controllers\Server\BinlogController;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Tests\Stubs\Response;
use PhpMyAdmin\Url;
use PhpMyAdmin\Utils\SessionCache;

class BinlogControllerTest extends AbstractTestCase
{
    /**
     * Prepares environment for the test.
     */
    protected function setUp(): void
    {
        parent::setUp();
        $GLOBALS['text_dir'] = 'ltr';
        parent::setGlobalConfig();
        parent::setTheme();
        $GLOBALS['config']->enableBc();

        $GLOBALS['cfg']['MaxRows'] = 10;
        $GLOBALS['cfg']['ServerDefault'] = 'server';
        $GLOBALS['cfg']['Server']['DisableIS'] = false;

        $GLOBALS['server'] = 1;
        $GLOBALS['db'] = 'db';
        $GLOBALS['table'] = 'table';
        $GLOBALS['PMA_PHP_SELF'] = 'index.php';

        SessionCache::set('profiling_supported', true);
    }

    public function testIndex(): void
    {
        $response = new Response();

        $controller = new BinlogController($response, new Template(), $GLOBALS['dbi']);

        $_POST['log'] = 'index1';
        $_POST['pos'] = '3';
        $controller->index();
        $actual = $response->getHTMLResult();

        $this->assertStringContainsString(
            'Select binary log to view',
            $actual
        );
        $this->assertStringContainsString(
            '<option value="index1" selected>',
            $actual
        );
        $this->assertStringContainsString(
            '<option value="index2">',
            $actual
        );

        $this->assertStringContainsString(
            'Your SQL query has been executed successfully',
            $actual
        );

        $this->assertStringContainsString(
            "SHOW BINLOG EVENTS IN 'index1' LIMIT 3, 10",
            $actual
        );

        $this->assertStringContainsString(
            '<table class="pma-table" id="binlogTable">',
            $actual
        );

        $urlNavigation = Url::getFromRoute('/server/binlog') . '" data-post="log=index1&pos=3&'
            . 'is_full_query=1&server=1&';
        $this->assertStringContainsString(
            $urlNavigation,
            $actual
        );
        $this->assertStringContainsString(
            'title="Previous"',
            $actual
        );

        $this->assertStringContainsString(
            'Log name',
            $actual
        );
        $this->assertStringContainsString(
            'Position',
            $actual
        );
        $this->assertStringContainsString(
            'Event type',
            $actual
        );
        $this->assertStringContainsString(
            'Server ID',
            $actual
        );
        $this->assertStringContainsString(
            'Original position',
            $actual
        );

        $this->assertStringContainsString('index1_Log_name', $actual);
        $this->assertStringContainsString('index1_Pos', $actual);
        $this->assertStringContainsString('index1_Event_type', $actual);
        $this->assertStringContainsString('index1_Server_id', $actual);
        $this->assertStringContainsString('index1_Orig_log_pos', $actual);
        $this->assertStringContainsString('index1_Info', $actual);
    }
}