Bug 1409087 - Part 4: Remove browser JUnit 3 tests and build apparatus for {browser,background}.apk. r=grisha,ted.mielczarek draft
authorNick Alexander <nalexander@mozilla.com>
Thu, 02 Nov 2017 16:03:00 -0700
changeset 694506 2c3289b95b807eb9ab9f8994c54bd7a75fac2e14
parent 694505 1c6e88ac609598b07c9d4db7b5877c581a299193
child 739347 32f283d46fa1662575577e9da1812bcccd8cb940
push id88142
push usernalexander@mozilla.com
push dateTue, 07 Nov 2017 20:56:35 +0000
reviewersgrisha, ted.mielczarek
bugs1409087
milestone58.0a1
Bug 1409087 - Part 4: Remove browser JUnit 3 tests and build apparatus for {browser,background}.apk. r=grisha,ted.mielczarek The browser JUnit 3 test suite has never run in automation, and no test has been added or updated since 2016. Half of the existing "tests" are broken on my local device. This allows to clean several Makefile's related to this undeveloped testing approach, which won't be pursued post-Gradle. MozReview-Commit-ID: 1EbGMLntuyR
mobile/android/app.mozbuild
mobile/android/tests/background/junit3/AndroidManifest.xml.in
mobile/android/tests/background/junit3/Makefile.in
mobile/android/tests/background/junit3/background_junit3_sources.mozbuild
mobile/android/tests/background/junit3/instrumentation.ini
mobile/android/tests/background/junit3/moz.build
mobile/android/tests/background/junit3/res/drawable-hdpi/icon.png
mobile/android/tests/background/junit3/res/drawable-ldpi/icon.png
mobile/android/tests/background/junit3/res/drawable-mdpi/icon.png
mobile/android/tests/background/junit3/res/layout/main.xml
mobile/android/tests/background/junit3/res/values/strings.xml
mobile/android/tests/background/moz.build
mobile/android/tests/browser/junit3/AndroidManifest.xml.in
mobile/android/tests/browser/junit3/Makefile.in
mobile/android/tests/browser/junit3/instrumentation.ini
mobile/android/tests/browser/junit3/moz.build
mobile/android/tests/browser/junit3/res/drawable-hdpi/icon.png
mobile/android/tests/browser/junit3/res/drawable-ldpi/icon.png
mobile/android/tests/browser/junit3/res/drawable-mdpi/icon.png
mobile/android/tests/browser/junit3/res/layout/main.xml
mobile/android/tests/browser/junit3/res/values/strings.xml
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestDistribution.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestGeckoBackgroundThread.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestGeckoMenu.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestGeckoProfilesProvider.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestGeckoSharedPrefs.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestImageDownloader.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestJarReader.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestRawResource.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestSuggestedSites.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/harness/BrowserInstrumentationTestRunner.java
mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/harness/BrowserTestListener.java
mobile/android/tests/browser/moz.build
mobile/android/tests/moz.build
testing/instrumentation/Makefile.in
testing/instrumentation/moz.build
testing/instrumentation/runinstrumentation.py
testing/testsuite-targets.mk
tools/lint/py2.yml
--- a/mobile/android/app.mozbuild
+++ b/mobile/android/app.mozbuild
@@ -1,17 +1,14 @@
 # vim: set filetype=python:
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 include('/toolkit/toolkit.mozbuild')
 
-if CONFIG['ENABLE_TESTS']:
-    DIRS += ['/testing/instrumentation']
-
 if CONFIG['MOZ_EXTENSIONS']:
     DIRS += ['/extensions']
 
 DIRS += [
     '/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
     '/mobile/android',
 ]
deleted file mode 100644
--- a/mobile/android/tests/background/junit3/AndroidManifest.xml.in
+++ /dev/null
@@ -1,23 +0,0 @@
-#filter substitution
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="org.mozilla.gecko.background.tests"
-    sharedUserId="@MOZ_ANDROID_SHARED_ID@"
-    android:versionCode="1"
-    android:versionName="1.0" >
-
-    <uses-sdk android:minSdkVersion="@MOZ_ANDROID_MIN_SDK_VERSION@"
-              android:targetSdkVersion="@ANDROID_TARGET_SDK@" />
-
-    <application
-        android:debuggable="true"
-        android:icon="@drawable/icon"
-        android:label="@ANDROID_BACKGROUND_APP_DISPLAYNAME@">
-        <uses-library android:name="android.test.runner" />
-    </application>
-
-    <instrumentation
-        android:label="@string/app_name"
-        android:name="android.test.InstrumentationTestRunner"
-        android:targetPackage="@ANDROID_BACKGROUND_TARGET_PACKAGE_NAME@" />
-</manifest>
deleted file mode 100644
--- a/mobile/android/tests/background/junit3/Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-ANDROID_EXTRA_JARS := \
-  background-junit3.jar \
-  $(NULL)
-
-ANDROID_MANIFEST_FILE := $(CURDIR)/AndroidManifest.xml
-
-include $(topsrcdir)/config/rules.mk
-
-tools:: $(ANDROID_APK_NAME).apk
deleted file mode 100644
--- a/mobile/android/tests/background/junit3/background_junit3_sources.mozbuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-background_junit3_sources = [
-    'src/org/mozilla/gecko/background/common/TestAndroidLogWriters.java',
-    'src/org/mozilla/gecko/background/common/TestUtils.java',
-    'src/org/mozilla/gecko/background/common/TestWaitHelper.java',
-    'src/org/mozilla/gecko/background/db/TestAndroidBrowserBookmarksRepository.java',
-    'src/org/mozilla/gecko/background/db/TestAndroidBrowserHistoryRepository.java',
-    'src/org/mozilla/gecko/background/db/TestBookmarks.java',
-    'src/org/mozilla/gecko/background/db/TestClientsDatabase.java',
-    'src/org/mozilla/gecko/background/db/TestClientsDatabaseAccessor.java',
-    'src/org/mozilla/gecko/background/db/TestFennecTabsRepositorySession.java',
-    'src/org/mozilla/gecko/background/db/TestFormHistoryRepositorySession.java',
-    'src/org/mozilla/gecko/background/db/TestPasswordsRepository.java',
-    'src/org/mozilla/gecko/background/db/TestTopSites.java',
-    'src/org/mozilla/gecko/background/db/ThreadedRepositoryTestCase.java',
-    'src/org/mozilla/gecko/background/fxa/authenticator/TestAccountPickler.java',
-    'src/org/mozilla/gecko/background/fxa/TestAccountLoader.java',
-    'src/org/mozilla/gecko/background/fxa/TestBrowserIDKeyPairGeneration.java',
-    'src/org/mozilla/gecko/background/helpers/AndroidSyncTestCase.java',
-    'src/org/mozilla/gecko/background/helpers/DBHelpers.java',
-    'src/org/mozilla/gecko/background/helpers/DBProviderTestCase.java',
-    'src/org/mozilla/gecko/background/nativecode/test/TestNativeCrypto.java',
-    'src/org/mozilla/gecko/background/sync/AndroidSyncTestCaseWithAccounts.java',
-    'src/org/mozilla/gecko/background/sync/helpers/BookmarkHelpers.java',
-    'src/org/mozilla/gecko/background/sync/helpers/DefaultBeginDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/DefaultCleanDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/DefaultDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/DefaultFetchDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/DefaultFinishDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/DefaultSessionCreationDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/DefaultStoreDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectBeginDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectBeginFailDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectFetchDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectFetchSinceDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectFinishDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectFinishFailDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectInvalidRequestFetchDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectInvalidTypeStoreDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectManyStoredDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectNoStoreDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectStoreCompletedDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/ExpectStoredDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/HistoryHelpers.java',
-    'src/org/mozilla/gecko/background/sync/helpers/PasswordHelpers.java',
-    'src/org/mozilla/gecko/background/sync/helpers/SessionTestHelper.java',
-    'src/org/mozilla/gecko/background/sync/helpers/SimpleSuccessBeginDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/SimpleSuccessCreationDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/SimpleSuccessFetchDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/SimpleSuccessFinishDelegate.java',
-    'src/org/mozilla/gecko/background/sync/helpers/SimpleSuccessStoreDelegate.java',
-    'src/org/mozilla/gecko/background/sync/TestClientsStage.java',
-    'src/org/mozilla/gecko/background/sync/TestResetting.java',
-    'src/org/mozilla/gecko/background/sync/TestStoreTracking.java',
-    'src/org/mozilla/gecko/background/sync/TestSyncConfiguration.java',
-    'src/org/mozilla/gecko/background/sync/TestWebURLFinder.java',
-    'src/org/mozilla/gecko/background/testhelpers/BaseMockServerSyncStage.java',
-    'src/org/mozilla/gecko/background/testhelpers/CommandHelpers.java',
-    'src/org/mozilla/gecko/background/testhelpers/DefaultGlobalSessionCallback.java',
-    'src/org/mozilla/gecko/background/testhelpers/MockAbstractNonRepositorySyncStage.java',
-    'src/org/mozilla/gecko/background/testhelpers/MockClientsDatabaseAccessor.java',
-    'src/org/mozilla/gecko/background/testhelpers/MockClientsDataDelegate.java',
-    'src/org/mozilla/gecko/background/testhelpers/MockGlobalSession.java',
-    'src/org/mozilla/gecko/background/testhelpers/MockPrefsGlobalSession.java',
-    'src/org/mozilla/gecko/background/testhelpers/MockRecord.java',
-    'src/org/mozilla/gecko/background/testhelpers/MockServerSyncStage.java',
-    'src/org/mozilla/gecko/background/testhelpers/MockSharedPreferences.java',
-    'src/org/mozilla/gecko/background/testhelpers/WaitHelper.java',
-    'src/org/mozilla/gecko/background/testhelpers/WBORepository.java',
-]
deleted file mode 100644
--- a/mobile/android/tests/background/junit3/instrumentation.ini
+++ /dev/null
@@ -1,22 +0,0 @@
-[DEFAULT]
-subsuite = background
-
-[src/org/mozilla/gecko/background/common/TestAndroidLogWriters.java]
-[src/org/mozilla/gecko/background/common/TestUtils.java]
-[src/org/mozilla/gecko/background/common/TestWaitHelper.java]
-[src/org/mozilla/gecko/background/db/TestAndroidBrowserBookmarksRepository.java]
-[src/org/mozilla/gecko/background/db/TestAndroidBrowserHistoryRepository.java]
-[src/org/mozilla/gecko/background/db/TestBookmarks.java]
-[src/org/mozilla/gecko/background/db/TestClientsDatabase.java]
-[src/org/mozilla/gecko/background/db/TestClientsDatabaseAccessor.java]
-[src/org/mozilla/gecko/background/db/TestFennecTabsRepositorySession.java]
-[src/org/mozilla/gecko/background/db/TestFormHistoryRepositorySession.java]
-[src/org/mozilla/gecko/background/db/TestPasswordsRepository.java]
-[src/org/mozilla/gecko/background/fxa/TestBrowserIDKeyPairGeneration.java]
-[src/org/mozilla/gecko/background/fxa/authenticator/TestAccountPickler.java]
-[src/org/mozilla/gecko/background/nativecode/test/TestNativeCrypto.java]
-[src/org/mozilla/gecko/background/sync/TestClientsStage.java]
-[src/org/mozilla/gecko/background/sync/TestResetting.java]
-[src/org/mozilla/gecko/background/sync/TestStoreTracking.java]
-[src/org/mozilla/gecko/background/sync/TestSyncConfiguration.java]
-[src/org/mozilla/gecko/background/sync/TestWebURLFinder.java]
deleted file mode 100644
--- a/mobile/android/tests/background/junit3/moz.build
+++ /dev/null
@@ -1,49 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-for var in ('ANDROID_PACKAGE_NAME',
-            'ANDROID_TARGET_SDK'):
-    DEFINES[var] = CONFIG[var]
-
-for var in ('MOZ_ANDROID_MIN_SDK_VERSION',
-            'MOZ_ANDROID_MAX_SDK_VERSION'):
-    if CONFIG[var]:
-        DEFINES[var] = CONFIG[var]
-
-ANDROID_APK_NAME = 'background-junit3-debug'
-ANDROID_APK_PACKAGE = 'org.mozilla.gecko.background.tests'
-
-include('background_junit3_sources.mozbuild')
-
-jar = add_java_jar('background-junit3')
-jar.sources += background_junit3_sources
-jar.extra_jars += [
-    CONFIG['ANDROID_SUPPORT_V4_AAR_LIB'],
-    CONFIG['ANDROID_RECYCLERVIEW_V7_AAR_LIB'],
-    TOPOBJDIR + '/mobile/android/base/constants.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-R.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-browser.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-mozglue.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-thirdparty.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-util.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-view.jar',
-    TOPOBJDIR + '/mobile/android/base/services.jar',
-    TOPOBJDIR + '/mobile/android/base/sync-thirdparty.jar',
-]
-
-if CONFIG['MOZ_ANDROID_MLS_STUMBLER']:
-    jar.extra_jars += [
-        TOPOBJDIR + '/mobile/android/stumbler/stumbler.jar',
-    ]
-
-ANDROID_INSTRUMENTATION_MANIFESTS += ['instrumentation.ini']
-
-DEFINES['ANDROID_BACKGROUND_TARGET_PACKAGE_NAME'] = CONFIG['ANDROID_PACKAGE_NAME']
-DEFINES['ANDROID_BACKGROUND_APP_DISPLAYNAME'] = '%s Background Tests' % CONFIG['MOZ_APP_DISPLAYNAME']
-DEFINES['MOZ_ANDROID_SHARED_ID'] = CONFIG['MOZ_ANDROID_SHARED_ID']
-OBJDIR_PP_FILES.mobile.android.tests.background.junit3 += [
-    'AndroidManifest.xml.in',
-]
deleted file mode 100644
index e83438eee46e3ecbfe091dfbde1bf83c0deea98e..0000000000000000000000000000000000000000
GIT binary patch
literal 0
Hc$@<O00001
deleted file mode 100644
index 0483c95e99b127006b11edb1c820b532b13b7c09..0000000000000000000000000000000000000000
GIT binary patch
literal 0
Hc$@<O00001
deleted file mode 100644
index 86b4dee5462814d67fba3691ec38a5d5350b0970..0000000000000000000000000000000000000000
GIT binary patch
literal 0
Hc$@<O00001
deleted file mode 100644
--- a/mobile/android/tests/background/junit3/res/layout/main.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="fill_parent"
-    android:layout_height="fill_parent"
-    android:orientation="vertical" >
-
-    <TextView
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:text="@string/app_name" />
-
-</LinearLayout>
deleted file mode 100644
--- a/mobile/android/tests/background/junit3/res/values/strings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-
-    <string name="app_name">Gecko Background Tests</string>
-
-</resources>
deleted file mode 100644
--- a/mobile/android/tests/background/moz.build
+++ /dev/null
@@ -1,12 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-with Files('**'):
-    BUG_COMPONENT = ('Android Background Services', 'Build & Test')
-
-TEST_DIRS += [
-    'junit3',
-]
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/AndroidManifest.xml.in
+++ /dev/null
@@ -1,23 +0,0 @@
-#filter substitution
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="org.mozilla.gecko.browser.tests"
-    sharedUserId="@MOZ_ANDROID_SHARED_ID@"
-    android:versionCode="1"
-    android:versionName="1.0" >
-
-    <uses-sdk android:minSdkVersion="@MOZ_ANDROID_MIN_SDK_VERSION@"
-              android:targetSdkVersion="@ANDROID_TARGET_SDK@" />
-
-    <application
-        android:debuggable="true"
-        android:icon="@drawable/icon"
-        android:label="@ANDROID_BROWSER_APP_DISPLAYNAME@">
-        <uses-library android:name="android.test.runner" />
-    </application>
-
-    <instrumentation
-        android:label="@string/app_name"
-        android:name="org.mozilla.gecko.harness.BrowserInstrumentationTestRunner"
-        android:targetPackage="@ANDROID_BROWSER_TARGET_PACKAGE_NAME@" />
-</manifest>
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-ANDROID_EXTRA_JARS += \
-	browser-junit3.jar \
-  $(NULL)
-
-ANDROID_MANIFEST_FILE := $(CURDIR)/AndroidManifest.xml
-
-include $(topsrcdir)/config/rules.mk
-
-tools:: $(ANDROID_APK_NAME).apk
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/instrumentation.ini
+++ /dev/null
@@ -1,9 +0,0 @@
-[DEFAULT]
-subsuite = browser
-
-[src/org/mozilla/tests/browser/junit3/TestDistribution.java]
-[src/org/mozilla/tests/browser/junit3/TestGeckoSharedPrefs.java]
-[src/org/mozilla/tests/browser/junit3/TestImageDownloader.java]
-[src/org/mozilla/tests/browser/junit3/TestJarReader.java]
-[src/org/mozilla/tests/browser/junit3/TestRawResource.java]
-[src/org/mozilla/tests/browser/junit3/TestSuggestedSites.java]
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/moz.build
+++ /dev/null
@@ -1,65 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-for var in ('ANDROID_PACKAGE_NAME',
-            'ANDROID_TARGET_SDK'):
-    DEFINES[var] = CONFIG[var]
-
-for var in ('MOZ_ANDROID_MIN_SDK_VERSION',
-            'MOZ_ANDROID_MAX_SDK_VERSION'):
-    if CONFIG[var]:
-        DEFINES[var] = CONFIG[var]
-
-ANDROID_APK_NAME = 'browser-junit3-debug'
-ANDROID_APK_PACKAGE = 'org.mozilla.gecko.browser.tests'
-
-jar = add_java_jar('browser-junit3')
-jar.sources += [
-    'src/org/mozilla/tests/browser/junit3/harness/BrowserInstrumentationTestRunner.java',
-    'src/org/mozilla/tests/browser/junit3/harness/BrowserTestListener.java',
-    'src/org/mozilla/tests/browser/junit3/TestDistribution.java',
-    'src/org/mozilla/tests/browser/junit3/TestGeckoBackgroundThread.java',
-    'src/org/mozilla/tests/browser/junit3/TestGeckoMenu.java',
-    'src/org/mozilla/tests/browser/junit3/TestGeckoProfilesProvider.java',
-    'src/org/mozilla/tests/browser/junit3/TestGeckoSharedPrefs.java',
-    'src/org/mozilla/tests/browser/junit3/TestImageDownloader.java',
-    'src/org/mozilla/tests/browser/junit3/TestJarReader.java',
-    'src/org/mozilla/tests/browser/junit3/TestRawResource.java',
-    'src/org/mozilla/tests/browser/junit3/TestSuggestedSites.java',
-]
-jar.generated_sources = [] # None yet -- try to keep it this way.
-# MockResources has been deprecated, so we need -deprecation.  See
-# https://github.com/Countly/countly-sdk-android/blob/ae89490a5646e7db09c855f62b35c861819300cd/sdk/src/androidTest/java/ly/count/android/sdk/DeviceInfoTests.java#L80
-# for a Mockito-based approach.
-jar.javac_flags += ['-Xlint:all,-deprecation']
-
-jar.extra_jars += [
-    CONFIG['ANDROID_SUPPORT_V4_AAR_LIB'],
-    CONFIG['ANDROID_RECYCLERVIEW_V7_AAR_LIB'],
-    TOPOBJDIR + '/mobile/android/base/constants.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-R.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-browser.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-mozglue.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-thirdparty.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-util.jar',
-    TOPOBJDIR + '/mobile/android/base/gecko-view.jar',
-    TOPOBJDIR + '/mobile/android/base/services.jar',
-    TOPOBJDIR + '/mobile/android/base/sync-thirdparty.jar',
-]
-
-if CONFIG['MOZ_ANDROID_MLS_STUMBLER']:
-    jar.extra_jars += [
-        TOPOBJDIR + '/mobile/android/stumbler/stumbler.jar',
-    ]
-
-ANDROID_INSTRUMENTATION_MANIFESTS += ['instrumentation.ini']
-
-DEFINES['ANDROID_BROWSER_TARGET_PACKAGE_NAME'] = CONFIG['ANDROID_PACKAGE_NAME']
-DEFINES['ANDROID_BROWSER_APP_DISPLAYNAME'] = '%s Browser Tests' % CONFIG['MOZ_APP_DISPLAYNAME']
-DEFINES['MOZ_ANDROID_SHARED_ID'] = CONFIG['MOZ_ANDROID_SHARED_ID']
-OBJDIR_PP_FILES.mobile.android.tests.browser.junit3 += [
-    'AndroidManifest.xml.in',
-]
deleted file mode 100644
index e83438eee46e3ecbfe091dfbde1bf83c0deea98e..0000000000000000000000000000000000000000
GIT binary patch
literal 0
Hc$@<O00001
deleted file mode 100644
index 0483c95e99b127006b11edb1c820b532b13b7c09..0000000000000000000000000000000000000000
GIT binary patch
literal 0
Hc$@<O00001
deleted file mode 100644
index 86b4dee5462814d67fba3691ec38a5d5350b0970..0000000000000000000000000000000000000000
GIT binary patch
literal 0
Hc$@<O00001
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/res/layout/main.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="match_parent"
-    android:layout_height="match_parent"
-    android:orientation="vertical" >
-
-    <TextView
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:text="@string/app_name" />
-
-</LinearLayout>
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/res/values/strings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-
-    <string name="app_name">Gecko Browser Tests</string>
-
-</resources>
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestDistribution.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package org.mozilla.tests.browser.junit3;
-
-import android.test.InstrumentationTestCase;
-import org.mozilla.gecko.distribution.ReferrerDescriptor;
-
-public class TestDistribution extends InstrumentationTestCase {
-    private static final String TEST_REFERRER_STRING = "utm_source=campsource&utm_medium=campmed&utm_term=term%2Bhere&utm_content=content&utm_campaign=name";
-    private static final String TEST_MALFORMED_REFERRER_STRING = "utm_source=campsource&utm_medium=campmed&utm_term=term%2";
-
-    public void testReferrerParsing() {
-        ReferrerDescriptor good = new ReferrerDescriptor(TEST_REFERRER_STRING);
-        assertEquals("campsource", good.source);
-        assertEquals("campmed", good.medium);
-        assertEquals("term+here", good.term);
-        assertEquals("content", good.content);
-        assertEquals("name", good.campaign);
-
-        // Uri.Builder is permissive.
-        ReferrerDescriptor bad = new ReferrerDescriptor(TEST_MALFORMED_REFERRER_STRING);
-        assertEquals("campsource", bad.source);
-        assertEquals("campmed", bad.medium);
-        assertFalse("term+here".equals(bad.term));
-        assertNull(bad.content);
-        assertNull(bad.campaign);
-
-        ReferrerDescriptor ugly = new ReferrerDescriptor(null);
-        assertNull(ugly.source);
-        assertNull(ugly.medium);
-        assertNull(ugly.term);
-        assertNull(ugly.content);
-        assertNull(ugly.campaign);
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestGeckoBackgroundThread.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package org.mozilla.tests.browser.junit3;
-
-import android.test.InstrumentationTestCase;
-import org.mozilla.gecko.util.ThreadUtils;
-
-public class TestGeckoBackgroundThread extends InstrumentationTestCase {
-
-    private boolean finishedTest;
-    private boolean ranFirstRunnable;
-
-    public void testGeckoBackgroundThread() throws InterruptedException {
-
-        final Thread testThread = Thread.currentThread();
-
-        ThreadUtils.postToBackgroundThread(new Runnable() {
-            @Override
-            public void run() {
-                // Must *not* be on thread that posted the Runnable.
-                assertFalse(ThreadUtils.isOnThread(testThread));
-
-                // Must be on background thread.
-                assertTrue(ThreadUtils.isOnBackgroundThread());
-
-                ranFirstRunnable = true;
-            }
-        });
-
-        // Post a second Runnable to make sure it still runs on the background thread,
-        // and it only runs after the first Runnable has run.
-        ThreadUtils.postToBackgroundThread(new Runnable() {
-            @Override
-            public void run() {
-                // Must still be on background thread.
-                assertTrue(ThreadUtils.isOnBackgroundThread());
-
-                // This Runnable must be run after the first Runnable had finished.
-                assertTrue(ranFirstRunnable);
-
-                synchronized (TestGeckoBackgroundThread.this) {
-                    finishedTest = true;
-                    TestGeckoBackgroundThread.this.notify();
-                }
-            }
-        });
-
-        synchronized (this) {
-            while (!finishedTest) {
-                wait();
-            }
-        }
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestGeckoMenu.java
+++ /dev/null
@@ -1,72 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package org.mozilla.tests.browser.junit3;
-
-import android.test.InstrumentationTestCase;
-import org.mozilla.gecko.AppConstants;
-import org.mozilla.gecko.menu.GeckoMenu;
-import org.mozilla.gecko.util.ThreadUtils;
-
-public class TestGeckoMenu extends InstrumentationTestCase {
-
-    private volatile Exception exception;
-    private void setException(Exception e) {
-        this.exception = e;
-    }
-
-    public void testMenuThreading() throws InterruptedException {
-        final GeckoMenu menu = new GeckoMenu(getInstrumentation().getTargetContext());
-        final Object semaphore = new Object();
-
-        ThreadUtils.postToUiThread(new Runnable() {
-            @Override
-            public void run() {
-                try {
-                    menu.add("test1");
-                } catch (Exception e) {
-                    setException(e);
-                }
-
-                synchronized (semaphore) {
-                    semaphore.notify();
-                }
-            }
-        });
-        synchronized (semaphore) {
-            semaphore.wait();
-        }
-
-        // No exception thrown if called on UI thread.
-        assertNull(exception);
-
-        new Thread(new Runnable() {
-            @Override
-            public void run() {
-                try {
-                    menu.add("test2");
-                } catch (Exception e) {
-                    setException(e);
-                }
-
-                synchronized (semaphore) {
-                    semaphore.notify();
-                }
-            }
-        }).start();
-
-        synchronized (semaphore) {
-            semaphore.wait();
-        }
-
-        if (AppConstants.RELEASE_OR_BETA) {
-            // No exception thrown: release build.
-            assertNull(exception);
-            return;
-        }
-
-        assertNotNull(exception);
-        assertEquals(exception.getClass(), IllegalThreadStateException.class);
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestGeckoProfilesProvider.java
+++ /dev/null
@@ -1,50 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package org.mozilla.tests.browser.junit3;
-
-import android.content.ContentResolver;
-import android.database.Cursor;
-import android.net.Uri;
-import android.os.RemoteException;
-import android.test.InstrumentationTestCase;
-import org.mozilla.gecko.db.BrowserContract;
-
-import java.io.File;
-import java.util.HashMap;
-import java.util.Map;
-
-public class TestGeckoProfilesProvider extends InstrumentationTestCase {
-    private static final String[] NAME_AND_PATH = new String[] { BrowserContract.Profiles.NAME, BrowserContract.Profiles.PATH };
-
-    /**
-     * Ensure that the default profile is found in the results from the provider.
-     */
-    public void testQueryDefault() throws RemoteException {
-        final ContentResolver contentResolver = getInstrumentation().getContext().getContentResolver();
-        final Uri uri = BrowserContract.PROFILES_AUTHORITY_URI.buildUpon().appendPath("profiles").build();
-        final Cursor c = contentResolver.query(uri, NAME_AND_PATH, null, null, null);
-        assertNotNull(c);
-        try {
-            assertTrue(c.moveToFirst());
-            assertTrue(c.getCount() > 0);
-            Map<String, String> profiles = new HashMap<String, String>();
-            while (!c.isAfterLast()) {
-                final String name = c.getString(0);
-                final String path = c.getString(1);
-                profiles.put(name, path);
-                c.moveToNext();
-            }
-
-            assertTrue(profiles.containsKey("default"));
-            final String path = profiles.get("default");
-            assertTrue(path.endsWith(".default"));          // It's the right profile...
-            assertTrue(path.startsWith("/data/"));          // ... in the 'data' dir...
-            assertTrue(path.contains("/mozilla/"));         // ... in the 'mozilla' dir.
-            assertTrue(new File(path).exists());
-        } finally {
-            c.close();
-        }
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestGeckoSharedPrefs.java
+++ /dev/null
@@ -1,153 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
-   http://creativecommons.org/publicdomain/zero/1.0/ */
-
-package org.mozilla.tests.browser.junit3;
-
-import android.content.Context;
-import android.content.SharedPreferences;
-import android.content.SharedPreferences.Editor;
-import android.preference.PreferenceManager;
-import android.test.InstrumentationTestCase;
-import android.test.RenamingDelegatingContext;
-import org.mozilla.gecko.GeckoProfile;
-import org.mozilla.gecko.GeckoSharedPrefs;
-import org.mozilla.gecko.GeckoSharedPrefs.Flags;
-
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.EnumSet;
-import java.util.HashSet;
-import java.util.Set;
-
-/**
- * Test GeckoSharedPrefs migrations.
- */
-public class TestGeckoSharedPrefs extends InstrumentationTestCase {
-
-    private static class TestContext extends RenamingDelegatingContext {
-        private static final String PREFIX = "TestGeckoSharedPrefs-";
-
-        private final Set<String> usedPrefs;
-
-        public TestContext(Context context) {
-            super(context, PREFIX);
-            usedPrefs = Collections.synchronizedSet(new HashSet<String>());
-        }
-
-        @Override
-        public SharedPreferences getSharedPreferences(String name, int mode) {
-            usedPrefs.add(name);
-            return super.getSharedPreferences(PREFIX + name, mode);
-        }
-
-        public void clearUsedPrefs() {
-            for (String prefsName : usedPrefs) {
-                getSharedPreferences(prefsName, 0).edit().clear().commit();
-            }
-
-            usedPrefs.clear();
-        }
-    }
-
-    private static final EnumSet<Flags> disableMigrations = EnumSet.of(Flags.DISABLE_MIGRATIONS);
-
-    private TestContext context;
-
-    protected void setUp() {
-        context = new TestContext(getInstrumentation().getTargetContext());
-    }
-
-    protected void tearDown() {
-        context.clearUsedPrefs();
-        GeckoSharedPrefs.reset();
-    }
-
-    public void testDisableMigrations() {
-        // Version is 0 before any migration
-        assertEquals(0, GeckoSharedPrefs.getVersion(context));
-
-        // Get prefs with migrations disabled
-        GeckoSharedPrefs.forApp(context, disableMigrations);
-        GeckoSharedPrefs.forProfile(context, disableMigrations);
-        GeckoSharedPrefs.forProfileName(context, "someProfile", disableMigrations);
-
-        // Version should still be 0
-        assertEquals(0, GeckoSharedPrefs.getVersion(context));
-    }
-
-    public void testPrefsVersion() {
-        // Version is 0 before any migration
-        assertEquals(0, GeckoSharedPrefs.getVersion(context));
-
-        // Trigger migration by getting a SharedPreferences instance
-        GeckoSharedPrefs.forApp(context);
-
-        // Version should be current after migration
-        assertEquals(GeckoSharedPrefs.PREFS_VERSION, GeckoSharedPrefs.getVersion(context));
-    }
-
-    public void testMigrateFromPreferenceManager() {
-        SharedPreferences appPrefs = GeckoSharedPrefs.forApp(context, disableMigrations);
-        assertTrue(appPrefs.getAll().isEmpty());
-        final Editor appEditor = appPrefs.edit();
-
-        SharedPreferences profilePrefs = GeckoSharedPrefs.forProfileName(context, GeckoProfile.DEFAULT_PROFILE, disableMigrations);
-        assertTrue(profilePrefs.getAll().isEmpty());
-        final Editor profileEditor = profilePrefs.edit();
-
-        final SharedPreferences pmPrefs = PreferenceManager.getDefaultSharedPreferences(context);
-        assertTrue(pmPrefs.getAll().isEmpty());
-        Editor pmEditor = pmPrefs.edit();
-
-        // Insert a key for each type to exercise the
-        // migration path a bit more thoroughly.
-        pmEditor.putInt("int_key", 23);
-        pmEditor.putLong("long_key", 23L);
-        pmEditor.putString("string_key", "23");
-        pmEditor.putFloat("float_key", 23.3f);
-
-        final String[] profileKeys = {
-            "string_profile",
-            "int_profile"
-        };
-
-        // Insert keys that are expected to be moved to the
-        // PROFILE scope.
-        pmEditor.putString(profileKeys[0], "24");
-        pmEditor.putInt(profileKeys[1], 24);
-
-        // Commit changes to PreferenceManager
-        pmEditor.commit();
-        assertEquals(6, pmPrefs.getAll().size());
-
-        // Perform actual migration with the given editors
-        pmEditor = GeckoSharedPrefs.migrateFromPreferenceManager(context, appEditor,
-                profileEditor, Arrays.asList(profileKeys));
-
-        // Commit changes applied during the migration
-        appEditor.commit();
-        profileEditor.commit();
-        pmEditor.commit();
-
-        // PreferenceManager should have no keys
-        assertTrue(pmPrefs.getAll().isEmpty());
-
-        // App should have all keys except the profile ones
-        assertEquals(4, appPrefs.getAll().size());
-
-        // Ensure app scope doesn't have any of the profile keys
-        for (int i = 0; i < profileKeys.length; i++) {
-            assertFalse(appPrefs.contains(profileKeys[i]));
-        }
-
-        // Check app keys
-        assertEquals(23, appPrefs.getInt("int_key", 0));
-        assertEquals(23L, appPrefs.getLong("long_key", 0L));
-        assertEquals("23", appPrefs.getString("string_key", ""));
-        assertEquals(23.3f, appPrefs.getFloat("float_key", 0));
-
-        assertEquals(2, profilePrefs.getAll().size());
-        assertEquals("24", profilePrefs.getString(profileKeys[0], ""));
-        assertEquals(24, profilePrefs.getInt(profileKeys[1], 0));
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestImageDownloader.java
+++ /dev/null
@@ -1,205 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
-   http://creativecommons.org/publicdomain/zero/1.0/ */
-
-package org.mozilla.tests.browser.junit3;
-
-import android.content.Context;
-import android.content.SharedPreferences;
-import android.content.res.Resources;
-import android.net.Uri;
-import android.test.InstrumentationTestCase;
-import android.test.RenamingDelegatingContext;
-import android.test.mock.MockResources;
-import android.util.DisplayMetrics;
-import org.mozilla.gecko.distribution.Distribution;
-import org.mozilla.gecko.home.ImageLoader.ImageDownloader;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Set;
-
-public class TestImageDownloader extends InstrumentationTestCase {
-    private static class TestContext extends RenamingDelegatingContext {
-        private static final String PREFIX = "TestImageDownloader-";
-
-        private final Resources resources;
-        private final Set<String> usedPrefs;
-
-        public TestContext(Context context) {
-            super(context, PREFIX);
-            resources = new TestResources();
-            usedPrefs = Collections.synchronizedSet(new HashSet<String>());
-        }
-
-        @Override
-        public Resources getResources() {
-            return resources;
-        }
-
-        @Override
-        public SharedPreferences getSharedPreferences(String name, int mode) {
-            usedPrefs.add(name);
-            return super.getSharedPreferences(PREFIX + name, mode);
-        }
-
-        public void clearUsedPrefs() {
-            for (String prefsName : usedPrefs) {
-                getSharedPreferences(prefsName, 0).edit().clear().commit();
-            }
-
-            usedPrefs.clear();
-        }
-    }
-
-    private static class TestResources extends MockResources {
-        private final DisplayMetrics metrics;
-
-        public TestResources() {
-            metrics = new DisplayMetrics();
-        }
-
-        @Override
-        public DisplayMetrics getDisplayMetrics() {
-            return metrics;
-        }
-
-        public void setDensityDpi(int densityDpi) {
-            metrics.densityDpi = densityDpi;
-        }
-    }
-
-    private static class TestDistribution extends Distribution {
-        final List<String> accessedFiles;
-
-        public TestDistribution(Context context) {
-            super(context);
-            accessedFiles = new ArrayList<String>();
-        }
-
-        @Override
-        public File getDistributionFile(String name) {
-            accessedFiles.add(name);
-
-            // Return null to ensure the ImageDownloader will go
-            // through a complete density lookup for each filename.
-            return null;
-        }
-
-        public List<String> getAccessedFiles() {
-            return Collections.unmodifiableList(accessedFiles);
-        }
-
-        public void resetAccessedFiles() {
-            accessedFiles.clear();
-        }
-    }
-
-    private TestContext context;
-    private TestResources resources;
-    private TestDistribution distribution;
-    private ImageDownloader downloader;
-
-    protected void setUp() {
-        context = new TestContext(getInstrumentation().getTargetContext());
-        resources = (TestResources) context.getResources();
-        distribution = new TestDistribution(context);
-        downloader = new ImageDownloader(context, distribution);
-    }
-
-    protected void tearDown() {
-        context.clearUsedPrefs();
-    }
-
-    private void triggerLoad(Uri uri) {
-        try {
-            downloader.load(uri, false);
-        } catch (IOException e) {
-            // Ignore any IO exceptions.
-        }
-    }
-
-    private void checkAccessedFiles(String[] filenames) {
-        List<String> accessedFiles = distribution.getAccessedFiles();
-
-        for (int i = 0; i < filenames.length; i++) {
-            assertEquals(filenames[i], accessedFiles.get(i));
-        }
-    }
-
-    private void checkAccessedFilesForUri(Uri uri, int densityDpi, String[] filenames) {
-        resources.setDensityDpi(densityDpi);
-        triggerLoad(uri);
-        checkAccessedFiles(filenames);
-        distribution.resetAccessedFiles();
-    }
-
-    public void testAccessedFiles() {
-        // Filename only.
-        checkAccessedFilesForUri(Uri.parse("gecko.distribution://file"),
-                                 DisplayMetrics.DENSITY_MEDIUM,
-                                 new String[] {
-                                    "mdpi/file.png",
-                                    "xhdpi/file.png",
-                                    "hdpi/file.png"
-                                 });
-
-        // Directory and filename.
-        checkAccessedFilesForUri(Uri.parse("gecko.distribution://dir/file"),
-                                 DisplayMetrics.DENSITY_MEDIUM,
-                                 new String[] {
-                                    "dir/mdpi/file.png",
-                                    "dir/xhdpi/file.png",
-                                    "dir/hdpi/file.png"
-                                 });
-
-        // Sub-directories and filename.
-        checkAccessedFilesForUri(Uri.parse("gecko.distribution://dir/subdir/file"),
-                                 DisplayMetrics.DENSITY_MEDIUM,
-                                 new String[] {
-                                    "dir/subdir/mdpi/file.png",
-                                    "dir/subdir/xhdpi/file.png",
-                                    "dir/subdir/hdpi/file.png"
-                                 });
-    }
-
-    public void testDensityLookup() {
-        Uri uri = Uri.parse("gecko.distribution://file");
-
-        // Medium density
-        checkAccessedFilesForUri(uri,
-                                 DisplayMetrics.DENSITY_MEDIUM,
-                                 new String[] {
-                                    "mdpi/file.png",
-                                    "xhdpi/file.png",
-                                    "hdpi/file.png"
-                                 });
-
-        checkAccessedFilesForUri(uri,
-                                 DisplayMetrics.DENSITY_HIGH,
-                                 new String[] {
-                                    "hdpi/file.png",
-                                    "xxhdpi/file.png",
-                                    "xhdpi/file.png"
-                                 });
-
-        checkAccessedFilesForUri(uri,
-                                 DisplayMetrics.DENSITY_XHIGH,
-                                 new String[] {
-                                    "xhdpi/file.png",
-                                    "xxhdpi/file.png",
-                                    "mdpi/file.png"
-                                 });
-
-
-        checkAccessedFilesForUri(uri,
-                                 DisplayMetrics.DENSITY_XXHIGH,
-                                 new String[] {
-                                    "xxhdpi/file.png",
-                                    "hdpi/file.png"
-                                 });
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestJarReader.java
+++ /dev/null
@@ -1,124 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
-   http://creativecommons.org/publicdomain/zero/1.0/ */
-
-package org.mozilla.tests.browser.junit3;
-
-import java.io.File;
-import java.io.IOException;
-import java.io.InputStream;
-import java.util.Stack;
-
-import android.test.InstrumentationTestCase;
-import org.mozilla.gecko.AppConstants;
-import org.mozilla.gecko.util.FileUtils;
-import org.mozilla.gecko.util.GeckoJarReader;
-
-import android.content.Context;
-
-/**
- * A basic jar reader test. Tests reading a png from fennec's apk, as well as
- * loading some invalid jar urls.
- */
-public class TestJarReader extends InstrumentationTestCase {
-    public void testJarReader() {
-        final Context context = getInstrumentation().getTargetContext().getApplicationContext();
-        String appPath = getInstrumentation().getTargetContext().getPackageResourcePath();
-        assertNotNull(appPath);
-
-        // Test reading a file from a jar url that looks correct.
-        String url = "jar:file://" + appPath + "!/" + AppConstants.OMNIJAR_NAME;
-        InputStream stream = GeckoJarReader.getStream(context, "jar:" + url + "!/chrome/chrome/content/branding/favicon32.png");
-        assertNotNull(stream);
-
-        // Test looking for an non-existent file in a jar.
-        url = "jar:file://" + appPath + "!/" + AppConstants.OMNIJAR_NAME;
-        stream = GeckoJarReader.getStream(context, "jar:" + url + "!/chrome/chrome/content/branding/nonexistent_file.png");
-        assertNull(stream);
-
-        // Test looking for a file that doesn't exist in the APK.
-        url = "jar:file://" + appPath + "!/" + "BAD" + AppConstants.OMNIJAR_NAME;
-        stream = GeckoJarReader.getStream(context, "jar:" + url + "!/chrome/chrome/content/branding/favicon32.png");
-        assertNull(stream);
-
-        // Test looking for a file that doesn't exist in the APK.
-        // Bug 1174922, prefixed string / length error.
-        url = "jar:file://" + appPath + "!/" + AppConstants.OMNIJAR_NAME + "BAD";
-        stream = GeckoJarReader.getStream(context, "jar:" + url + "!/chrome/chrome/content/branding/favicon32.png");
-        assertNull(stream);
-
-        // Test looking for an jar with an invalid url.
-        url = "jar:file://" + appPath + "!" + "!/" + AppConstants.OMNIJAR_NAME;
-        stream = GeckoJarReader.getStream(context, "jar:" + url + "!/chrome/chrome/content/branding/nonexistent_file.png");
-        assertNull(stream);
-
-        // Test looking for a file that doesn't exist on disk.
-        url = "jar:file://" + appPath + "BAD" + "!/" + AppConstants.OMNIJAR_NAME;
-        stream = GeckoJarReader.getStream(context, "jar:" + url + "!/chrome/chrome/content/branding/favicon32.png");
-        assertNull(stream);
-    }
-
-    protected void assertExtractStream(String url) throws IOException {
-        final File file = GeckoJarReader.extractStream(getInstrumentation().getTargetContext(), url, getInstrumentation().getContext().getCacheDir(), ".test");
-        assertNotNull(file);
-        try {
-            assertTrue(file.getName().endsWith("test"));
-            final String contents = FileUtils.readStringFromFile(file);
-            assertNotNull(contents);
-            assertTrue(contents.length() > 0);
-        } finally {
-            file.delete();
-        }
-    }
-
-    public void testExtractStream() throws IOException {
-        String appPath = getInstrumentation().getTargetContext().getPackageResourcePath();
-        assertNotNull(appPath);
-
-        // We don't have a lot of good files to choose from.  package-name.txt isn't included in Gradle APKs.
-        assertExtractStream("jar:file://" + appPath + "!/resources.arsc");
-
-        final String url = GeckoJarReader.getJarURL(getInstrumentation().getTargetContext(), "chrome.manifest");
-        assertExtractStream(url);
-
-        // Now use an extracted copy of chrome.manifest to test further.
-        final File file = GeckoJarReader.extractStream(getInstrumentation().getTargetContext(), url, getInstrumentation().getContext().getCacheDir(), ".test");
-        assertNotNull(file);
-        try {
-            assertExtractStream("file://" + file.getAbsolutePath()); // file:// URI.
-            assertExtractStream(file.getAbsolutePath()); // Vanilla path.
-        } finally {
-            file.delete();
-        }
-    }
-
-    protected void assertExtractStreamFails(String url) throws IOException {
-        final File file = GeckoJarReader.extractStream(getInstrumentation().getTargetContext(), url, getInstrumentation().getContext().getCacheDir(), ".test");
-        assertNull(file);
-    }
-
-    public void testExtractStreamFailureCases() throws IOException {
-        String appPath = getInstrumentation().getTargetContext().getPackageResourcePath();
-        assertNotNull(appPath);
-
-        // First, a bad APK.
-        assertExtractStreamFails("jar:file://" + appPath + "BAD!/resources.arsc");
-
-        // Second, a bad file in the APK.
-        assertExtractStreamFails("jar:file://" + appPath + "!/BADresources.arsc");
-
-        // Now a bad file in the omnijar.
-        final String badUrl = GeckoJarReader.getJarURL(getInstrumentation().getTargetContext(), "BADchrome.manifest");
-        assertExtractStreamFails(badUrl);
-
-        // Now use an extracted copy of chrome.manifest to test further.
-        final String goodUrl = GeckoJarReader.getJarURL(getInstrumentation().getTargetContext(), "chrome.manifest");
-        final File file = GeckoJarReader.extractStream(getInstrumentation().getTargetContext(), goodUrl, getInstrumentation().getContext().getCacheDir(), ".test");
-        assertNotNull(file);
-        try {
-            assertExtractStreamFails("file://" + file.getAbsolutePath() + "BAD"); // Bad file:// URI.
-            assertExtractStreamFails(file.getAbsolutePath() + "BAD"); //Bad vanilla path.
-        } finally {
-            file.delete();
-        }
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestRawResource.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
-   http://creativecommons.org/publicdomain/zero/1.0/ */
-
-package org.mozilla.tests.browser.junit3;
-
-import android.content.Context;
-import android.content.res.Resources;
-import android.test.InstrumentationTestCase;
-import android.test.mock.MockContext;
-import android.test.mock.MockResources;
-import org.mozilla.gecko.util.RawResource;
-
-import java.io.ByteArrayInputStream;
-import java.io.IOException;
-import java.io.InputStream;
-
-/**
- * Tests whether RawResource.getAsString() produces the right String
- * result after reading the returned raw resource's InputStream.
- */
-public class TestRawResource extends InstrumentationTestCase {
-    private static final int RAW_RESOURCE_ID = 1;
-    private static final String RAW_CONTENTS = "RAW";
-
-    private static class TestContext extends MockContext {
-        private final Resources resources;
-
-        public TestContext() {
-            resources = new TestResources();
-        }
-
-        @Override
-        public Resources getResources() {
-            return resources;
-        }
-    }
-
-    /**
-     * Browser instrumentation tests can't have access to test-only
-     * resources (bug 994135) yet so we mock the access to resources
-     * for now.
-     */
-    private static class TestResources extends MockResources {
-        @Override
-        public InputStream openRawResource(int id) {
-            if (id == RAW_RESOURCE_ID) {
-                return new ByteArrayInputStream(RAW_CONTENTS.getBytes());
-            }
-
-            return null;
-        }
-    }
-
-    public void testGet() {
-        Context context = new TestContext();
-        String result;
-
-        try {
-            result = RawResource.getAsString(context, RAW_RESOURCE_ID);
-        } catch (IOException e) {
-            result = null;
-        }
-
-        assertEquals(RAW_CONTENTS, result);
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/TestSuggestedSites.java
+++ /dev/null
@@ -1,473 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
-   http://creativecommons.org/publicdomain/zero/1.0/ */
-
-package org.mozilla.tests.browser.junit3;
-
-import android.content.ContentResolver;
-import android.content.Context;
-import android.content.SharedPreferences;
-import android.content.res.Resources;
-import android.database.ContentObserver;
-import android.database.Cursor;
-import android.net.Uri;
-import android.os.SystemClock;
-import android.test.InstrumentationTestCase;
-import android.test.RenamingDelegatingContext;
-import android.test.mock.MockResources;
-import org.json.JSONArray;
-import org.json.JSONObject;
-import org.mozilla.gecko.R;
-import org.mozilla.gecko.GeckoSharedPrefs;
-import org.mozilla.gecko.Locales;
-import org.mozilla.gecko.db.BrowserContract;
-import org.mozilla.gecko.db.SuggestedSites;
-import org.mozilla.gecko.distribution.Distribution;
-import org.mozilla.gecko.preferences.GeckoPreferences;
-
-import java.io.ByteArrayInputStream;
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Locale;
-import java.util.Map;
-import java.util.Set;
-import java.util.concurrent.CountDownLatch;
-import java.util.concurrent.TimeUnit;
-
-public class TestSuggestedSites extends InstrumentationTestCase {
-    private static class TestContext extends RenamingDelegatingContext {
-        private static final String PREFIX = "TestSuggestedSites-";
-
-        private final Resources resources;
-        private final Set<String> usedPrefs;
-
-        public TestContext(Context context) {
-            super(context, PREFIX);
-            resources = new TestResources();
-            usedPrefs = Collections.synchronizedSet(new HashSet<String>());
-        }
-
-        @Override
-        public Resources getResources() {
-            return resources;
-        }
-
-        @Override
-        public SharedPreferences getSharedPreferences(String name, int mode) {
-            usedPrefs.add(name);
-            return super.getSharedPreferences(PREFIX + name, mode);
-        }
-
-        public void clearUsedPrefs() {
-            for (String prefsName : usedPrefs) {
-                getSharedPreferences(prefsName, 0).edit().clear().commit();
-            }
-
-            usedPrefs.clear();
-        }
-    }
-
-    private static class TestResources extends MockResources {
-        private String suggestedSites;
-
-        @Override
-        public InputStream openRawResource(int id) {
-            if (id == R.raw.suggestedsites && suggestedSites != null) {
-                return new ByteArrayInputStream(suggestedSites.getBytes());
-            }
-
-            return null;
-        }
-
-        public void setSuggestedSitesResource(String suggestedSites) {
-            this.suggestedSites = suggestedSites;
-        }
-    }
-
-    private static class TestDistribution extends Distribution {
-        private final Map<Locale, File> filesPerLocale;
-
-        public TestDistribution(Context context) {
-            super(context);
-            this.filesPerLocale = new HashMap<Locale, File>();
-        }
-
-        @Override
-        public File getDistributionFile(String name) {
-            for (Locale locale : filesPerLocale.keySet()) {
-                if (name.startsWith("suggestedsites/locales/" + Locales.getLanguageTag(locale))) {
-                    return filesPerLocale.get(locale);
-                }
-            }
-
-            return null;
-        }
-
-        @Override
-        public boolean exists() {
-            return true;
-        }
-
-        public void setFileForLocale(Locale locale, File file) {
-            filesPerLocale.put(locale, file);
-        }
-
-        public void start() {
-            doInit();
-        }
-    }
-
-    class TestObserver extends ContentObserver {
-        private final CountDownLatch changeLatch;
-
-        public TestObserver(CountDownLatch changeLatch) {
-            super(null);
-            this.changeLatch = changeLatch;
-        }
-
-        @Override
-        public void onChange(boolean selfChange) {
-            changeLatch.countDown();
-        }
-    }
-
-    private static final int DEFAULT_LIMIT = 6;
-
-    private static final String DIST_PREFIX = "dist";
-
-    private TestContext context;
-    private TestResources resources;
-    private List<File> tempFiles;
-
-    private String generateSites(int n) {
-        return generateSites(n, "");
-    }
-
-    private String generateSites(int n, String prefix) {
-        JSONArray sites = new JSONArray();
-
-        try {
-            for (int i = 0; i < n; i++) {
-                JSONObject site = new JSONObject();
-                site.put("url", prefix + "url" + i);
-                site.put("title", prefix + "title" + i);
-                site.put("imageurl", prefix + "imageUrl" + i);
-                site.put("bgcolor", prefix + "bgColor" + i);
-
-                sites.put(site);
-            }
-        } catch (Exception e) {
-            return "";
-        }
-
-        return sites.toString();
-    }
-
-    private File createDistSuggestedSitesFile(int n) {
-        FileOutputStream fos = null;
-
-        try {
-            File distFile = File.createTempFile("distrosites", ".json",
-                                                context.getCacheDir());
-
-            fos = new FileOutputStream(distFile);
-            fos.write(generateSites(n, DIST_PREFIX).getBytes());
-
-            return distFile;
-        } catch (IOException e) {
-            fail("Failed to create temp suggested sites file");
-        } finally {
-            if (fos != null) {
-                try {
-                    fos.close();
-                } catch (IOException e) {
-                    // Ignore.
-                }
-            }
-        }
-
-        return null;
-    }
-
-    private void checkCursorCount(String content, int expectedCount) {
-        checkCursorCount(content, expectedCount, DEFAULT_LIMIT);
-    }
-
-    private void checkCursorCount(String content, int expectedCount, int limit) {
-        resources.setSuggestedSitesResource(content);
-        Cursor c = new SuggestedSites(context).get(limit);
-        assertEquals(expectedCount, c.getCount());
-        c.close();
-    }
-
-    protected void setUp() {
-        context = new TestContext(getInstrumentation().getTargetContext());
-        resources = (TestResources) context.getResources();
-        tempFiles = new ArrayList<File>();
-    }
-
-    protected void tearDown() {
-        context.clearUsedPrefs();
-        for (File f : tempFiles) {
-            f.delete();
-        }
-    }
-
-    public void testCount() {
-        // Empty array = empty cursor
-        checkCursorCount(generateSites(0), 0);
-
-        // 2 items = cursor with 2 rows
-        checkCursorCount(generateSites(2), 2);
-
-        // 10 items with lower limit = cursor respects limit
-        checkCursorCount(generateSites(10), 3, 3);
-    }
-
-    public void testEmptyCursor() {
-        // Null resource = empty cursor
-        checkCursorCount(null, 0);
-
-        // Empty string = empty cursor
-        checkCursorCount("", 0);
-
-        // Invalid json string = empty cursor
-        checkCursorCount("{ broken: }", 0);
-    }
-
-    public void testCursorContent() {
-        resources.setSuggestedSitesResource(generateSites(3));
-
-        Cursor c = new SuggestedSites(context).get(DEFAULT_LIMIT);
-        assertEquals(3, c.getCount());
-
-        c.moveToPosition(-1);
-        while (c.moveToNext()) {
-            int position = c.getPosition();
-
-            String url = c.getString(c.getColumnIndexOrThrow(BrowserContract.SuggestedSites.URL));
-            assertEquals("url" + position, url);
-
-            String title = c.getString(c.getColumnIndexOrThrow(BrowserContract.SuggestedSites.TITLE));
-            assertEquals("title" + position, title);
-        }
-
-        c.close();
-    }
-
-    public void testExcludeUrls() {
-        resources.setSuggestedSitesResource(generateSites(6));
-
-        List<String> excludedUrls = new ArrayList<String>(3);
-        excludedUrls.add("url1");
-        excludedUrls.add("url3");
-        excludedUrls.add("url5");
-
-        List<String> includedUrls = new ArrayList<String>(3);
-        includedUrls.add("url0");
-        includedUrls.add("url2");
-        includedUrls.add("url4");
-
-        Cursor c = new SuggestedSites(context).get(DEFAULT_LIMIT, excludedUrls);
-
-        c.moveToPosition(-1);
-        while (c.moveToNext()) {
-            String url = c.getString(c.getColumnIndexOrThrow(BrowserContract.SuggestedSites.URL));
-            assertFalse(excludedUrls.contains(url));
-            assertTrue(includedUrls.contains(url));
-        }
-
-        c.close();
-    }
-
-    public void testHiddenSites() {
-        resources.setSuggestedSitesResource(generateSites(6));
-
-        List<String> visibleUrls = new ArrayList<String>(3);
-        visibleUrls.add("url3");
-        visibleUrls.add("url4");
-        visibleUrls.add("url5");
-
-        List<String> hiddenUrls = new ArrayList<String>(3);
-        hiddenUrls.add("url0");
-        hiddenUrls.add("url1");
-        hiddenUrls.add("url2");
-
-        // Add mocked hidden sites to SharedPreferences.
-        StringBuilder hiddenUrlBuilder = new StringBuilder();
-        for (String s : hiddenUrls) {
-            hiddenUrlBuilder.append(" ");
-            hiddenUrlBuilder.append(Uri.encode(s));
-        }
-
-        final String hiddenPref = hiddenUrlBuilder.toString();
-        GeckoSharedPrefs.forProfile(context).edit()
-                                        .putString(SuggestedSites.PREF_SUGGESTED_SITES_HIDDEN, hiddenPref)
-                                        .commit();
-
-        Cursor c = new SuggestedSites(context).get(DEFAULT_LIMIT);
-        assertEquals(Math.min(3, DEFAULT_LIMIT), c.getCount());
-
-        c.moveToPosition(-1);
-        while (c.moveToNext()) {
-            String url = c.getString(c.getColumnIndexOrThrow(BrowserContract.SuggestedSites.URL));
-            assertFalse(hiddenUrls.contains(url));
-            assertTrue(visibleUrls.contains(url));
-        }
-
-        c.close();
-    }
-
-    public void testImageUrlAndBgColor() {
-        final int count = 3;
-        resources.setSuggestedSitesResource(generateSites(count));
-
-        SuggestedSites suggestedSites = new SuggestedSites(context);
-
-        // Suggested sites hasn't been loaded yet.
-        for (int i = 0; i < count; i++) {
-            String url = "url" + i;
-            assertFalse(suggestedSites.contains(url));
-            assertNull(suggestedSites.getImageUrlForUrl(url));
-            assertNull(suggestedSites.getBackgroundColorForUrl(url));
-        }
-
-        Cursor c = suggestedSites.get(DEFAULT_LIMIT);
-        c.moveToPosition(-1);
-
-        // We should have cached results after the get() call.
-        while (c.moveToNext()) {
-            String url = c.getString(c.getColumnIndexOrThrow(BrowserContract.SuggestedSites.URL));
-            assertTrue(suggestedSites.contains(url));
-            assertEquals("imageUrl" + c.getPosition(),
-                         suggestedSites.getImageUrlForUrl(url));
-            assertEquals("bgColor" + c.getPosition(),
-                         suggestedSites.getBackgroundColorForUrl(url));
-        }
-        c.close();
-
-        // No valid values for unknown URLs.
-        assertFalse(suggestedSites.contains("foo"));
-        assertNull(suggestedSites.getImageUrlForUrl("foo"));
-        assertNull(suggestedSites.getBackgroundColorForUrl("foo"));
-    }
-
-    public void testLocaleChanges() {
-        resources.setSuggestedSitesResource(generateSites(3));
-
-        SuggestedSites suggestedSites = new SuggestedSites(context);
-
-        // Initial load with predefined locale
-        Cursor c = suggestedSites.get(DEFAULT_LIMIT, Locale.UK);
-        assertEquals(3, c.getCount());
-        c.close();
-
-        resources.setSuggestedSitesResource(generateSites(5));
-
-        // Second load with same locale should return same results
-        // even though the contents of the resource have changed.
-        c = suggestedSites.get(DEFAULT_LIMIT, Locale.UK);
-        assertEquals(3, c.getCount());
-        c.close();
-
-        // Changing the locale forces the cached list to be refreshed.
-        c = suggestedSites.get(DEFAULT_LIMIT, Locale.US);
-        assertEquals(5, c.getCount());
-        c.close();
-    }
-
-    public void testDistribution() {
-        final int DIST_COUNT = 2;
-        final int DEFAULT_COUNT = 3;
-
-        File sitesFile = new File(context.getCacheDir(),
-                                  "suggestedsites-" + SystemClock.uptimeMillis() + ".json");
-        tempFiles.add(sitesFile);
-        assertFalse(sitesFile.exists());
-
-        File distFile = createDistSuggestedSitesFile(DIST_COUNT);
-        tempFiles.add(distFile);
-        assertTrue(distFile.exists());
-
-        final CountDownLatch changeLatch = new CountDownLatch(1);
-
-        // Watch for change notifications on suggested sites.
-        ContentResolver cr = context.getContentResolver();
-        ContentObserver observer = new TestObserver(changeLatch);
-        cr.registerContentObserver(BrowserContract.SuggestedSites.CONTENT_URI,
-                false, observer);
-
-        // Init distribution with the mock file.
-        TestDistribution distribution = new TestDistribution(context);
-        distribution.setFileForLocale(Locale.getDefault(), distFile);
-        distribution.start();
-
-        // Init suggested sites with default values.
-        resources.setSuggestedSitesResource(generateSites(DEFAULT_COUNT));
-        SuggestedSites suggestedSites =
-                new SuggestedSites(context, distribution, sitesFile);
-
-        // The initial query will not contain the distribution sites
-        // yet. This will happen asynchronously once the distribution
-        // is installed.
-        Cursor c1 = null;
-        try {
-            c1 = suggestedSites.get(DEFAULT_LIMIT);
-            assertEquals(DEFAULT_COUNT, c1.getCount());
-        } finally {
-            if (c1 != null) {
-                c1.close();
-            }
-        }
-
-        try {
-            assertTrue(changeLatch.await(5, TimeUnit.SECONDS));
-        } catch (InterruptedException ie) {
-            fail("No change notification after fetching distribution file");
-        }
-
-        // Target file should exist after distribution is deployed.
-        assertTrue(sitesFile.exists());
-        cr.unregisterContentObserver(observer);
-
-        Cursor c2 = null;
-        try {
-            c2 = suggestedSites.get(DEFAULT_LIMIT);
-
-            // The next query should contain the distribution contents.
-            assertEquals(DIST_COUNT + DEFAULT_COUNT, c2.getCount());
-
-            // The first items should be from the distribution
-            for (int i = 0; i < DIST_COUNT; i++) {
-                c2.moveToPosition(i);
-
-                String url = c2.getString(c2.getColumnIndexOrThrow(BrowserContract.SuggestedSites.URL));
-                assertEquals(DIST_PREFIX +  "url" + i, url);
-
-                String title = c2.getString(c2.getColumnIndexOrThrow(BrowserContract.SuggestedSites.TITLE));
-                assertEquals(DIST_PREFIX +  "title" + i, title);
-            }
-
-            // The remaining items should be the default ones
-            for (int i = 0; i < c2.getCount() - DIST_COUNT; i++) {
-                c2.moveToPosition(i + DIST_COUNT);
-
-                String url = c2.getString(c2.getColumnIndexOrThrow(BrowserContract.SuggestedSites.URL));
-                assertEquals("url" + i, url);
-
-                String title = c2.getString(c2.getColumnIndexOrThrow(BrowserContract.SuggestedSites.TITLE));
-                assertEquals("title" + i, title);
-            }
-        } finally {
-            if (c2 != null) {
-                c2.close();
-            }
-        }
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/harness/BrowserInstrumentationTestRunner.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
-   http://creativecommons.org/publicdomain/zero/1.0/ */
-
-package org.mozilla.tests.browser.junit3.harness;
-
-import android.os.Bundle;
-import android.test.AndroidTestRunner;
-import android.test.InstrumentationTestRunner;
-import android.util.Log;
-
-/**
- * A test runner that installs a special test listener.
- * <p>
- * In future, this listener will turn JUnit 3 test events into log messages in
- * the format that Mochitest parsers understand.
- */
-public class BrowserInstrumentationTestRunner extends InstrumentationTestRunner {
-    private static final String LOG_TAG = "BInstTestRunner";
-
-    @Override
-    public void onCreate(Bundle arguments) {
-        Log.d(LOG_TAG, "onCreate");
-        super.onCreate(arguments);
-    }
-
-    @Override
-    protected AndroidTestRunner getAndroidTestRunner() {
-        Log.d(LOG_TAG, "getAndroidTestRunner");
-        AndroidTestRunner testRunner = super.getAndroidTestRunner();
-        testRunner.addTestListener(new BrowserTestListener());
-        return testRunner;
-    }
-}
deleted file mode 100644
--- a/mobile/android/tests/browser/junit3/src/org/mozilla/tests/browser/junit3/harness/BrowserTestListener.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
-   http://creativecommons.org/publicdomain/zero/1.0/ */
-
-package org.mozilla.tests.browser.junit3.harness;
-
-import android.util.Log;
-import junit.framework.AssertionFailedError;
-import junit.framework.Test;
-import junit.framework.TestListener;
-
-/**
- * BrowserTestListener turns JUnit 3 test events into log messages in the format
- * that Mochitest parsers understand.
- * <p>
- * The idea is that, on infrastructure, we'll be able to use the same test
- * parsing code for Browser JUnit 3 tests as we do for Robocop tests.
- * <p>
- * In future, that is!
- */
-public class BrowserTestListener implements TestListener {
-    public static final String LOG_TAG = "BTestListener";
-
-    @Override
-    public void startTest(Test test) {
-        Log.d(LOG_TAG, "startTest: " + test);
-    }
-
-    @Override
-    public void endTest(Test test) {
-        Log.d(LOG_TAG, "endTest: " + test);
-    }
-
-    @Override
-    public void addFailure(Test test, AssertionFailedError t) {
-        Log.d(LOG_TAG, "addFailure: " + test);
-    }
-
-    @Override
-    public void addError(Test test, Throwable t) {
-        Log.d(LOG_TAG, "addError: " + test);
-    }
-}
--- a/mobile/android/tests/browser/moz.build
+++ b/mobile/android/tests/browser/moz.build
@@ -5,26 +5,18 @@
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 with Files('**'):
     BUG_COMPONENT = ('Firefox for Android', 'Testing')
 
 with Files('chrome/**'):
     BUG_COMPONENT = ('Firefox for Android', 'Testing')
 
-with Files('junit3/**'):
-    BUG_COMPONENT = ('Firefox for Android', 'Testing')
-
 # Ideally split this up, but testing catches many files
 with Files('robocop/**'):
     BUG_COMPONENT = ('Firefox for Android', 'Testing')
 
 MOCHITEST_CHROME_MANIFESTS += ['chrome/chrome.ini']
 
-if not CONFIG['MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE']:
-    TEST_DIRS += [
-        'junit3',
-    ]
-
 TEST_DIRS += [
     'robocop/roboextender',
     'robocop',
 ]
--- a/mobile/android/tests/moz.build
+++ b/mobile/android/tests/moz.build
@@ -3,18 +3,13 @@
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 # catch all for new files
 with Files('**'):
     BUG_COMPONENT = ('Firefox for Android', 'Testing')
 
-if not CONFIG['MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE']:
-    TEST_DIRS += [
-        'background',
-    ]
-
 TEST_DIRS += [
     'browser',
 ]
 
 ANDROID_INSTRUMENTATION_MANIFESTS += ['browser/robocop/robocop.ini']
deleted file mode 100644
--- a/testing/instrumentation/Makefile.in
+++ /dev/null
@@ -1,25 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-_DEST_DIR = $(DEPTH)/_tests/instrumentation
-PKG_STAGE = $(DIST)/test-stage
-
-include $(topsrcdir)/config/rules.mk
-
-# Fennec and all instrumentation tests need to be signed with the same
-# key, which means release signing them all.
-
-include $(topsrcdir)/config/android-common.mk
-
-stage-package:
-	$(NSINSTALL) -D $(_DEST_DIR)
-ifndef MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE
-	$(call RELEASE_SIGN_ANDROID_APK,\
-		$(DEPTH)/mobile/android/tests/background/junit3/background-junit3-debug-unsigned-unaligned.apk,\
-		$(_DEST_DIR)/background-junit3.apk)
-	$(call RELEASE_SIGN_ANDROID_APK,\
-		$(DEPTH)/mobile/android/tests/browser/junit3/browser-junit3-debug-unsigned-unaligned.apk,\
-		$(_DEST_DIR)/browser-junit3.apk)
-endif
-	@(cd $(DEPTH)/_tests/ && tar $(TAR_CREATE_FLAGS) - instrumentation) | (cd $(PKG_STAGE) && tar -xf -)
deleted file mode 100644
--- a/testing/instrumentation/moz.build
+++ /dev/null
@@ -1,12 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# vim: set filetype=python:
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-TEST_HARNESS_FILES.instrumentation += [
-    'runinstrumentation.py',
-]
-
-with Files("**"):
-    BUG_COMPONENT = ("Firefox for Android", "Testing")
deleted file mode 100644
--- a/testing/instrumentation/runinstrumentation.py
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python
-
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-import sys
-
-if __name__ == "__main__":
-    sys.exit(1)
--- a/testing/testsuite-targets.mk
+++ b/testing/testsuite-targets.mk
@@ -158,17 +158,16 @@ package-tests-$(1): stage-all package-te
 package-tests: package-tests-$(1)
 endef
 
 $(foreach name,$(TEST_PKGS_ZIP),$(eval $(call package_archive,$(name),zip)))
 $(foreach name,$(TEST_PKGS_TARGZ),$(eval $(call package_archive,$(name),tar.gz)))
 
 ifeq ($(MOZ_BUILD_APP),mobile/android)
 stage-all: stage-android
-stage-all: stage-instrumentation-tests
 endif
 
 # Prepare _tests before any of the other staging/packaging steps.
 # make-stage-dir is a prerequisite to all the stage-* targets in testsuite-targets.mk.
 make-stage-dir: install-test-files
 	rm -rf $(PKG_STAGE)
 	$(NSINSTALL) -D $(PKG_STAGE)
 	$(NSINSTALL) -D $(PKG_STAGE)/bin
@@ -242,19 +241,16 @@ else
 endif
 
 stage-steeplechase: make-stage-dir
 	$(NSINSTALL) -D $(PKG_STAGE)/steeplechase/
 	cp -RL $(DEPTH)/_tests/steeplechase $(PKG_STAGE)/steeplechase/tests
 	cp -RL $(DIST)/xpi-stage/specialpowers $(PKG_STAGE)/steeplechase
 	cp -RL $(topsrcdir)/testing/profiles/prefs_general.js $(PKG_STAGE)/steeplechase
 
-stage-instrumentation-tests: make-stage-dir
-	$(MAKE) -C $(DEPTH)/testing/instrumentation stage-package
-
 TEST_EXTENSIONS := \
     specialpowers@mozilla.org.xpi \
 	$(NULL)
 
 stage-extensions: make-stage-dir
 	$(NSINSTALL) -D $(PKG_STAGE)/extensions/
 	@$(foreach ext,$(TEST_EXTENSIONS), cp -RL $(DIST)/xpi-stage/$(ext) $(PKG_STAGE)/extensions;)
 
@@ -276,12 +272,11 @@ check::
   package-tests-common \
   make-stage-dir \
   stage-all \
   stage-config \
   stage-mochitest \
   stage-jstests \
   stage-android \
   stage-steeplechase \
-  stage-instrumentation-tests \
   test-packages-manifest \
   check \
   $(NULL)
--- a/tools/lint/py2.yml
+++ b/tools/lint/py2.yml
@@ -33,17 +33,16 @@ py2:
         - python/mozversioncontrol
         - security
         - services/common/tests/mach_commands.py
         - servo
         - testing/awsy
         - testing/firefox-ui
         - testing/geckodriver
         - testing/gtest
-        - testing/instrumentation/runinstrumentation.py
         - testing/marionette
         - testing/mochitest
         - testing/mozharness
         - testing/remotecppunittests.py
         - testing/runcppunittests.py
         - testing/runtimes
         - testing/tools
         - testing/tps