-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathSqlQueryFormTest.php
More file actions
167 lines (139 loc) · 5.36 KB
/
SqlQueryFormTest.php
File metadata and controls
167 lines (139 loc) · 5.36 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\Bookmarks\BookmarkRepository;
use PhpMyAdmin\Config;
use PhpMyAdmin\ConfigStorage\Relation;
use PhpMyAdmin\ConfigStorage\RelationParameters;
use PhpMyAdmin\Current;
use PhpMyAdmin\Dbal\DatabaseInterface;
use PhpMyAdmin\Encoding;
use PhpMyAdmin\Html\MySQLDocumentation;
use PhpMyAdmin\SqlQueryForm;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\Stubs\DbiDummy;
use PhpMyAdmin\Url;
use PhpMyAdmin\UrlParams;
use PHPUnit\Framework\Attributes\CoversClass;
use ReflectionProperty;
use function __;
use function htmlspecialchars;
#[CoversClass(SqlQueryForm::class)]
class SqlQueryFormTest extends AbstractTestCase
{
protected DatabaseInterface $dbi;
protected DbiDummy $dummyDbi;
private SqlQueryForm $sqlQueryForm;
/**
* Test for setUp
*/
protected function setUp(): void
{
parent::setUp();
$this->setLanguage();
$this->dummyDbi = $this->createDbiDummy();
$this->dummyDbi->addResult(
'SHOW FULL COLUMNS FROM `PMA_db`.`PMA_table`',
[['field1', '', null, 'NO', '', null, '', '', 'Comment1']],
['Field', 'Type', 'Collation', 'Null', 'Key', 'Default', 'Extra', 'Privileges', 'Comment'],
);
$this->dummyDbi->addResult(
'SHOW INDEXES FROM `PMA_db`.`PMA_table`',
[],
);
$this->dbi = $this->createDatabaseInterface($this->dummyDbi);
DatabaseInterface::$instance = $this->dbi;
$config = Config::getInstance();
$relation = new Relation($this->dbi);
$bookmarkRepository = new BookmarkRepository($this->dbi, $relation);
$this->sqlQueryForm = new SqlQueryForm(new Template($config), $this->dbi, $bookmarkRepository);
Current::$database = 'PMA_db';
Current::$table = 'PMA_table';
$config->settings['TextareaAutoSelect'] = true;
$relationParameters = RelationParameters::fromArray([
RelationParameters::TABLE_COORDS => 'table_name',
RelationParameters::DISPLAY_WORK => true,
RelationParameters::DATABASE => 'information_schema',
RelationParameters::TABLE_INFO => 'table_info',
RelationParameters::REL_WORK => true,
RelationParameters::RELATION => 'relation',
]);
(new ReflectionProperty(Relation::class, 'cache'))->setValue(null, $relationParameters);
$config->selectedServer['user'] = 'user';
$config->selectedServer['pmadb'] = 'pmadb';
$config->selectedServer['bookmarktable'] = 'bookmarktable';
}
/**
* Test for getHtmlForInsert
*/
public function testPMAGetHtmlForSqlQueryFormInsert(): void
{
//Call the test function
$query = 'select * from PMA';
$html = $this->sqlQueryForm->getHtml('PMA_db', 'PMA_table', $query);
//validate 1: query
self::assertStringContainsString(
htmlspecialchars($query),
$html,
);
//validate 2: enable auto select text in textarea
$autoSel = ' data-textarea-auto-select="true"';
self::assertStringContainsString($autoSel, $html);
//validate 3: MySQLDocumentation::show
self::assertStringContainsString(
MySQLDocumentation::show('SELECT'),
$html,
);
//validate 4: $fields_list
self::assertStringContainsString('<input type="button" value="DELETE" id="delete"', $html);
self::assertStringContainsString('<input type="button" value="UPDATE" id="update"', $html);
self::assertStringContainsString('<input type="button" value="INSERT" id="insert"', $html);
self::assertStringContainsString('<input type="button" value="SELECT" id="select"', $html);
self::assertStringContainsString('<input type="button" value="SELECT *" id="selectall"', $html);
//validate 5: Clear button
self::assertStringContainsString('<input type="button" value="DELETE" id="delete"', $html);
self::assertStringContainsString(
__('Clear'),
$html,
);
}
/**
* Test for getHtml
*/
public function testPMAGetHtmlForSqlQueryForm(): void
{
//Call the test function
Current::$lang = 'ja';
$query = 'select * from PMA';
$html = $this->sqlQueryForm->getHtml('PMA_db', 'PMA_table', $query);
//validate 1: query
self::assertStringContainsString(
htmlspecialchars($query),
$html,
);
//validate 2: $enctype
$enctype = ' enctype="multipart/form-data">';
self::assertStringContainsString($enctype, $html);
//validate 3: sqlqueryform
self::assertStringContainsString('id="sqlqueryform" name="sqlform"', $html);
//validate 4: $db, $table
$table = Current::$table;
$db = Current::$database;
self::assertStringContainsString(
Url::getHiddenInputs($db, $table),
$html,
);
//validate 5: $goto
$goto = UrlParams::$goto === '' ? Url::getFromRoute('/table/sql') : UrlParams::$goto;
self::assertStringContainsString(
htmlspecialchars($goto),
$html,
);
//validate 6: Kanji encoding form
self::assertStringContainsString(
Encoding::kanjiEncodingForm(),
$html,
);
Current::$lang = 'en';
}
}