Home
last modified time | relevance | path

Searched refs:getCalledPaths (Results 1 – 12 of 12) sorted by relevance

/packages/modules/AdServices/adservices/tests/cts/src/android/adservices/debuggablects/
DAdSelectionReportingTest.java64 assertThat(dispatcher.getCalledPaths()) in testReportImpression_defaultAdSelection_happyPath()
85 assertThat(dispatcher.getCalledPaths()) in testReportImpression_buyerRequestFails_sellerRequestSucceeds()
87 assertThat(dispatcher.getCalledPaths()) in testReportImpression_buyerRequestFails_sellerRequestSucceeds()
113 assertThat(dispatcher.getCalledPaths()) in testReportImpression_buyerLogicTimesOut_reportingFails()
115 assertThat(dispatcher.getCalledPaths()) in testReportImpression_buyerLogicTimesOut_reportingFails()
144 assertThat(dispatcher.getCalledPaths()) in testReportImpression_withMismatchedAdTechUri_sellerRequestFails()
165 assertThat(dispatcher.getCalledPaths()) in testReportImpression_registerBuyerAndSellerBeacons_happyPath()
187 assertThat(dispatcher.getCalledPaths()) in testReportImpression_failToRegisterBuyerBeacon_sellerBeaconSucceeds()
189 assertThat(dispatcher.getCalledPaths()) in testReportImpression_failToRegisterBuyerBeacon_sellerBeaconSucceeds()
211 assertThat(dispatcher.getCalledPaths()) in testReportImpression_failToRegisterSellerBeacon_buyerBeaconSucceeds()
[all …]
DScenarioDispatcherTest.java51 assertThat(dispatcher.getCalledPaths()).containsExactlyElementsIn(List.of("/bidding")); in testScenarioDispatcher_happyPath_httpGetSuccess()
64 assertThat(dispatcher.getCalledPaths()).containsExactlyElementsIn(List.of("/bidding")); in testScenarioDispatcher_withPrefix_httpGetSuccess()
78 assertThat(dispatcher.getCalledPaths()) in testScenarioDispatcher_withVerifyCalled_success()
92 assertThat(dispatcher.getCalledPaths()) in testScenarioDispatcher_withVerifyNotCalled_success()
108 assertThat(dispatcher.getCalledPaths()) in testScenarioDispatcher_withTwoSecondDelay_success()
122 assertThat(dispatcher.getCalledPaths()).containsExactlyElementsIn(List.of("/hello/world")); in testScenarioDispatcher_withMultiplePathSegments_httpGetSuccess()
138 assertThat(dispatcher.getCalledPaths()) in testScenarioDispatcher_withDuplicatePathCalls_doesNotReturnEarly()
160 assertThat(dispatcher.getCalledPaths()) in testScenarioDispatcher_withComplexUrlStructure_success()
176 assertThat(dispatcher.getCalledPaths()).containsExactly(path); in testScenarioDispatcher_withQueryParamPath_success()
193 assertThat(dispatcher.getCalledPaths()).doesNotContain("/seller/reportImpression"); in testScenarioDispatcher_withQueryParamPath_doesNotFallback()
[all …]
DAdSelectionTest.java91 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withBiddingAndScoringLogic_happyPath()
135 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withBiddingLogicV3_happyPath()
166 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withAdCostInUrl_happyPath()
196 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withAdCostInUrl_adCostIsReported()
241 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withFetchCustomAudience_fetchesAndReturnsSuccessfully()
332 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withDebugReporting_happyPath()
359 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withDebugReportingDisabled_doesNotSend()
389 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withDebugReportingAndRejectReason_happyPath()
415 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withHighLatencyBackend_doesNotWinAuction()
447 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withInvalidScoringUrl_doesNotWinAuction()
DAdSelectionMediationTest.java73 assertThat(dispatcher.getCalledPaths()) in testSelectAds_withAdSelectionFromOutcomes_happyPath()
103 assertThat(dispatcher.getCalledPaths()) in testSelectAds_withImpressionReporting_eventsAreReceived()
162 assertThat(dispatcher.getCalledPaths()) in testAdSelectionFromOutcome_buyerMustEnrolledToParticipate()
DFledgeApiCallFromBackgroundTest.java55 Truth.assertThat(mDispatcher.getCalledPaths()).isEmpty(); in teardown()
DCustomAudienceShellCommandsScenarioTest.java104 assertThat(dispatcher.getCalledPaths()) in testRun_refreshCustomAudiences_verifyCustomAudienceChanged()
DSignalsCtsDebuggableTest.java94 assertThat(dispatcher.getCalledPaths()) in testUpdateSignals_success()
/packages/modules/AdServices/adservices/tests/cts/src/android/adservices/rootcts/
DFledgeMaintenanceJobTest.java75 assertThat(dispatcher.getCalledPaths()) in testAdSelection_afterExpirationWindow_adSelectionDataCleared()
77 assertThat(dispatcher.getCalledPaths()) in testAdSelection_afterExpirationWindow_adSelectionDataCleared()
110 assertThat(dispatcher.getCalledPaths()) in testAdSelection_afterExpirationWindow_adInteractionsIsCleared()
112 assertThat(dispatcher.getCalledPaths()) in testAdSelection_afterExpirationWindow_adInteractionsIsCleared()
DCustomAudienceBackgroundFetchTest.java74 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withInvalidFields_backgroundJobUpdatesSuccessfully()
101 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withInvalidAds_backgroundJobUpdateFails()
133 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withHighLatencyBackend_backgroundJobFails()
160 assertThat(dispatcher.getCalledPaths()) in testAdSelection_withOverlyLargeDailyUpdate_backgroundJobFails()
DAdBeaconRegistrationTest.java103 assertThat(mScenarioDispatcher.getCalledPaths()) in runAdSelectionAndReporting()
105 assertThat(mScenarioDispatcher.getCalledPaths()) in runAdSelectionAndReporting()
DScheduleCustomAudienceUpdateTest.java167 assertThat(dispatcher.getCalledPaths()) in testScheduleCustomAudienceUpdate_DownloadedCaWinsAdSelection_success()
/packages/modules/AdServices/adservices/tests/cts/src/android/adservices/utils/
DScenarioDispatcher.java123 public ImmutableSet<String> getCalledPaths() throws InterruptedException { in getCalledPaths() method in ScenarioDispatcher