1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/* 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/. */
"use strict";
add_task(async function test_idle_cleanup() {
Services.fog.testResetFOG();
Services.prefs.setBoolPref(
"network.cache.shutdown_purge_in_background_task",
true
);
Services.prefs.setBoolPref("privacy.clearOnShutdown.cache", true);
Services.prefs.setBoolPref("privacy.sanitize.sanitizeOnShutdown", true);
let dir = Services.dirsvc.get("ProfD", Ci.nsIFile);
dir.append("cache2.2021-11-25-08-47-04.purge.bg_rm");
Assert.equal(dir.exists(), false, `Folder ${dir.path} should not exist`);
dir.create(Ci.nsIFile.DIRECTORY_TYPE, 0o744);
Assert.equal(
dir.exists(),
true,
`Folder ${dir.path} should have been created`
);
Services.obs.notifyObservers(null, "idle-daily");
await TestUtils.waitForCondition(() => {
return !dir.exists();
});
Assert.equal(
dir.exists(),
false,
`Folder ${dir.path} should have been purged by background task`
);
Assert.equal(
await Glean.networking.residualCacheFolderCount.testGetValue(),
1
);
Assert.equal(
await Glean.networking.residualCacheFolderRemoval.success.testGetValue(),
1
);
Assert.equal(
await Glean.networking.residualCacheFolderRemoval.failure.testGetValue(),
null
);
// Check that telemetry properly detects folders failing to be deleted when readonly
// Making folders readonly only works on windows
if (AppConstants.platform == "win") {
dir.create(Ci.nsIFile.DIRECTORY_TYPE, 0o744);
dir.QueryInterface(Ci.nsILocalFileWin).readOnly = true;
Services.obs.notifyObservers(null, "idle-daily");
await BrowserTestUtils.waitForCondition(async () => {
return (
(await Glean.networking.residualCacheFolderRemoval.failure.testGetValue()) ==
1
);
});
Assert.equal(
await Glean.networking.residualCacheFolderCount.testGetValue(),
2
);
Assert.equal(
await Glean.networking.residualCacheFolderRemoval.success.testGetValue(),
1
);
Assert.equal(
await Glean.networking.residualCacheFolderRemoval.failure.testGetValue(),
1
);
dir.QueryInterface(Ci.nsILocalFileWin).readOnly = false;
dir.remove(true);
}
Services.prefs.clearUserPref(
"network.cache.shutdown_purge_in_background_task"
);
Services.prefs.clearUserPref("privacy.clearOnShutdown.cache");
Services.prefs.clearUserPref("privacy.sanitize.sanitizeOnShutdown");
});
|