зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1249150 - Remove FakeProfileTestCase. r=nalexander
MozReview-Commit-ID: Ksz68WSJLyy --HG-- extra : rebase_source : bb0e798a7f3aab0171c8a082639df27442eda5c8
This commit is contained in:
Родитель
3da8b862f8
Коммит
b3316867ca
|
@ -28,7 +28,6 @@ background_junit3_sources = [
|
|||
'src/org/mozilla/gecko/background/helpers/BackgroundServiceTestCase.java',
|
||||
'src/org/mozilla/gecko/background/helpers/DBHelpers.java',
|
||||
'src/org/mozilla/gecko/background/helpers/DBProviderTestCase.java',
|
||||
'src/org/mozilla/gecko/background/helpers/FakeProfileTestCase.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',
|
||||
|
|
|
@ -1,61 +0,0 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
package org.mozilla.gecko.background.helpers;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
import android.test.ActivityInstrumentationTestCase2;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.mozilla.gecko.background.common.GlobalConstants;
|
||||
|
||||
import org.mozilla.gecko.background.common.TestUtils;
|
||||
|
||||
public abstract class FakeProfileTestCase extends ActivityInstrumentationTestCase2<Activity> {
|
||||
|
||||
protected Context context;
|
||||
protected File fakeProfileDirectory;
|
||||
private String sharedPrefsName;
|
||||
|
||||
public FakeProfileTestCase() {
|
||||
super(Activity.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the profile cache suffix. This is computed once for each test function (in setUp()).
|
||||
* Note that the return value is not cached.
|
||||
*/
|
||||
protected String getCacheSuffix() {
|
||||
return this.getClass().getName() + "-" + System.currentTimeMillis();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setUp() throws Exception {
|
||||
super.setUp();
|
||||
context = getInstrumentation().getTargetContext();
|
||||
File cache = context.getCacheDir();
|
||||
fakeProfileDirectory = new File(cache.getAbsolutePath() + getCacheSuffix());
|
||||
if (fakeProfileDirectory.exists()) {
|
||||
TestUtils.deleteDirectoryRecursively(fakeProfileDirectory);
|
||||
}
|
||||
if (!fakeProfileDirectory.mkdir()) {
|
||||
throw new IllegalStateException("Could not create temporary directory.");
|
||||
}
|
||||
// Class name of the form: ActivityInstrumentationTestCase2$FakeProfileTestCase$extendingClass.
|
||||
sharedPrefsName = this.getClass().getName() + "-" + UUID.randomUUID();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void tearDown() throws Exception {
|
||||
TestUtils.deleteDirectoryRecursively(fakeProfileDirectory);
|
||||
super.tearDown();
|
||||
}
|
||||
|
||||
public SharedPreferences getSharedPreferences() {
|
||||
return context.getSharedPreferences(sharedPrefsName, GlobalConstants.SHARED_PREFERENCES_MODE);
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче