Exemplo n.º 1
0
 /**
  * Test advertiser daily statistics.
  *
  */
 function testGetAdvertiserDailyStatistics()
 {
     $doAgency = OA_Dal::factoryDO('agency');
     $doAdvertiser = OA_Dal::factoryDO('clients');
     $doCampaign = OA_Dal::factoryDO('campaigns');
     $doBanner = OA_Dal::factoryDO('banners');
     $this->generateBannerWithParents($doAgency, $doAdvertiser, $doCampaign, $doBanner);
     $doDataSummaryAdHourly = OA_Dal::factoryDO('data_summary_ad_hourly');
     $doDataSummaryAdHourly->requests = 20;
     $doDataSummaryAdHourly->date_time = '2007-08-20';
     $this->generateDataSummaryAdHourlyForBanner($doDataSummaryAdHourly, $doBanner);
     // 1. Get data existing range
     $aData = $this->_dalAdvertiserStatistics->getAdvertiserDailyStatistics($doAdvertiser->clientid, new Date('2001-12-01'), new Date('2007-09-19'));
     $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, 'requests', 20);
     // 4. Get data in not existing range
     $aData = $this->_dalAdvertiserStatistics->getAdvertiserDailyStatistics($doAdvertiser->clientid, new Date('2001-12-01'), new Date('2006-09-19'));
     $this->assertEqual(count($aData), 0, 'Recordset should be empty');
 }
Exemplo n.º 2
0
 /**
  * This method returns daily statistics for an advertiser for a specified period.
  *
  * @access public
  *
  * @param integer $advertiserId The ID of the advertiser to view the 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 getAdvertiserDailyStatistics($advertiserId, $oStartDate, $oEndDate, $localTZ, &$rsStatisticsData)
 {
     if (!$this->checkStatisticsPermissions($advertiserId)) {
         return false;
     }
     if ($this->_validateForStatistics($advertiserId, $oStartDate, $oEndDate)) {
         $dalAdvertiser = new OA_Dal_Statistics_Advertiser();
         $rsStatisticsData = $dalAdvertiser->getAdvertiserDailyStatistics($advertiserId, $oStartDate, $oEndDate, $localTZ);
         return true;
     } else {
         return false;
     }
 }