2008-08-19 23:39:09 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is sessionstore test code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Simon Bünzli <zeniko@gmail.com>.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2008
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
function test() {
|
|
|
|
/** Test for Bug 448741 **/
|
2010-02-06 00:47:42 -08:00
|
|
|
|
2008-08-19 23:39:09 -07:00
|
|
|
waitForExplicitFinish();
|
2010-02-06 00:47:42 -08:00
|
|
|
|
2008-08-19 23:39:09 -07:00
|
|
|
let uniqueName = "bug 448741";
|
2011-04-13 06:35:06 -07:00
|
|
|
let uniqueValue = "as good as unique: " + Date.now();
|
2010-02-06 00:47:42 -08:00
|
|
|
|
2008-08-19 23:39:09 -07:00
|
|
|
// set a unique value on a new, blank tab
|
2009-09-13 16:18:19 -07:00
|
|
|
var tab = gBrowser.addTab();
|
2009-10-14 05:50:52 -07:00
|
|
|
tab.linkedBrowser.stop();
|
2008-08-19 23:39:09 -07:00
|
|
|
ss.setTabValue(tab, uniqueName, uniqueValue);
|
|
|
|
let valueWasCleaned = false;
|
2010-02-06 00:47:42 -08:00
|
|
|
|
2008-08-19 23:39:09 -07:00
|
|
|
// prevent our value from being written to disk
|
2010-02-06 00:47:42 -08:00
|
|
|
function cleaningObserver(aSubject, aTopic, aData) {
|
|
|
|
ok(aTopic == "sessionstore-state-write", "observed correct topic?");
|
|
|
|
ok(aSubject instanceof Ci.nsISupportsString, "subject is a string?");
|
|
|
|
ok(aSubject.data.indexOf(uniqueValue) > -1, "data contains our value?");
|
|
|
|
|
|
|
|
// find the data for the newly added tab and delete it
|
2010-06-09 13:55:45 -07:00
|
|
|
let state = JSON.parse(aSubject.data);
|
2010-02-06 00:47:42 -08:00
|
|
|
state.windows.forEach(function (winData) {
|
|
|
|
winData.tabs.forEach(function (tabData) {
|
|
|
|
if (tabData.extData && uniqueName in tabData.extData &&
|
|
|
|
tabData.extData[uniqueName] == uniqueValue) {
|
|
|
|
delete tabData.extData[uniqueName];
|
|
|
|
valueWasCleaned = true;
|
|
|
|
}
|
2009-11-17 04:28:36 -08:00
|
|
|
});
|
2010-02-06 00:47:42 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
ok(valueWasCleaned, "found and removed the specific tab value");
|
2010-06-09 13:55:45 -07:00
|
|
|
aSubject.data = JSON.stringify(state);
|
2010-04-02 00:20:42 -07:00
|
|
|
Services.obs.removeObserver(cleaningObserver, aTopic, false);
|
2010-02-06 00:47:42 -08:00
|
|
|
}
|
|
|
|
|
2008-08-19 23:39:09 -07:00
|
|
|
// make sure that all later observers don't see that value any longer
|
2010-02-06 00:47:42 -08:00
|
|
|
function checkingObserver(aSubject, aTopic, aData) {
|
|
|
|
ok(valueWasCleaned && aSubject instanceof Ci.nsISupportsString,
|
|
|
|
"ready to check the cleaned state?");
|
|
|
|
ok(aSubject.data.indexOf(uniqueValue) == -1, "data no longer contains our value?");
|
|
|
|
|
|
|
|
// clean up
|
|
|
|
gBrowser.removeTab(tab);
|
2010-04-02 00:20:42 -07:00
|
|
|
Services.obs.removeObserver(checkingObserver, aTopic, false);
|
2010-02-06 00:47:42 -08:00
|
|
|
if (gPrefService.prefHasUserValue("browser.sessionstore.interval"))
|
|
|
|
gPrefService.clearUserPref("browser.sessionstore.interval");
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
2008-08-19 23:39:09 -07:00
|
|
|
// last added observers are invoked first
|
2010-04-02 00:20:42 -07:00
|
|
|
Services.obs.addObserver(checkingObserver, "sessionstore-state-write", false);
|
|
|
|
Services.obs.addObserver(cleaningObserver, "sessionstore-state-write", false);
|
2010-02-06 00:47:42 -08:00
|
|
|
|
2008-11-02 10:31:45 -08:00
|
|
|
// trigger an immediate save operation
|
|
|
|
gPrefService.setIntPref("browser.sessionstore.interval", 0);
|
2008-08-19 23:39:09 -07:00
|
|
|
}
|