Bug 1247324 - Disable Switchboard in automation. r=gbrown,mfinkle

MozReview-Commit-ID: ItqHBIEdD0Q
This commit is contained in:
Margaret Leibovic 2016-02-18 12:03:51 -05:00
parent 200d44d356
commit 14eea75795
3 changed files with 40 additions and 1 deletions

View File

@ -86,6 +86,10 @@ class RemoteAutomation(Automation):
# Don't override the user's choice here. See bug 1049688. # Don't override the user's choice here. See bug 1049688.
env.setdefault('MOZ_DISABLE_NONLOCAL_CONNECTIONS', '1') env.setdefault('MOZ_DISABLE_NONLOCAL_CONNECTIONS', '1')
# Disable Switchboard by default. This will prevent nonlocal
# network connections to the Switchboard server.
env.setdefault('MOZ_DISABLE_SWITCHBOARD', '1')
# Set WebRTC logging in case it is not set yet. # Set WebRTC logging in case it is not set yet.
# On Android, environment variables cannot contain ',' so the # On Android, environment variables cannot contain ',' so the
# standard WebRTC setting for NSPR_LOG_MODULES is not available. # standard WebRTC setting for NSPR_LOG_MODULES is not available.

View File

@ -587,7 +587,7 @@ public class BrowserApp extends GeckoApp
final Context appContext = getApplicationContext(); final Context appContext = getApplicationContext();
if (AppConstants.MOZ_SWITCHBOARD) { if (!Experiments.isDisabled(new SafeIntent(intent)) && AppConstants.MOZ_SWITCHBOARD) {
// Initializes the default URLs the first time. // Initializes the default URLs the first time.
SwitchBoard.initDefaultServerUrls("https://switchboard.services.mozilla.com/urls", "https://switchboard.services.mozilla.com/v1", true); SwitchBoard.initDefaultServerUrls("https://switchboard.services.mozilla.com/urls", "https://switchboard.services.mozilla.com/v1", true);

View File

@ -4,11 +4,16 @@
package org.mozilla.gecko.util; package org.mozilla.gecko.util;
import android.util.Log;
import org.mozilla.gecko.mozglue.ContextUtils.SafeIntent;
/** /**
* This class should reflect the experiment names found in the Switchboard experiments config here: * This class should reflect the experiment names found in the Switchboard experiments config here:
* https://github.com/mozilla-services/switchboard-experiments * https://github.com/mozilla-services/switchboard-experiments
*/ */
public class Experiments { public class Experiments {
private static final String LOGTAG = "GeckoExperiments";
// Display History and Bookmarks in 3-dot menu. // Display History and Bookmarks in 3-dot menu.
public static final String BOOKMARKS_HISTORY_MENU = "bookmark-history-menu"; public static final String BOOKMARKS_HISTORY_MENU = "bookmark-history-menu";
@ -20,4 +25,34 @@ public class Experiments {
// Show search mode (instead of home panels) when tapping on urlbar if there is a search term in the urlbar. // Show search mode (instead of home panels) when tapping on urlbar if there is a search term in the urlbar.
public static final String SEARCH_TERM = "search-term"; public static final String SEARCH_TERM = "search-term";
private static volatile Boolean disabled = null;
/**
* Determines whether Switchboard is disabled by the MOZ_DISABLE_SWITCHBOARD
* environment variable. We need to read this value from the intent string
* extra because environment variables from our test harness aren't set
* until Gecko is loaded, and we need to know this before then.
*
* @param intent Main intent that launched the app
* @return Whether Switchboard is disabled
*/
public static boolean isDisabled(SafeIntent intent) {
if (disabled != null) {
return disabled;
}
String env = intent.getStringExtra("env0");
for (int i = 1; env != null; i++) {
if (env.startsWith("MOZ_DISABLE_SWITCHBOARD=")) {
if (!env.endsWith("=")) {
Log.d(LOGTAG, "Switchboard disabled by MOZ_DISABLE_SWITCHBOARD environment variable");
disabled = true;
return disabled;
}
}
env = intent.getStringExtra("env" + i);
}
disabled = false;
return disabled;
}
} }