Add FLEDGE and consent overrides for CTS endtoends

Test: atest AServicesEndToEndTests
Change-Id: I7a00cce96e2dae011e5fe18b0c27dad73ae9edf3
diff --git a/adservices/tests/endtoends/AndroidTest.xml b/adservices/tests/endtoends/AndroidTest.xml
index d3034d8..fec52d4 100644
--- a/adservices/tests/endtoends/AndroidTest.xml
+++ b/adservices/tests/endtoends/AndroidTest.xml
@@ -23,15 +23,34 @@
     </target_preparer>
 
     <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
-        <!-- Disable global_kill_switch to ignore the effect of actual PH values. -->
+        <!-- Disable kill switches to ignore the effect of actual PH values. -->
         <option name="run-command" value="device_config put adservices global_kill_switch false" />
-        <!-- Disable measurement_kill_switch to ignore the effect of actual PH values. -->
+        <option name="run-command"
+                value="device_config put adservices fledge_select_ads_kill_switch false" />
+        <option name="run-command"
+                value="device_config put adservices fledge_custom_audience_service_kill_switch false" />
         <option name="run-command"
                 value="device_config put adservices measurement_kill_switch false" />
+
+        <!-- Override Consent Manager to debug mode to grant user consent -->
+        <option name="run-command"
+                value="setprop debug.adservices.consent_manager_debug_mode true" />
+        <option name="teardown-command"
+                value="setprop debug.adservices.consent_manager_debug_mode false"/>
+
+        <!-- Increase the allowed API queries per second -->
+        <option name="run-command"
+                value="setprop debug.adservices.sdk_request_permits_per_second 1000" />
+        <option name="teardown-command"
+                value="setprop debug.adservices.sdk_request_permits_per_second 1" />
+
+        <!-- Temporarily disable Device Config sync -->
+        <option name="run-command" value="device_config set_sync_disabled_for_tests persistent" />
+        <option name="teardown-command" value="device_config set_sync_disabled_for_tests none" />
     </target_preparer>
 
     <test class="com.android.tradefed.testtype.AndroidJUnitTest">
         <option name="hidden-api-checks" value="false" /> <!-- Allow hidden API uses -->
         <option name="package" value="com.android.adservices.endtoendtest"/>
     </test>
-</configuration>
\ No newline at end of file
+</configuration>