Skip to content
Extraits de code Groupes Projets
Valider 09196f61 rédigé par mattab's avatar mattab
Parcourir les fichiers

Added unit test for $limit parameter

parent d84fbf32
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -126,7 +126,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -126,7 +126,7 @@ class SegmentTest extends IntegrationTestCase
$this->assertEquals(32, strlen($segment->getHash())); $this->assertEquals(32, strlen($segment->getHash()));
} }
public function testGetSelectQueryNoJoin() public function test_getSelectQuery_whenNoJoin()
{ {
$select = '*'; $select = '*';
$from = 'log_visit'; $from = 'log_visit';
...@@ -153,7 +153,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -153,7 +153,7 @@ class SegmentTest extends IntegrationTestCase
$this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query)); $this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query));
} }
public function testGetSelectQueryJoinVisitOnAction() public function test_getSelectQuery_whenJoinVisitOnAction()
{ {
$select = '*'; $select = '*';
$from = 'log_link_visit_action'; $from = 'log_link_visit_action';
...@@ -181,7 +181,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -181,7 +181,7 @@ class SegmentTest extends IntegrationTestCase
$this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query)); $this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query));
} }
public function testGetSelectQueryJoinActionOnVisit() public function test_getSelectQuery_whenJoinActionOnVisit()
{ {
$select = 'sum(log_visit.visit_total_actions) as nb_actions, max(log_visit.visit_total_actions) as max_actions, sum(log_visit.visit_total_time) as sum_visit_length'; $select = 'sum(log_visit.visit_total_actions) as nb_actions, max(log_visit.visit_total_actions) as max_actions, sum(log_visit.visit_total_time) as sum_visit_length';
$from = 'log_visit'; $from = 'log_visit';
...@@ -217,7 +217,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -217,7 +217,7 @@ class SegmentTest extends IntegrationTestCase
$this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query)); $this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query));
} }
public function testGetSelectQueryJoinConversionOnAction() public function test_getSelectQuery_whenJoinConversionOnAction()
{ {
$select = '*'; $select = '*';
$from = 'log_link_visit_action'; $from = 'log_link_visit_action';
...@@ -245,7 +245,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -245,7 +245,7 @@ class SegmentTest extends IntegrationTestCase
$this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query)); $this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query));
} }
public function testGetSelectQueryJoinActionOnConversion() public function test_getSelectQuery_whenJoinActionOnConversion()
{ {
$select = '*'; $select = '*';
$from = 'log_conversion'; $from = 'log_conversion';
...@@ -273,7 +273,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -273,7 +273,7 @@ class SegmentTest extends IntegrationTestCase
$this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query)); $this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query));
} }
public function testGetSelectQueryJoinConversionOnVisit() public function test_getSelectQuery_whenJoinConversionOnVisit()
{ {
$select = 'log_visit.*'; $select = 'log_visit.*';
$from = 'log_visit'; $from = 'log_visit';
...@@ -308,7 +308,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -308,7 +308,7 @@ class SegmentTest extends IntegrationTestCase
$this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query)); $this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query));
} }
public function testGetSelectQueryConversionOnly() public function test_getSelectQuery_whenJoinConversionOnly()
{ {
$select = 'log_conversion.*'; $select = 'log_conversion.*';
$from = 'log_conversion'; $from = 'log_conversion';
...@@ -335,7 +335,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -335,7 +335,7 @@ class SegmentTest extends IntegrationTestCase
$this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query)); $this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query));
} }
public function testGetSelectQueryJoinVisitOnConversion() public function test_getSelectQuery_whenJoinVisitOnConversion()
{ {
$select = '*'; $select = '*';
$from = 'log_conversion'; $from = 'log_conversion';
...@@ -367,7 +367,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -367,7 +367,7 @@ class SegmentTest extends IntegrationTestCase
* visit is joined on action, then conversion is joined * visit is joined on action, then conversion is joined
* make sure that conversion is joined on action not visit * make sure that conversion is joined on action not visit
*/ */
public function testGetSelectQueryJoinVisitAndConversionOnAction() public function test_getSelectQuery_whenJoinVisitAndConversionOnAction()
{ {
$select = '*'; $select = '*';
$from = 'log_link_visit_action'; $from = 'log_link_visit_action';
...@@ -398,7 +398,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -398,7 +398,7 @@ class SegmentTest extends IntegrationTestCase
* join conversion on visit, then actions * join conversion on visit, then actions
* make sure actions are joined before conversions * make sure actions are joined before conversions
*/ */
public function testGetSelectQueryJoinConversionAndActionOnVisit() public function test_getSelectQuery_whenJoinConversionAndActionOnVisit()
{ {
$select = 'log_visit.*'; $select = 'log_visit.*';
$from = 'log_visit'; $from = 'log_visit';
...@@ -433,7 +433,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -433,7 +433,7 @@ class SegmentTest extends IntegrationTestCase
} }
/** /**
* Dataprovider for testBogusSegmentThrowsException * Dataprovider for test_bogusSegment_shouldThrowException
*/ */
public function getBogusSegments() public function getBogusSegments()
{ {
...@@ -447,7 +447,7 @@ class SegmentTest extends IntegrationTestCase ...@@ -447,7 +447,7 @@ class SegmentTest extends IntegrationTestCase
/** /**
* @dataProvider getBogusSegments * @dataProvider getBogusSegments
*/ */
public function testBogusSegmentThrowsException($segment) public function test_bogusSegment_shouldThrowException($segment)
{ {
try { try {
new Segment($segment, $idSites = array()); new Segment($segment, $idSites = array());
...@@ -456,4 +456,46 @@ class SegmentTest extends IntegrationTestCase ...@@ -456,4 +456,46 @@ class SegmentTest extends IntegrationTestCase
} }
$this->fail('Expected exception not raised'); $this->fail('Expected exception not raised');
} }
public function test_getSelectQuery_whenLimit_innerQueryShouldHaveLimit()
{
$select = 'sum(log_visit.visit_total_time) as sum_visit_length';
$from = 'log_visit';
$where = 'log_visit.idvisit = ?';
$bind = array(1);
$segment = 'customVariablePageName1==Test';
$segment = new Segment($segment, $idSites = array());
$orderBy = false;
$groupBy = false;
$limit = 33;
$query = $segment->getSelectQuery($select, $from, $where, $bind, $orderBy, $groupBy, $limit);
$expected = array(
"sql" => "
SELECT
sum(log_visit.visit_total_time) as sum_visit_length
FROM
(
SELECT
log_visit.visit_total_time
FROM
" . Common::prefixTable('log_visit') . " AS log_visit
LEFT JOIN " . Common::prefixTable('log_link_visit_action') . " AS log_link_visit_action ON log_link_visit_action.idvisit = log_visit.idvisit
WHERE
( log_visit.idvisit = ? )
AND
( log_link_visit_action.custom_var_k1 = ? )
GROUP BY log_visit.idvisit
ORDER BY NULL
LIMIT 33
) AS log_inner
LIMIT 33",
"bind" => array(1, 'Test'));
$this->assertEquals($this->_filterWhitsSpaces($expected), $this->_filterWhitsSpaces($query));
}
} }
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