/**
  * Test publisher daily statistics.
  *
  */
 function testGetPublisherDailyStatistics()
 {
     $doAgency = OA_Dal::factoryDO('agency');
     $doPublisher = OA_Dal::factoryDO('affiliates');
     $doZone = OA_Dal::factoryDO('zones');
     $this->generateZoneWithParents($doAgency, $doPublisher, $doZone);
     $doDataSummaryAdHourly = OA_Dal::factoryDO('data_summary_ad_hourly');
     $doDataSummaryAdHourly->impressions = 1;
     $doDataSummaryAdHourly->requests = 2;
     $doDataSummaryAdHourly->total_revenue = 3;
     $doDataSummaryAdHourly->clicks = 4;
     $doDataSummaryAdHourly->date_time = '2007-08-20';
     $this->generateDataSummaryAdHourlyForZone($doDataSummaryAdHourly, $doZone);
     // 1. Get data existing range
     $aData = $this->_dalPublisherStatistics->getPublisherDailyStatistics($doPublisher->affiliateid, new Date('2007-08-20'), new Date('2007-08-20'));
     $this->assertEqual(count($aData), 1, 'Some records should be returned');
     $aRow = current($aData);
     // 2. Check return fields names
     $this->assertFieldExists($aRow, 'day');
     $this->assertFieldExists($aRow, 'requests');
     $this->assertFieldExists($aRow, 'impressions');
     $this->assertFieldExists($aRow, 'clicks');
     $this->assertFieldExists($aRow, 'revenue');
     // 3. Check return fields value
     $this->assertFieldEqual($aRow, 'impressions', 1);
     $this->assertFieldEqual($aRow, 'requests', 2);
     $this->assertFieldEqual($aRow, 'revenue', 3);
     $this->assertFieldEqual($aRow, 'clicks', 4);
     $this->assertFieldEqual($aRow, 'day', '2007-08-20');
     // 4. Get data in not existing range
     $aData = $this->_dalPublisherStatistics->getPublisherDailyStatistics($doPublisher->affiliateid, new Date('2001-12-01'), new Date('2006-09-19'));
     $this->assertEqual(count($aData), 0, 'Recordset should be empty');
 }
Esempio n. 2
0
 /**
  * This method returns daily statistics for a publisher for a specified period.
  *
  * @access public
  *
  * @param integer $publisherId The ID of the publisher to view statistics for
  * @param date $oStartDate The date from which to get statistics (inclusive)
  * @param date $oEndDate The date to which to get statistics (inclusive)
  * @param bool $localTZ Should stats be using the manager TZ or UTC?
  * @param array &$rsStatisticsData The data returned by the function
  *   <ul>
  *   <li><b>day date</b> The day
  *   <li><b>requests integer</b> The number of requests for the day
  *   <li><b>impressions integer</b> The number of impressions for the day
  *   <li><b>clicks integer</b> The number of clicks for the day
  *   <li><b>revenue decimal</b> The revenue earned for the day
  *   </ul>
  *
  * @return boolean True if the operation was successful and false if not.
  *
  */
 function getPublisherDailyStatistics($publisherId, $oStartDate, $oEndDate, $localTZ, &$rsStatisticsData)
 {
     if (!$this->checkPermissions($this->aAllowTraffickerAndAbovePerm, 'affiliates', $publisherId)) {
         return false;
     }
     if ($this->_validateForStatistics($publisherId, $oStartDate, $oEndDate)) {
         $publisherDal = new OA_Dal_Statistics_Publisher();
         $rsStatisticsData = $publisherDal->getPublisherDailyStatistics($publisherId, $oStartDate, $oEndDate, $localTZ);
         return true;
     } else {
         return false;
     }
 }