summaryrefslogtreecommitdiffstats
path: root/devtools/client/styleeditor/test/browser_styleeditor_private_perwindowpb.js
blob: e372f54ba2c78c2deecf93ab29aa8f549e5687bd (plain)
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
/* 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";

// This test makes sure that the style editor does not store any
// content CSS files in the permanent cache when opened from a private window tab.

const TEST_URL = `http://${TEST_HOST}/browser/devtools/client/styleeditor/test/test_private.html`;

add_task(async function () {
  info("Opening a new private window");
  const win = await BrowserTestUtils.openNewBrowserWindow({ private: true });

  info("Clearing the browser cache");
  Services.cache2.clear();

  const { toolbox, ui } = await openStyleEditorForURL(TEST_URL, win);

  is(ui.editors.length, 1, "The style editor contains one sheet.");
  const editor = ui.editors[0];
  is(
    editor.friendlyName,
    "test_private.css",
    "The style editor contains the expected stylesheet"
  );

  await editor.getSourceEditor();

  await checkDiskCacheFor(editor.friendlyName);

  await toolbox.destroy();

  const onUnload = new Promise(done => {
    win.addEventListener("unload", function listener(event) {
      if (event.target == win.document) {
        win.removeEventListener("unload", listener);
        done();
      }
    });
  });
  win.close();
  await onUnload;
});

function checkDiskCacheFor(fileName) {
  let foundPrivateData = false;

  return new Promise(resolve => {
    Visitor.prototype = {
      onCacheStorageInfo(num) {
        info("disk storage contains " + num + " entries");
      },
      onCacheEntryInfo(uri) {
        const urispec = uri.asciiSpec;
        info(urispec);
        foundPrivateData = foundPrivateData || urispec.includes(fileName);
      },
      onCacheEntryVisitCompleted() {
        is(foundPrivateData, false, "web content present in disk cache");
        resolve();
      },
    };
    function Visitor() {}

    const storage = Services.cache2.diskCacheStorage(
      Services.loadContextInfo.default
    );
    storage.asyncVisitStorage(
      new Visitor(),
      /* Do walk entries */
      true
    );
  });
}