Home
last modified time | relevance | path

Searched refs:mConsentedDebugConfigurationDao (Results 1 – 16 of 16) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/shell/adselection/
DConsentedDebugShellCommandTest.java76 @Mock private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in ConsentedDebugShellCommandTest
81 new ConsentedDebugShellCommand(mConsentedDebugConfigurationDao), in test_noSubCommand_failure()
91 new ConsentedDebugShellCommand(mConsentedDebugConfigurationDao), in test_unknownSubCommand_failure()
102 .when(mConsentedDebugConfigurationDao) in test_enableConsentedDebugging_success()
109 verify(mConsentedDebugConfigurationDao) in test_enableConsentedDebugging_success()
117 .when(mConsentedDebugConfigurationDao) in test_enableConsentedDebugging_defaultExpiry()
124 verify(mConsentedDebugConfigurationDao) in test_enableConsentedDebugging_defaultExpiry()
132 new ConsentedDebugShellCommand(mConsentedDebugConfigurationDao), in test_enableConsentedDebugging_emptyDebugToken()
141 verify(mConsentedDebugConfigurationDao, never()) in test_enableConsentedDebugging_emptyDebugToken()
149 new ConsentedDebugShellCommand(mConsentedDebugConfigurationDao), in test_enableConsentedDebugging_invalidDebugTokenLength()
[all …]
DAdSelectionShellCommandFactoryTest.java36 @Mock private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AdSelectionShellCommandFactoryTest
48 mConsentedDebugConfigurationDao, in setup()
71 mConsentedDebugConfigurationDao, in test_consentedDebugCmdDisabled()
84 mConsentedDebugConfigurationDao, in test_GetAdSelectionDataCmdDisabled()
115 mConsentedDebugConfigurationDao, in test_invalidCmd_consentedDebugCliDisabled()
128 mConsentedDebugConfigurationDao, in test_getAllCommandsHelp()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/adselection/
DConsentedDebugConfigurationDaoTest.java52 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in ConsentedDebugConfigurationDaoTest
59 mConsentedDebugConfigurationDao = in setup()
67 mConsentedDebugConfigurationDao.persistConsentedDebugConfiguration( in testPersistAdSelectionDebugReporting()
73 mConsentedDebugConfigurationDao.persistConsentedDebugConfiguration( in testGetAllActiveConsentedDebugConfigurations()
77 mConsentedDebugConfigurationDao.getAllActiveConsentedDebugConfigurations( in testGetAllActiveConsentedDebugConfigurations()
109 mConsentedDebugConfigurationDao.persistConsentedDebugConfiguration( in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
111 mConsentedDebugConfigurationDao.persistConsentedDebugConfiguration( in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
115 mConsentedDebugConfigurationDao.getAllActiveConsentedDebugConfigurations( in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
143 mConsentedDebugConfigurationDao.persistConsentedDebugConfiguration( in testGetAllActiveConsentedDebugConfigurations_doesNotFetchExpiredEntries()
147 mConsentedDebugConfigurationDao.getAllActiveConsentedDebugConfigurations( in testGetAllActiveConsentedDebugConfigurations_doesNotFetchExpiredEntries()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/adselection/debug/
DConsentedDebugConfigurationGeneratorFactoryTest.java44 @Mock private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in ConsentedDebugConfigurationGeneratorFactoryTest
68 mConsentedDebugConfigurationDao.getAllActiveConsentedDebugConfigurations( in test_setConsentedDebugConfiguration_success()
79 Mockito.verify(mConsentedDebugConfigurationDao) in test_setConsentedDebugConfiguration_success()
88 mConsentedDebugConfigurationDao.getAllActiveConsentedDebugConfigurations( in testSetConsentedDebugConfiguration_doesNotPopulateWhenNoEntryInDatabase()
98 Mockito.verify(mConsentedDebugConfigurationDao) in testSetConsentedDebugConfiguration_doesNotPopulateWhenNoEntryInDatabase()
107 mConsentedDebugConfigurationDao.getAllActiveConsentedDebugConfigurations( in testSetConsentedDebugConfiguration_doesNotPopulateWhenListIsNull()
117 Mockito.verify(mConsentedDebugConfigurationDao) in testSetConsentedDebugConfiguration_doesNotPopulateWhenListIsNull()
130 Mockito.verify(mConsentedDebugConfigurationDao, Mockito.never()) in testSetConsentedDebugConfiguration_doesNotPopulateWhenDisabled()
139 consent, mConsentedDebugConfigurationDao); in getConsentedDebugConfigurationGenerator()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/adselection/debug/
DConsentedDebugConfigurationGeneratorFactory.java37 private final ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in ConsentedDebugConfigurationGeneratorFactory
48 mConsentedDebugConfigurationDao = consentedDebugConfigurationDao; in ConsentedDebugConfigurationGeneratorFactory()
58 mConsentedDebugConfigurationDao.getAllActiveConsentedDebugConfigurations( in create()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/shell/
DTestShellCommandFactorySupplier.java44 private final ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in TestShellCommandFactorySupplier
67 mConsentedDebugConfigurationDao = in TestShellCommandFactorySupplier()
88 mConsentedDebugConfigurationDao, in getAllShellCommandFactories()
DAdServicesShellCommandHandlerTest.java88 @Mock private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AdServicesShellCommandHandlerTest
106 mConsentedDebugConfigurationDao, in setup()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/shell/adselection/
DConsentedDebugShellCommand.java125 private final ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in ConsentedDebugShellCommand
129 mConsentedDebugConfigurationDao = Objects.requireNonNull(consentedDebugConfigurationDao); in ConsentedDebugShellCommand()
229 mConsentedDebugConfigurationDao.deleteExistingConsentedDebugConfigurationsAndPersist( in runEnableSubCommand()
250 mConsentedDebugConfigurationDao.deleteAllConsentedDebugConfigurations(); in runDisableSubCommand()
271 mConsentedDebugConfigurationDao.getAllActiveConsentedDebugConfigurations( in runViewSubCommand()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/adselection/
DFrequencyCapFilteringE2ETest.java220 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in FrequencyCapFilteringE2ETest
274 mConsentedDebugConfigurationDao = in setup()
280 false, mConsentedDebugConfigurationDao); in setup()
DReportAndRegisterEventE2ETest.java261 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in ReportAndRegisterEventE2ETest
340 mConsentedDebugConfigurationDao = in setup()
346 false, mConsentedDebugConfigurationDao); in setup()
DAdSelectionFromOutcomesE2ETest.java246 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AdSelectionFromOutcomesE2ETest
299 mConsentedDebugConfigurationDao = in setUp()
305 false, mConsentedDebugConfigurationDao); in setUp()
DAuctionServerE2ETest.java342 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AuctionServerE2ETest
418 mConsentedDebugConfigurationDao = in setUp()
424 false, mConsentedDebugConfigurationDao); in setUp()
DAdSelectionE2ETest.java662 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AdSelectionE2ETest
717 mConsentedDebugConfigurationDao = in setUp()
723 false, mConsentedDebugConfigurationDao); in setUp()
DAdSelectionServiceImplTest.java328 @Mock private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AdSelectionServiceImplTest
436 false, mConsentedDebugConfigurationDao); in setUp()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/kanon/
DKAnonE2ETest.java350 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in KAnonE2ETest
453 mConsentedDebugConfigurationDao = in setUp()
459 false, mConsentedDebugConfigurationDao); in setUp()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/common/
DFledgeE2ETest.java360 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in FledgeE2ETest
417 mConsentedDebugConfigurationDao = in setUp()
423 false, mConsentedDebugConfigurationDao); in setUp()