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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Engines;
use PhpMyAdmin\Core;
use PhpMyAdmin\Engines\Pbxt;
use PhpMyAdmin\Tests\AbstractTestCase;
use function __;
use function sprintf;
/**
* @covers \PhpMyAdmin\Engines\Pbxt
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\PhpMyAdmin\Engines\Pbxt::class)]
class PbxtTest extends AbstractTestCase
{
/** @var Pbxt */
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp(): void
{
parent::setUp();
$GLOBALS['server'] = 0;
$this->object = new Pbxt('pbxt');
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown(): void
{
parent::tearDown();
unset($this->object);
}
/**
* Test for getVariables
*/
public function testGetVariables(): void
{
self::assertSame($this->object->getVariables(), [
'pbxt_index_cache_size' => [
'title' => __('Index cache size'),
'desc' => __(
'This is the amount of memory allocated to the'
. ' index cache. Default value is 32MB. The memory'
. ' allocated here is used only for caching index pages.'
),
'type' => 1,
],
'pbxt_record_cache_size' => [
'title' => __('Record cache size'),
'desc' => __(
'This is the amount of memory allocated to the'
. ' record cache used to cache table data. The default'
. ' value is 32MB. This memory is used to cache changes to'
. ' the handle data (.xtd) and row pointer (.xtr) files.'
),
'type' => 1,
],
'pbxt_log_cache_size' => [
'title' => __('Log cache size'),
'desc' => __(
'The amount of memory allocated to the'
. ' transaction log cache used to cache on transaction log'
. ' data. The default is 16MB.'
),
'type' => 1,
],
'pbxt_log_file_threshold' => [
'title' => __('Log file threshold'),
'desc' => __(
'The size of a transaction log before rollover,'
. ' and a new log is created. The default value is 16MB.'
),
'type' => 1,
],
'pbxt_transaction_buffer_size' => [
'title' => __('Transaction buffer size'),
'desc' => __(
'The size of the global transaction log buffer'
. ' (the engine allocates 2 buffers of this size).'
. ' The default is 1MB.'
),
'type' => 1,
],
'pbxt_checkpoint_frequency' => [
'title' => __('Checkpoint frequency'),
'desc' => __(
'The amount of data written to the transaction'
. ' log before a checkpoint is performed.'
. ' The default value is 24MB.'
),
'type' => 1,
],
'pbxt_data_log_threshold' => [
'title' => __('Data log threshold'),
'desc' => __(
'The maximum size of a data log file. The default'
. ' value is 64MB. PBXT can create a maximum of 32000 data'
. ' logs, which are used by all tables. So the value of'
. ' this variable can be increased to increase the total'
. ' amount of data that can be stored in the database.'
),
'type' => 1,
],
'pbxt_garbage_threshold' => [
'title' => __('Garbage threshold'),
'desc' => __(
'The percentage of garbage in a data log file'
. ' before it is compacted. This is a value between 1 and'
. ' 99. The default is 50.'
),
'type' => 2,
],
'pbxt_log_buffer_size' => [
'title' => __('Log buffer size'),
'desc' => __(
'The size of the buffer used when writing a data'
. ' log. The default is 256MB. The engine allocates one'
. ' buffer per thread, but only if the thread is required'
. ' to write a data log.'
),
'type' => 1,
],
'pbxt_data_file_grow_size' => [
'title' => __('Data file grow size'),
'desc' => __('The grow size of the handle data (.xtd) files.'),
'type' => 1,
],
'pbxt_row_file_grow_size' => [
'title' => __('Row file grow size'),
'desc' => __('The grow size of the row pointer (.xtr) files.'),
'type' => 1,
],
'pbxt_log_file_count' => [
'title' => __('Log file count'),
'desc' => __(
'This is the number of transaction log files'
. ' (pbxt/system/xlog*.xt) the system will maintain. If the'
. ' number of logs exceeds this value then old logs will be'
. ' deleted, otherwise they are renamed and given the next'
. ' highest number.'
),
'type' => 2,
],
]);
}
/**
* Test for resolveTypeSize
*
* @param string $formatted_size the size expression (for example 8MB)
* @param array $output Expected output
*
* @dataProvider providerFortTestResolveTypeSize
*/
#[\PHPUnit\Framework\Attributes\DataProvider('providerFortTestResolveTypeSize')]
public function testResolveTypeSize(string $formatted_size, array $output): void
{
self::assertSame($this->object->resolveTypeSize($formatted_size), $output);
}
/**
* Provider for testResolveTypeSize
*
* @return array
*/
public static function providerFortTestResolveTypeSize(): array
{
return [
[
'8MB',
[
0 => '8,192',
1 => 'KiB',
],
],
[
'10mb',
[
0 => '-1',
1 => 'B',
],
],
[
'A4',
[
0 => '0',
1 => 'B',
],
],
];
}
/**
* Test for getInfoPages
*/
public function testGetInfoPages(): void
{
self::assertSame($this->object->getInfoPages(), ['Documentation' => 'Documentation']);
}
/**
* Test for getPage
*/
public function testGetPage(): void
{
self::assertSame($this->object->getPage('Documentation'), '<p>'
. sprintf(
__(
'Documentation and further information about PBXT can be found on the %sPrimeBase XT Home Page%s.'
),
'<a href="' . Core::linkURL('https://mariadb.com/kb/en/about-pbxt/')
. '" rel="noopener noreferrer" target="_blank">',
'</a>'
)
. '</p>' . "\n");
self::assertEquals($this->object->getPage('NonExistMethod'), false);
}
}
|