/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/shell/adselection/ |
D | ConsentedDebugShellCommandTest.java | 76 @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 …]
|
D | AdSelectionShellCommandFactoryTest.java | 36 @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/ |
D | ConsentedDebugConfigurationDaoTest.java | 52 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/ |
D | ConsentedDebugConfigurationGeneratorFactoryTest.java | 44 @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/ |
D | ConsentedDebugConfigurationGeneratorFactory.java | 37 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/ |
D | TestShellCommandFactorySupplier.java | 44 private final ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in TestShellCommandFactorySupplier 67 mConsentedDebugConfigurationDao = in TestShellCommandFactorySupplier() 88 mConsentedDebugConfigurationDao, in getAllShellCommandFactories()
|
D | AdServicesShellCommandHandlerTest.java | 88 @Mock private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AdServicesShellCommandHandlerTest 106 mConsentedDebugConfigurationDao, in setup()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/shell/adselection/ |
D | ConsentedDebugShellCommand.java | 125 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/ |
D | FrequencyCapFilteringE2ETest.java | 220 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in FrequencyCapFilteringE2ETest 274 mConsentedDebugConfigurationDao = in setup() 280 false, mConsentedDebugConfigurationDao); in setup()
|
D | ReportAndRegisterEventE2ETest.java | 261 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in ReportAndRegisterEventE2ETest 340 mConsentedDebugConfigurationDao = in setup() 346 false, mConsentedDebugConfigurationDao); in setup()
|
D | AdSelectionFromOutcomesE2ETest.java | 246 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AdSelectionFromOutcomesE2ETest 299 mConsentedDebugConfigurationDao = in setUp() 305 false, mConsentedDebugConfigurationDao); in setUp()
|
D | AuctionServerE2ETest.java | 342 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AuctionServerE2ETest 418 mConsentedDebugConfigurationDao = in setUp() 424 false, mConsentedDebugConfigurationDao); in setUp()
|
D | AdSelectionE2ETest.java | 662 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in AdSelectionE2ETest 717 mConsentedDebugConfigurationDao = in setUp() 723 false, mConsentedDebugConfigurationDao); in setUp()
|
D | AdSelectionServiceImplTest.java | 328 @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/ |
D | KAnonE2ETest.java | 350 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/ |
D | FledgeE2ETest.java | 360 private ConsentedDebugConfigurationDao mConsentedDebugConfigurationDao; field in FledgeE2ETest 417 mConsentedDebugConfigurationDao = in setUp() 423 false, mConsentedDebugConfigurationDao); in setUp()
|