Ejemplo n.º 1
0
 /**
  * Test agency daily statistics.
  *
  */
 function testGetAgencyDailyStatistics()
 {
     $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->_dalAgencyStatistics->getAgencyDailyStatistics($doAgency->agencyid, 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->_dalAgencyStatistics->getAgencyDailyStatistics($doAgency->agencyid, new Date('2001-12-01'), new Date('2006-09-19'));
     $this->assertEqual(count($aData), 0, 'Recordset should be empty');
 }
Ejemplo n.º 2
0
 /**
  * This method returns daily statistics for an agency for a specified period.
  *
  * @access public
  *
  * @param integer $agencyId The ID of the agency 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 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 getAgencyDailyStatistics($agencyId, $oStartDate, $oEndDate, $localTZ, &$rsStatisticsData)
 {
     if (!$this->checkPermissions(array(OA_ACCOUNT_ADMIN, OA_ACCOUNT_MANAGER), 'agency', $agencyId)) {
         return false;
     }
     if ($this->_validateForStatistics($agencyId, $oStartDate, $oEndDate)) {
         $dalAgency = new OA_Dal_Statistics_Agency();
         $rsStatisticsData = $dalAgency->getAgencyDailyStatistics($agencyId, $oStartDate, $oEndDate, $localTZ);
         return true;
     } else {
         return false;
     }
 }