Skip to content
Extraits de code Groupes Projets
Valider 99cb6aea rédigé par sgiehl's avatar sgiehl
Parcourir les fichiers

refs #3227 improved some tests & added some still missing tests

git-svn-id: http://dev.piwik.org/svn/trunk@6819 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent b3349e76
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
<?php
class Test_Piwik_DataTable_Array extends PHPUnit_Framework_TestCase
{
public function setUp()
{
parent::setUp();
Piwik::createConfigObject();
Piwik_Config::getInstance()->setTestEnvironment();
Piwik_DataTable_Manager::getInstance()->deleteAll();
}
private function createTestDataTable()
{
$result = new Piwik_DataTable();
$result->addRowsFromArray(array(
array(Piwik_DataTable_Row::COLUMNS => array('label'=> 'row1', 'col1' => 1)),
array(Piwik_DataTable_Row::COLUMNS => array('label'=> 'row2', 'col1' => 2))
));
return $result;
}
private function createInstanceWithDataTables()
{
$dataTable = new Piwik_DataTable_Array();
$subDataTable1 = $this->createTestDataTable();
$dataTable->addTable($subDataTable1, 'subDataTable1');
$subDataTable2 = $this->createTestDataTable();
$dataTable->addTable($subDataTable2, 'subDataTable2');
return $dataTable;
}
private function createInstanceWithDataTableArrays()
{
$dataTable = new Piwik_DataTable_Array();
$subDataTableArray1 = $this->createInstanceWithDataTables();
$subDataTableArray1->metadata['metadataKey1'] = 'metadataValue1';
$dataTable->addTable($subDataTableArray1, 'subArray1');
$subDataTableArray2 = $this->createInstanceWithDataTables();
$dataTable->addTable($subDataTableArray2, 'subArray2');
return $dataTable;
}
/**
* Tests that Piwik_DataTable_Array::mergeChildren works when the DataTable_Array contains DataTables.
* @group Core
* @group DataTable
* @group DataTable_Array
*/
public function test_MergeChildrenDataTable()
{
$dataTable = $this->createInstanceWithDataTables();
$result = $dataTable->mergeChildren();
// check that the result is a DataTable w/ 4 rows
$this->assertInstanceOf('Piwik_DataTable', $result);
$this->assertEquals(4, $result->getRowsCount());
// check that the first two rows have 'subDataTable1' as the label
$this->mergeChildren_checkRow($result->getRowFromId(0), 'subDataTable1', 1);
$this->mergeChildren_checkRow($result->getRowFromId(1), 'subDataTable1', 2);
// check that the last two rows have 'subDataTable2' as the label
$this->mergeChildren_checkRow($result->getRowFromId(2), 'subDataTable2', 1);
$this->mergeChildren_checkRow($result->getRowFromId(3), 'subDataTable2', 2);
}
private function mergeChildren_checkRow($row, $expectedLabel, $expectedColumnValue)
{
$this->assertEquals($expectedLabel, $row->getColumn('label'));
$this->assertEquals($expectedColumnValue, $row->getColumn('col1'));
}
/**
* Tests that Piwik_DataTable_Array::mergeChildren works when the DataTable_Array contains DataTable_Arrays.
* @group Core
* @group DataTable
* @group DataTable_Array
*/
public function testMergeChildrenDataTableArray()
{
$dataTable = $this->createInstanceWithDataTableArrays();
$result = $dataTable->mergeChildren();
// check that the result is a DataTable_Array w/ two DataTable children
$this->assertInstanceOf('Piwik_DataTable_Array', $result);
$this->assertEquals(2, $result->getRowsCount());
// check that the result has one metadata, 'metadataKey1' => 'metadataValue1'
$this->assertEquals(1, count($result->metadata));
$this->assertEquals('metadataValue1', $result->metadata['metadataKey1']);
// check that the first sub-DataTable is a DataTable with 4 rows
$subDataTable1 = $result->getTable('subDataTable1');
$this->assertTrue($subDataTable1 instanceof Piwik_DataTable);
$this->assertEquals(4, $subDataTable1->getRowsCount());
// check that the first two rows of the first sub-table have 'subArray1' as the label
$this->mergeChildren_checkRow($subDataTable1->getRowFromId(0), 'subArray1', 1);
$this->mergeChildren_checkRow($subDataTable1->getRowFromId(1), 'subArray1', 2);
// check that the last two rows of the first sub-table have 'subArray2' as the label
$this->mergeChildren_checkRow($subDataTable1->getRowFromId(2), 'subArray2', 1);
$this->mergeChildren_checkRow($subDataTable1->getRowFromId(3), 'subArray2', 2);
// check that the second sub-DataTable is a DataTable with 4 rows
$subDataTable2 = $result->getTable('subDataTable2');
$this->assertTrue($subDataTable2 instanceof Piwik_DataTable);
$this->assertEquals(4, $subDataTable2->getRowsCount());
// check that the first two rows of the second sub-table have 'subArray1' as the label
$this->mergeChildren_checkRow($subDataTable2->getRowFromId(0), 'subArray1', 1);
$this->mergeChildren_checkRow($subDataTable2->getRowFromId(1), 'subArray1', 2);
// check that the last two rows of the second sub-table have 'subArray2' as the label
$this->mergeChildren_checkRow($subDataTable2->getRowFromId(2), 'subArray2', 1);
$this->mergeChildren_checkRow($subDataTable2->getRowFromId(3), 'subArray2', 2);
}
}
...@@ -18,16 +18,16 @@ class DataTable_Filter_LimitTest extends PHPUnit_Framework_TestCase ...@@ -18,16 +18,16 @@ class DataTable_Filter_LimitTest extends PHPUnit_Framework_TestCase
$table = new Piwik_DataTable; $table = new Piwik_DataTable;
$idcol = Piwik_DataTable_Row::COLUMNS; $idcol = Piwik_DataTable_Row::COLUMNS;
$rows = array( $rows = array(
array( $idcol => array('label'=>'google', 'idRow' => 0)), array($idcol => array('label'=> 'google', 'idRow' => 0)),
array( $idcol => array('label'=>'ask', 'idRow' => 1)), array($idcol => array('label'=> 'ask', 'idRow' => 1)),
array( $idcol => array('label'=>'piwik', 'idRow' => 2)), array($idcol => array('label'=> 'piwik', 'idRow' => 2)),
array( $idcol => array('label'=>'yahoo', 'idRow' => 3)), array($idcol => array('label'=> 'yahoo', 'idRow' => 3)),
array( $idcol => array('label'=>'amazon', 'idRow' => 4)), array($idcol => array('label'=> 'amazon', 'idRow' => 4)),
array( $idcol => array('label'=>'238949', 'idRow' => 5)), array($idcol => array('label'=> '238949', 'idRow' => 5)),
array( $idcol => array('label'=>'test', 'idRow' => 6)), array($idcol => array('label'=> 'test', 'idRow' => 6)),
array( $idcol => array('label'=>'amazing', 'idRow' => 7)), array($idcol => array('label'=> 'amazing', 'idRow' => 7)),
array( $idcol => array('label'=>'great', 'idRow' => 8)), array($idcol => array('label'=> 'great', 'idRow' => 8)),
Piwik_DataTable::ID_SUMMARY_ROW => array( $idcol => array('label'=>'summary row', 'idRow' => 9)), Piwik_DataTable::ID_SUMMARY_ROW => array($idcol => array('label'=> 'summary row', 'idRow' => 9)),
); );
$table->addRowsFromArray( $rows ); $table->addRowsFromArray( $rows );
return $table; return $table;
......
...@@ -744,7 +744,7 @@ class Period_RangeTest extends PHPUnit_Framework_TestCase ...@@ -744,7 +744,7 @@ class Period_RangeTest extends PHPUnit_Framework_TestCase
Piwik_Date::factory('2011-11-01'), Piwik_Date::factory('2011-11-01'),
Piwik_Date::factory('2011-11-30'), Piwik_Date::factory('2011-11-30'),
Piwik_Date::factory('2011-12-31'), Piwik_Date::factory('2011-12-31'),
Piwik_Date::factory('2012-10-18') Piwik_Date::factory('2021-10-18')
); );
foreach($todays as $today) foreach($todays as $today)
{ {
......
...@@ -44,7 +44,6 @@ class UpdaterTest extends DatabaseTestCase ...@@ -44,7 +44,6 @@ class UpdaterTest extends DatabaseTestCase
$path . '0.1.php' => '0.1' $path . '0.1.php' => '0.1'
); );
$this->assertEquals($expectedInOrder, array_map("basename", $updateFiles)); $this->assertEquals($expectedInOrder, array_map("basename", $updateFiles));
} }
/** /**
......
...@@ -88,11 +88,11 @@ class Test_Piwik_Integration_OneVisitorTwoVisits extends IntegrationTestCase ...@@ -88,11 +88,11 @@ class Test_Piwik_Integration_OneVisitorTwoVisits extends IntegrationTestCase
protected static function trackVisits() protected static function trackVisits()
{ {
$t = self::getTracker(self::$idSite, self::$dateTime, $defaultInit = true);
$dateTime = self::$dateTime; $dateTime = self::$dateTime;
$idSite = self::$idSite; $idSite = self::$idSite;
$t = self::getTracker($idSite, $dateTime, $defaultInit = true);
$t->disableCookieSupport(); $t->disableCookieSupport();
$t->setUrlReferrer('http://referer.com/page.htm?param=valuewith some spaces'); $t->setUrlReferrer('http://referer.com/page.htm?param=valuewith some spaces');
......
...@@ -113,7 +113,7 @@ class Test_Piwik_Integration_TwoVisitors_TwoWebsites_DifferentDays extends Integ ...@@ -113,7 +113,7 @@ class Test_Piwik_Integration_TwoVisitors_TwoWebsites_DifferentDays extends Integ
return 'TwoVisitors_twoWebsites_differentDays'; return 'TwoVisitors_twoWebsites_differentDays';
} }
public static function setUpWebsitesAndGoals() protected static function setUpWebsitesAndGoals()
{ {
// tests run in UTC, the Tracker in UTC // tests run in UTC, the Tracker in UTC
$ecommerce = self::$allowConversions ? 1 : 0; $ecommerce = self::$allowConversions ? 1 : 0;
......
...@@ -45,7 +45,7 @@ class SEOTest extends PHPUnit_Framework_TestCase ...@@ -45,7 +45,7 @@ class SEOTest extends PHPUnit_Framework_TestCase
$ranks = $renderer->render($dataTable); $ranks = $renderer->render($dataTable);
foreach ($ranks as $rank) foreach ($ranks as $rank)
{ {
$this->assertTrue(!empty($rank['rank']), $rank['id'] . ' expected non-zero rank, got [' . $rank['rank'] . ']'); $this->assertNotEmpty($rank['rank'], $rank['id'] . ' expected non-zero rank, got [' . $rank['rank'] . ']');
} }
} }
} }
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter