mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 19:13:26 +00:00
33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class report_sqlTest extends \report_abstractReportTestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$report = $this->getMock('module_report', [], [], '', false);
|
|
$report->expects($this->any())
|
|
->method('getSbasId')
|
|
->will($this->returnValue(self::$DI['collection']->get_databox()->get_sbas_id()));
|
|
$this->sql = new module_report_sql(self::$DI['app'], $report);
|
|
}
|
|
|
|
public function testSql()
|
|
{
|
|
$sqlFilter = $this->getMock('module_report_sqlfilter', ['getCorFilter'], [], '', false);
|
|
$sqlFilter->expects($this->any())->method('getCorFilter')->will($this->onConsecutiveCalls([], ['hello' => 'world']));
|
|
$this->sql->setFilter($sqlFilter);
|
|
$this->assertEquals('hello', $this->sql->getTransQuery('hello'));
|
|
$this->assertEquals('world', $this->sql->getTransQuery('hello'));
|
|
$this->sql->setGroupby('test');
|
|
$this->assertEquals('test', $this->sql->getGroupBy());
|
|
$this->sql->setOn('on');
|
|
$this->assertEquals('on', $this->sql->getOn());
|
|
}
|
|
}
|