260 lines
6.8 KiB
PHP
260 lines
6.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests;
|
|
|
|
use PhpMyAdmin\BrowseForeigners;
|
|
use PhpMyAdmin\Template;
|
|
|
|
/**
|
|
* @covers \PhpMyAdmin\BrowseForeigners
|
|
*/
|
|
class BrowseForeignersTest extends AbstractTestCase
|
|
{
|
|
/** @var BrowseForeigners */
|
|
private $browseForeigners;
|
|
|
|
/**
|
|
* Setup for test cases
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
parent::setTheme();
|
|
$GLOBALS['cfg']['LimitChars'] = 50;
|
|
$GLOBALS['cfg']['MaxRows'] = 25;
|
|
$GLOBALS['cfg']['RepeatCells'] = 100;
|
|
$GLOBALS['cfg']['ShowAll'] = false;
|
|
$this->browseForeigners = new BrowseForeigners(new Template());
|
|
}
|
|
|
|
/**
|
|
* Test for BrowseForeigners::getForeignLimit
|
|
*/
|
|
public function testGetForeignLimit(): void
|
|
{
|
|
$this->assertNull(
|
|
$this->browseForeigners->getForeignLimit('Show all')
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'LIMIT 0, 25 ',
|
|
$this->browseForeigners->getForeignLimit(null)
|
|
);
|
|
|
|
$_POST['pos'] = 10;
|
|
|
|
$this->assertEquals(
|
|
'LIMIT 10, 25 ',
|
|
$this->browseForeigners->getForeignLimit(null)
|
|
);
|
|
|
|
$GLOBALS['cfg']['MaxRows'] = 50;
|
|
$browseForeigners = new BrowseForeigners(new Template());
|
|
|
|
$this->assertEquals(
|
|
'LIMIT 10, 50 ',
|
|
$browseForeigners->getForeignLimit(null)
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'LIMIT 10, 50 ',
|
|
$browseForeigners->getForeignLimit('xyz')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for BrowseForeigners::getHtmlForGotoPage
|
|
*/
|
|
public function testGetHtmlForGotoPage(): void
|
|
{
|
|
$this->assertEquals(
|
|
'',
|
|
$this->callFunction(
|
|
$this->browseForeigners,
|
|
BrowseForeigners::class,
|
|
'getHtmlForGotoPage',
|
|
[null]
|
|
)
|
|
);
|
|
|
|
$_POST['pos'] = 15;
|
|
$foreignData = [];
|
|
$foreignData['disp_row'] = [];
|
|
$foreignData['the_total'] = 5;
|
|
|
|
$this->assertEquals(
|
|
'',
|
|
$this->callFunction(
|
|
$this->browseForeigners,
|
|
BrowseForeigners::class,
|
|
'getHtmlForGotoPage',
|
|
[$foreignData]
|
|
)
|
|
);
|
|
|
|
$foreignData['the_total'] = 30;
|
|
$result = $this->callFunction(
|
|
$this->browseForeigners,
|
|
BrowseForeigners::class,
|
|
'getHtmlForGotoPage',
|
|
[$foreignData]
|
|
);
|
|
|
|
$this->assertStringStartsWith(
|
|
'Page number:',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringEndsWith(
|
|
'</select>',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<select class="pageselector ajax" name="pos"',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<option selected="selected" '
|
|
. 'style="font-weight: bold" value="0">',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<option value="25"',
|
|
$result
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for BrowseForeigners::getDescriptionAndTitle
|
|
*/
|
|
public function testGetDescriptionAndTitle(): void
|
|
{
|
|
$desc = 'foobar<baz';
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'foobar<baz',
|
|
'',
|
|
],
|
|
$this->callFunction(
|
|
$this->browseForeigners,
|
|
BrowseForeigners::class,
|
|
'getDescriptionAndTitle',
|
|
[$desc]
|
|
)
|
|
);
|
|
|
|
$GLOBALS['cfg']['LimitChars'] = 5;
|
|
$browseForeigners = new BrowseForeigners(new Template());
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'fooba...',
|
|
'foobar<baz',
|
|
],
|
|
$this->callFunction(
|
|
$browseForeigners,
|
|
BrowseForeigners::class,
|
|
'getDescriptionAndTitle',
|
|
[$desc]
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test for BrowseForeigners::getHtmlForRelationalFieldSelection
|
|
*/
|
|
public function testGetHtmlForRelationalFieldSelection(): void
|
|
{
|
|
$db = '';
|
|
$table = '';
|
|
$field = 'foo';
|
|
$foreignData = [];
|
|
$foreignData['disp_row'] = '';
|
|
$fieldkey = 'bar';
|
|
$current_value = '';
|
|
$_POST['rownumber'] = 1;
|
|
$_POST['foreign_filter'] = '5';
|
|
$result = $this->browseForeigners->getHtmlForRelationalFieldSelection(
|
|
$db,
|
|
$table,
|
|
$field,
|
|
$foreignData,
|
|
$fieldkey,
|
|
$current_value
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<form class="ajax" '
|
|
. 'id="browse_foreign_form" name="browse_foreign_from" '
|
|
. 'action="index.php?route=/browse-foreigners',
|
|
$result
|
|
);
|
|
$this->assertStringContainsString(
|
|
'" method="post">',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString('<fieldset class="row g-3 align-items-center mb-3">', $result);
|
|
|
|
$this->assertStringContainsString(
|
|
'<input type="hidden" name="field" value="foo">',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<input type="hidden" name="fieldkey" value="bar">',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<input type="hidden" name="rownumber" value="1">',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString('<div class="col-auto">', $result);
|
|
$this->assertStringContainsString('<label class="form-label" for="input_foreign_filter">', $result);
|
|
$this->assertStringContainsString(
|
|
'<input class="form-control" type="text" name="foreign_filter" '
|
|
. 'id="input_foreign_filter" value="5" data-old="5">',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<input class="btn btn-primary" type="submit" name="submit_foreign_filter" value="Go">',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<table class="table table-light table-striped table-hover" id="browse_foreign_table">',
|
|
$result
|
|
);
|
|
|
|
$foreignData['disp_row'] = [];
|
|
$foreignData['the_total'] = 5;
|
|
$result = $this->browseForeigners->getHtmlForRelationalFieldSelection(
|
|
$db,
|
|
$table,
|
|
$field,
|
|
$foreignData,
|
|
$fieldkey,
|
|
$current_value
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<table class="table table-light table-striped table-hover" id="browse_foreign_table">',
|
|
$result
|
|
);
|
|
|
|
$this->assertStringContainsString(
|
|
'<th>',
|
|
$result
|
|
);
|
|
}
|
|
}
|