summaryrefslogtreecommitdiffstats
path: root/netwerk/test/mochitests/file_testloadflags_chromescript.js
blob: a74920d2c2cd54c5561c5db6f6f06aad6d63f1b8 (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
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
/* eslint-env mozilla/chrome-script */
/* eslint-disable mozilla/use-services */

"use strict";

var gObs;

function info(s) {
  sendAsyncMessage("info", { str: String(s) });
}

function ok(c, m) {
  sendAsyncMessage("ok", { c, m });
}

function is(a, b, m) {
  ok(Object.is(a, b), m + " (" + a + " === " + b + ")");
}

// Count headers.
function obs() {
  info("adding observer");

  this.os = Cc["@mozilla.org/observer-service;1"].getService(
    Ci.nsIObserverService
  );
  this.os.addObserver(this, "http-on-modify-request");
}

obs.prototype = {
  observe(theSubject, theTopic, theData) {
    info("theSubject " + theSubject);
    info("theTopic " + theTopic);
    info("theData " + theData);

    var channel = theSubject.QueryInterface(Ci.nsIHttpChannel);
    info("channel " + channel);
    try {
      info("channel.URI " + channel.URI);
      info("channel.URI.spec " + channel.URI.spec);
      channel.visitRequestHeaders({
        visitHeader(aHeader, aValue) {
          info(aHeader + ": " + aValue);
        },
      });
    } catch (err) {
      ok(false, "catch error " + err);
    }

    // Ignore notifications we don't care about (like favicons)
    if (
      !channel.URI.spec.includes(
        "http://example.org/tests/netwerk/test/mochitests/"
      )
    ) {
      info("ignoring this one");
      return;
    }

    sendAsyncMessage("observer:gotCookie", {
      cookie: channel.getRequestHeader("Cookie"),
      uri: channel.URI.spec,
    });
  },

  remove() {
    info("removing observer");

    this.os.removeObserver(this, "http-on-modify-request");
    this.os = null;
  },
};

function getCookieCount(cs) {
  let count = 0;
  for (let cookie of cs.cookies) {
    info("cookie: " + cookie);
    info(
      "cookie host " +
        cookie.host +
        " path " +
        cookie.path +
        " name " +
        cookie.name +
        " value " +
        cookie.value +
        " isSecure " +
        cookie.isSecure +
        " expires " +
        cookie.expires
    );
    ++count;
  }

  return count;
}

addMessageListener("init", ({ domain }) => {
  let cs = Cc["@mozilla.org/cookiemanager;1"].getService(Ci.nsICookieManager);

  info("we are going to remove these cookies");

  let count = getCookieCount(cs);
  info(count + " cookies");

  cs.removeAll();
  cs.add(
    domain,
    "/",
    "oh",
    "hai",
    false,
    false,
    true,
    Math.pow(2, 62),
    {},
    Ci.nsICookie.SAMESITE_NONE,
    Ci.nsICookie.SCHEME_HTTPS
  );
  is(
    cs.countCookiesFromHost(domain),
    1,
    "number of cookies for domain " + domain
  );

  gObs = new obs();
  sendAsyncMessage("init:return");
});

addMessageListener("getCookieCount", () => {
  let cs = Cc["@mozilla.org/cookiemanager;1"].getService(Ci.nsICookieManager);
  let count = getCookieCount(cs);

  cs.removeAll();
  sendAsyncMessage("getCookieCount:return", { count });
});

addMessageListener("shutdown", () => {
  gObs.remove();

  let cs = Cc["@mozilla.org/cookiemanager;1"].getService(Ci.nsICookieManager);
  cs.removeAll();
  sendAsyncMessage("shutdown:return");
});