Home
last modified time | relevance | path

Searched refs:getDebugReport (Results 1 – 8 of 8) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/reporting/
DDebugReportingJobHandlerTest.java140 when(mMeasurementDao.getDebugReport(debugReport.getId())).thenReturn(debugReport); in testSendDebugReportForSuccess()
166 when(mMeasurementDao.getDebugReport(debugReport.getId())).thenReturn(debugReport); in testSendDebugReportForFailure()
196 when(mMeasurementDao.getDebugReport(debugReport1.getId())).thenReturn(debugReport1); in testPerformScheduledReportsForMultipleReports()
197 when(mMeasurementDao.getDebugReport(debugReport2.getId())).thenReturn(debugReport2); in testPerformScheduledReportsForMultipleReports()
227 when(mMeasurementDao.getDebugReport(debugReport1.getId())).thenReturn(debugReport1); in testPerformScheduledReports_ThreadInterrupted()
228 when(mMeasurementDao.getDebugReport(debugReport2.getId())).thenReturn(debugReport2); in testPerformScheduledReports_ThreadInterrupted()
259 when(mMeasurementDao.getDebugReport(debugReport1.getId())).thenReturn(debugReport1); in testPerformScheduledReports_LogZeroRetryCount()
297 when(mMeasurementDao.getDebugReport(debugReport1.getId())).thenReturn(null); in testPerformScheduledReports_LogReportNotFound()
325 when(mMeasurementDao.getDebugReport(debugReport.getId())).thenReturn(debugReport); in performReport_throwsIOException_logsReportingStatus()
352 doReturn(debugReport).when(mMeasurementDao).getDebugReport(debugReport.getId()); in performReport_throwsJsonDisabledToThrow_logsAndSwallowsException()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/adselection/
DAdsScoreGeneratorImplTest.java779 assertEquals(winUri, scoringOutcome.get(0).getDebugReport().getWinDebugReportUri()); in testRunAdScoringSuccess_withDebugReportingEnabled()
780 assertEquals(lossUri, scoringOutcome.get(0).getDebugReport().getLossDebugReportUri()); in testRunAdScoringSuccess_withDebugReportingEnabled()
782 sellerRejectReason, scoringOutcome.get(0).getDebugReport().getSellerRejectReason()); in testRunAdScoringSuccess_withDebugReportingEnabled()
783 assertEquals(winUri, scoringOutcome.get(1).getDebugReport().getWinDebugReportUri()); in testRunAdScoringSuccess_withDebugReportingEnabled()
784 assertEquals(lossUri, scoringOutcome.get(1).getDebugReport().getLossDebugReportUri()); in testRunAdScoringSuccess_withDebugReportingEnabled()
786 sellerRejectReason, scoringOutcome.get(1).getDebugReport().getSellerRejectReason()); in testRunAdScoringSuccess_withDebugReportingEnabled()
1047 scoringOutcome.get(0).getDebugReport().getWinDebugReportUri()); in testRunAdScoringContextual_withDebugReportingEnabled_Success()
1050 scoringOutcome.get(0).getDebugReport().getLossDebugReportUri()); in testRunAdScoringContextual_withDebugReportingEnabled_Success()
1051 assertEquals("invalid-bid", scoringOutcome.get(0).getDebugReport().getSellerRejectReason()); in testRunAdScoringContextual_withDebugReportingEnabled_Success()
1054 scoringOutcome.get(1).getDebugReport().getWinDebugReportUri()); in testRunAdScoringContextual_withDebugReportingEnabled_Success()
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/adselection/
DAdBiddingOutcome.java45 public abstract DebugReport getDebugReport(); in getDebugReport() method in AdBiddingOutcome
DAdScoringOutcome.java49 public abstract DebugReport getDebugReport(); in getDebugReport() method in AdScoringOutcome
DOnDeviceAdSelectionRunner.java488 .map(AdBiddingOutcome::getDebugReport) in runAdScoring()
516 if (mDebugReporting.isEnabled() && Objects.nonNull(adScoringOutcome.getDebugReport())) { in getWinningOutcomeAndContext()
517 debugReports.add(adScoringOutcome.getDebugReport()); in getWinningOutcomeAndContext()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/
DDebugReportingJobHandler.java140 (dao) -> dao.getDebugReport(debugReportId)); in performReport()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DIMeasurementDao.java350 DebugReport getDebugReport(String debugReportId) throws DatastoreException; in getDebugReport() method
DMeasurementDao.java642 public DebugReport getDebugReport(String debugReportId) throws DatastoreException { in getDebugReport() method in MeasurementDao