Home
last modified time | relevance | path

Searched refs:DBConsentedDebugConfiguration (Results 1 – 9 of 9) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/adselection/
DConsentedDebugConfigurationDaoTest.java49 private static final DBConsentedDebugConfiguration DB_CONSENTED_DEBUG_CONFIGURATION =
50 DBConsentedDebugConfiguration.create(
76 List<DBConsentedDebugConfiguration> consentedDebugConfigurations = in testGetAllActiveConsentedDebugConfigurations()
83 DBConsentedDebugConfiguration actualConsentedDebugConfiguration = in testGetAllActiveConsentedDebugConfigurations()
95 DBConsentedDebugConfiguration dbConsentedDebugConfigurationCreatedNow = in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
96 DBConsentedDebugConfiguration.create( in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
102 DBConsentedDebugConfiguration dbConsentedDebugConfigurationCreatedOneHourLater = in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
103 DBConsentedDebugConfiguration.create( in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
114 List<DBConsentedDebugConfiguration> consentedDebugConfigurations = in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
121 DBConsentedDebugConfiguration actualConsentedDebugConfiguration = in testGetAllActiveConsentedDebugConfigurations_fetchesRecentlyCreated()
[all …]
DDBConsentedDebugConfigurationTest.java44 DBConsentedDebugConfiguration dbConsentedDebugConfiguration = in test_create_success()
45 DBConsentedDebugConfiguration.create( in test_create_success()
51 DBConsentedDebugConfiguration expected = in test_create_success()
52 DBConsentedDebugConfiguration.builder() in test_create_success()
64 DBConsentedDebugConfiguration dbConsentedDebugConfiguration = in test_create_primaryKeyNull()
65 DBConsentedDebugConfiguration.create( in test_create_primaryKeyNull()
67 DBConsentedDebugConfiguration expected = in test_create_primaryKeyNull()
68 DBConsentedDebugConfiguration.builder() in test_create_primaryKeyNull()
81 DBConsentedDebugConfiguration dbConsentedDebugConfiguration = in test_create_debugTokenEmpty()
82 DBConsentedDebugConfiguration.create( in test_create_debugTokenEmpty()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/shell/adselection/
DConsentedDebugShellCommandTest.java53 import com.android.adservices.data.adselection.DBConsentedDebugConfiguration;
104 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_success()
111 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_success()
119 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_defaultExpiry()
126 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_defaultExpiry()
143 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_emptyDebugToken()
162 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_invalidDebugTokenLength()
181 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_invalidExpiry()
200 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_expiryGreaterThan30Days()
219 any(DBConsentedDebugConfiguration.class)); in test_enableConsentedDebugging_invalidArgs()
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/adselection/
DDBConsentedDebugConfiguration.java35 tableName = DBConsentedDebugConfiguration.TABLE_NAME,
37 public abstract class DBConsentedDebugConfiguration { class
73 public static DBConsentedDebugConfiguration.Builder builder() { in builder()
81 public static DBConsentedDebugConfiguration create( in create()
135 public abstract DBConsentedDebugConfiguration build(); in build()
DConsentedDebugConfigurationDao.java43 @NonNull DBConsentedDebugConfiguration dbConsentedDebugConfiguration); in persistConsentedDebugConfiguration()
60 public abstract List<DBConsentedDebugConfiguration> getAllActiveConsentedDebugConfigurations( in getAllActiveConsentedDebugConfigurations()
76 @NonNull DBConsentedDebugConfiguration dbConsentedDebugConfiguration) { in deleteExistingConsentedDebugConfigurationsAndPersist()
DAdSelectionDatabase.java45 DBConsentedDebugConfiguration.class
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/adselection/debug/
DConsentedDebugConfigurationGeneratorFactory.java22 import com.android.adservices.data.adselection.DBConsentedDebugConfiguration;
57 List<DBConsentedDebugConfiguration> dbConsentedDebugConfigurationList = in create()
62 DBConsentedDebugConfiguration dbConsentedDebugConfiguration = in create()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/shell/adselection/
DConsentedDebugShellCommand.java34 import com.android.adservices.data.adselection.DBConsentedDebugConfiguration;
223 DBConsentedDebugConfiguration dbConsentedDebugConfiguration = in runEnableSubCommand()
224 DBConsentedDebugConfiguration.builder() in runEnableSubCommand()
270 List<DBConsentedDebugConfiguration> consentedDebugConfigurations = in runViewSubCommand()
293 private String convertToJson(DBConsentedDebugConfiguration consentedDebugConfiguration) in convertToJson()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/adselection/debug/
DConsentedDebugConfigurationGeneratorFactoryTest.java23 import com.android.adservices.data.adselection.DBConsentedDebugConfiguration;
58 DBConsentedDebugConfiguration dbConsentedDebugConfiguration = in test_setConsentedDebugConfiguration_success()
59 DBConsentedDebugConfiguration.create( in test_setConsentedDebugConfiguration_success()