Files
dokuwiki-plugin-struct/_test/QueryBuilderOtherTest.php
Andreas Gohr 8fed17f342 clean up for the tests
This mostly corrects file and class names for PSR-2. Function names have
not been adjusted yet
2023-04-05 11:09:51 +02:00

66 lines
1.6 KiB
PHP

<?php
namespace dokuwiki\plugin\struct\test;
use dokuwiki\plugin\struct\meta\StructException;
use dokuwiki\plugin\struct\test\mock\QueryBuilder;
/**
* @group plugin_struct
* @group plugins
*/
class QueryBuilderOtherTest extends StructTest
{
/**
* @noinspection SqlDialectInspection
* @noinspection SqlNoDataSourceInspection
*/
public function test_order_by()
{
$qb = new QueryBuilder();
$qb->addTable('first', 'T1');
$qb->addOrderBy('Q.foo');
$expectedSQL = '
SELECT FROM first AS T1 WHERE ORDER BY Q.foo
';
list($actual_sql, $actual_opts) = $qb->getSQL();
$this->assertEquals($this->cleanWS($expectedSQL), $this->cleanWS($actual_sql));
$this->assertEquals(array(), $actual_opts);
}
/**
* @noinspection SqlDialectInspection
* @noinspection SqlNoDataSourceInspection
*/
public function test_group_by()
{
$qb = new QueryBuilder();
$qb->addTable('first', 'T1');
$qb->addGroupByColumn('T1', 'foo');
$qb->addGroupByStatement('T2.bar');
$expectedSQL = '
SELECT FROM first AS T1 WHERE GROUP BY T1.foo, T2.bar
';
list($actual_sql, $actual_opts) = $qb->getSQL();
$this->assertEquals($this->cleanWS($expectedSQL), $this->cleanWS($actual_sql));
$this->assertEquals(array(), $actual_opts);
}
public function test_groupby_missing_alias()
{
$this->expectException(StructException::class);
$qb = new QueryBuilder();
$qb->addTable('first', 'T1');
$qb->addGroupByColumn('T2', 'foo');
}
}