Bug 1364146: Only reset the prefs dirty flag when we save to the default prefs file, not on a save to another file. r=bsmedberg

MozReview-Commit-ID: ITskObzuTTb

--HG--
extra : rebase_source : 20ae4d707b6a517ee7741dd5dcb7867bc2059db2
This commit is contained in:
Milan Sreckovic 2017-05-16 13:10:40 -04:00
Родитель 67c8a43439
Коммит 62671480ab
2 изменённых файлов: 29 добавлений и 10 удалений

Просмотреть файл

@ -971,6 +971,11 @@ Preferences::ReadAndOwnUserPrefFile(nsIFile *aFile)
nsresult
Preferences::SavePrefFileInternal(nsIFile *aFile)
{
// We allow different behavior here when aFile argument is not null,
// but it happens to be the same as the current file. It is not
// clear that we should, but it does give us a "force" save on the
// unmodified pref file (see the original bug 160377 when we added this.)
if (nullptr == aFile) {
// the mDirty flag tells us if we should write to mCurrentFile
// we only check this flag when the caller wants to write to the default
@ -980,9 +985,14 @@ Preferences::SavePrefFileInternal(nsIFile *aFile)
// It's possible that we never got a prefs file.
nsresult rv = NS_OK;
if (mCurrentFile)
if (mCurrentFile) {
rv = WritePrefFile(mCurrentFile);
}
// If we succeeded writing to mCurrentFile, reset the dirty flag
if (NS_SUCCEEDED(rv)) {
mDirty = false;
}
return rv;
} else {
return WritePrefFile(aFile);
@ -1045,8 +1055,6 @@ Preferences::WritePrefFile(nsIFile* aFile)
return rv;
}
}
mDirty = false;
return NS_OK;
}

Просмотреть файл

@ -20,15 +20,26 @@ function run_test() {
let prefFile = do_get_profile();
prefFile.append("prefs.js");
// dirty flag only applies to the default pref file save, not all of them,
// so we need to set the default pref file first. Chances are, the file
// does not exist, but we don't need it to - we just want to set the
// name/location to match
//
try {
ps.readUserPrefs(prefFile);
} catch (e) {
// we're fine if the file isn't there
}
//**************************************************************************//
// prefs are not dirty after a write
ps.savePrefFile(prefFile);
ps.savePrefFile(null);
do_check_false(ps.dirty);
// set a new a user value, we should become dirty
userBranch.setBoolPref("DirtyTest.new.bool", true);
do_check_true(ps.dirty);
ps.savePrefFile(prefFile);
ps.savePrefFile(null);
// Overwrite a pref with the same value => not dirty
userBranch.setBoolPref("DirtyTest.new.bool", true);
do_check_false(ps.dirty);
@ -36,14 +47,14 @@ function run_test() {
// Repeat for the other two types
userBranch.setIntPref("DirtyTest.new.int", 1);
do_check_true(ps.dirty);
ps.savePrefFile(prefFile);
ps.savePrefFile(null);
// Overwrite a pref with the same value => not dirty
userBranch.setIntPref("DirtyTest.new.int", 1);
do_check_false(ps.dirty);
userBranch.setCharPref("DirtyTest.new.char", "oop");
do_check_true(ps.dirty);
ps.savePrefFile(prefFile);
ps.savePrefFile(null);
// Overwrite a pref with the same value => not dirty
userBranch.setCharPref("DirtyTest.new.char", "oop");
do_check_false(ps.dirty);
@ -51,7 +62,7 @@ function run_test() {
// change *type* of a user value -> dirty
userBranch.setBoolPref("DirtyTest.new.char", false);
do_check_true(ps.dirty);
ps.savePrefFile(prefFile);
ps.savePrefFile(null);
// Set a default pref => not dirty (defaults don't go into prefs.js)
defaultBranch.setBoolPref("DirtyTest.existing.bool", true);
@ -67,9 +78,9 @@ function run_test() {
// User value different from default, dirty
userBranch.setBoolPref("DirtyTest.existing.bool", false);
do_check_true(ps.dirty);
ps.savePrefFile(prefFile);
ps.savePrefFile(null);
// Back to default value, dirty again
userBranch.setBoolPref("DirtyTest.existing.bool", true);
do_check_true(ps.dirty);
ps.savePrefFile(prefFile);
ps.savePrefFile(null);
}