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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Tests for the BackupSettings component</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>
<script
src="chrome://browser/content/backup/backup-settings.mjs"
type="module"
></script>
<link rel="stylesheet" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
<link rel="localization" href="branding/brand.ftl"/>
<link rel="localization" href="preview/backupSettings.ftl" />
<script>
const { BrowserTestUtils } = ChromeUtils.importESModule(
"resource://testing-common/BrowserTestUtils.sys.mjs"
);
const testDefaultName = "test-default-path";
/**
* Tests that adding a backup-settings element to the DOM causes it to
* fire a BackupUI:InitWidget event.
*/
add_task(async function test_initWidget() {
let settings = document.createElement("backup-settings");
let content = document.getElementById("content");
let sawInitWidget = BrowserTestUtils.waitForEvent(content, "BackupUI:InitWidget");
content.appendChild(settings);
await sawInitWidget;
ok(true, "Saw BackupUI:InitWidget");
settings.remove();
});
/**
* Tests that the dialog for turning on scheduled backups can be displayed
* from settings, or hidden if cancelled.
*/
add_task(async function test_turnOnScheduledBackupsDialog() {
let settings = document.getElementById("test-backup-settings");
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
}
}
await settings.updateComplete;
let turnOnButton = settings.scheduledBackupsButtonEl;
let dialog = settings.turnOnScheduledBackupsDialogEl;
ok(turnOnButton, "Button to turn on scheduled backups should be found");
ok(!dialog.open, "Dialog should not be open");
turnOnButton.click();
await settings.updateComplete;
ok(dialog?.open, "Dialog should be open");
let turnOnScheduledBackups = dialog.querySelector("turn-on-scheduled-backups");
ok(turnOnScheduledBackups, "turn-on-scheduled-backups should be found");
let cancelButton = turnOnScheduledBackups.shadowRoot.getElementById("backup-turn-on-scheduled-cancel-button");
ok(cancelButton, "Cancel button should be found");
cancelButton.click();
await settings.updateComplete;
ok(!dialog.open, "Dialog should not be open");
});
/**
* Tests that the dialog for turning off scheduled backups can be displayed
* from settings, or hidden if cancelled.
*/
add_task(async function test_turnOffScheduledBackupsDialog() {
let settings = document.getElementById("test-backup-settings");
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
scheduledBackupsEnabled: true,
}
await settings.updateComplete;
let turnOffButton = settings.scheduledBackupsButtonEl;
let dialog = settings.turnOffScheduledBackupsDialogEl;
ok(turnOffButton, "Button to turn off scheduled backups should be found");
ok(!dialog.open, "Dialog should not be open");
turnOffButton.click();
await settings.updateComplete;
ok(dialog?.open, "Dialog should be open");
let turnOffScheduledBackups = dialog.querySelector("turn-off-scheduled-backups");
ok(turnOffScheduledBackups, "turn-off-scheduled-backups should be found");
let cancelButton = turnOffScheduledBackups.shadowRoot.getElementById("backup-turn-off-scheduled-cancel-button");
ok(cancelButton, "Cancel button should be found");
cancelButton.click();
await settings.updateComplete;
ok(!dialog.open, "Dialog should not be open");
});
/**
* Tests that the dialog for turning off scheduled backups can be displayed
* from settings, or hidden if cancelled.
*/
add_task(async function test_disableBackupEncryptionDialog() {
let settings = document.getElementById("test-backup-settings");
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
scheduledBackupsEnabled: true,
encryptionEnabled: true,
}
await settings.updateComplete;
let sensitiveDataCheckboxInput = settings.sensitiveDataCheckboxInputEl;
let dialog = settings.disableBackupEncryptionDialogEl;
ok(sensitiveDataCheckboxInput, "Checkbox for toggling encryption should be found");
ok(!dialog.open, "Dialog should not be open");
sensitiveDataCheckboxInput.click();
await settings.updateComplete;
ok(dialog?.open, "Dialog should be open");
let disableBackupEncryption = dialog.querySelector("disable-backup-encryption");
ok(disableBackupEncryption, "disable-backup-encryption should be found");
let cancelButton = disableBackupEncryption.shadowRoot.getElementById("backup-disable-encryption-cancel-button");
ok(cancelButton, "Cancel button should be found");
cancelButton.click();
await settings.updateComplete;
ok(!dialog.open, "Dialog should not be open");
});
/**
* Test that the timestamp and name of the last backup is shown if and only
* if one exists.
*/
add_task(async function test_lastBackupTimestamp() {
let settings = document.getElementById("test-backup-settings");
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
lastBackupDate: null,
lastBackupFileName: "",
};
await settings.updateComplete;
let backupInfo = settings.shadowRoot.querySelector("#last-backup-info");
ok(!backupInfo, "Last backup info was not rendered.");
const lastBackupTimestamp = 1719769205;
const lastBackupFileName = "SomeBackup.html"
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
lastBackupDate: lastBackupTimestamp,
lastBackupFileName,
};
await settings.updateComplete;
backupInfo = settings.shadowRoot.querySelector("#last-backup-info");
ok(backupInfo, "Last backup info was rendered.");
let backupDate = backupInfo.querySelector("#last-backup-date");
is(
JSON.parse(backupDate.getAttribute("data-l10n-args")).date,
lastBackupTimestamp * 1000,
"Should have converted the timestamp to milliseconds."
);
let backupFilename = backupInfo.querySelector("#last-backup-filename");
is(
JSON.parse(backupFilename.getAttribute("data-l10n-args")).fileName,
lastBackupFileName,
"Should be showing the right file name."
);
});
/**
* Test that the ability to change the configured location of the backup
* exists if and only if scheduled backups are enabled.
*/
add_task(async function test_backupLocation() {
let settings = document.getElementById("test-backup-settings");
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
lastBackupDate: null,
lastBackupFileName: "",
scheduledBackupsEnabled: false,
};
await settings.updateComplete;
let backupLocationControl = settings.shadowRoot.querySelector("#last-backup-location-control");
ok(!backupLocationControl, "Last backup location control was not rendered.");
const backupDirPath = "Some/Expected/Path";
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
scheduledBackupsEnabled: true,
backupDirPath,
};
await settings.updateComplete;
backupLocationControl = settings.shadowRoot.querySelector("#last-backup-location-control");
ok(backupLocationControl, "Last backup location control was rendered.");
let backupLocation = settings.shadowRoot.querySelector("#last-backup-location");
is(backupLocation.value, backupDirPath, "Last backup location set to the expected value.");
});
/**
* Test that the "Show in folder" button fires the right event.
*/
add_task(async function test_showInFolder() {
let settings = document.getElementById("test-backup-settings");
let content = document.getElementById("content");
const backupDirPath = "Some/Expected/Path";
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
scheduledBackupsEnabled: true,
backupDirPath,
};
let locationShowButton = settings.shadowRoot.querySelector("#backup-location-show");
ok(locationShowButton, "Backup location show button exists.");
let sawShowEvent = BrowserTestUtils.waitForEvent(content, "BackupUI:ShowBackupLocation");
locationShowButton.click();
await sawShowEvent;
});
/**
* Test that the "Edit" button fires the right event.
*/
add_task(async function test_editLocation() {
let settings = document.getElementById("test-backup-settings");
let content = document.getElementById("content");
const backupDirPath = "Some/Expected/Path";
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
scheduledBackupsEnabled: true,
backupDirPath,
};
let locationEditButton = settings.shadowRoot.querySelector("#backup-location-edit");
ok(locationEditButton, "Backup location edit button exists.");
let sawEditEvent = BrowserTestUtils.waitForEvent(content, "BackupUI:EditBackupLocation");
locationEditButton.click();
await sawEditEvent;
});
/**
* Tests that the encryption checkbox and change password button are only
* visible when scheduled backups are enabled.
*/
add_task(async function test_password_controls_visibility() {
let settings = document.getElementById("test-backup-settings");
// First check visibility when scheduled backups are disabled
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
scheduledBackupsEnabled: false,
}
await settings.updateComplete;
ok(
!settings.passwordControlsEl,
"Password controls should not be found"
);
// Now check visibility when scheduled backups are enabled
settings.backupServiceState.scheduledBackupsEnabled = true;
await settings.requestUpdate();
await settings.updateComplete;
ok(settings.passwordControlsEl, "Password controls should be found");
ok(
settings.sensitiveDataCheckboxInputEl,
"Password controls should be found"
);
ok(
!settings.sensitiveDataCheckboxInputEl.checked,
"Sensitive data checkbox should not be checked"
);
ok(
!settings.changePasswordButtonEl,
"Change password button should not be found"
);
// Now pretend encryption is enabled
settings.backupServiceState.encryptionEnabled = true;
await settings.requestUpdate();
await settings.updateComplete;
ok(
settings.sensitiveDataCheckboxInputEl.checked,
"Sensitive data checkbox should be checked"
);
ok(
settings.changePasswordButtonEl,
"Change password button should be found"
);
});
/**
* Tests that the right content is displayed if scheduled automatic backups
* are disabled.
*/
add_task(async function test_content_when_scheduled_backups_disabled() {
let settings = document.getElementById("test-backup-settings");
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
scheduledBackupsEnabled: false,
}
await settings.updateComplete;
ok(
settings.scheduledBackupsDescriptionEl,
"Scheduled backups description should be in the DOM"
);
is(
settings.restoreFromBackupButtonEl.getAttribute("data-l10n-id"),
"settings-data-backup-scheduled-backups-off-restore-choose"
);
is(
settings.restoreFromBackupDescriptionEl.getAttribute("data-l10n-id"),
"settings-data-backup-scheduled-backups-off-restore-description"
);
});
/**
* Tests that the right content is displayed if scheduled automatic backups
* are enabled.
*/
add_task(async function test_content_when_scheduled_backups_enabled() {
let settings = document.getElementById("test-backup-settings");
settings.backupServiceState = {
defaultParent: {
path: PathUtils.join(PathUtils.tempDir, testDefaultName),
fileName: testDefaultName,
},
scheduledBackupsEnabled: true,
}
await settings.updateComplete;
ok(
!settings.scheduledBackupsDescriptionEl,
"Scheduled backups description should not be in the DOM"
);
is(
settings.restoreFromBackupButtonEl.getAttribute("data-l10n-id"),
"settings-data-backup-scheduled-backups-on-restore-choose"
);
is(
settings.restoreFromBackupDescriptionEl.getAttribute("data-l10n-id"),
"settings-data-backup-scheduled-backups-on-restore-description"
);
});
</script>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
<backup-settings id="test-backup-settings"></backup-settings>
</div>
<pre id="test"></pre>
</body>
</html>
|