summaryrefslogtreecommitdiffstats
path: root/netwerk/cookie/test/unit/test_bug1155169.js
blob: 6806ffe6d5d9ed5fd27967031ed10407d609ab39 (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
var {utils: Cu, interfaces: Ci, classes: Cc} = Components;

Cu.import("resource://gre/modules/Services.jsm");

const URI = Services.io.newURI("http://example.org/", null, null);

const cs = Cc["@mozilla.org/cookieService;1"]
             .getService(Ci.nsICookieService);

function run_test() {
  // Allow all cookies.
  Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);

  // Clear cookies.
  Services.cookies.removeAll();

  // Add a new cookie.
  setCookie("foo=bar", {
    type: "added", isSession: true, isSecure: false, isHttpOnly: false
  });

  // Update cookie with isHttpOnly=true.
  setCookie("foo=bar; HttpOnly", {
    type: "changed", isSession: true, isSecure: false, isHttpOnly: true
  });

  // Update cookie with isSecure=true.
  setCookie("foo=bar; Secure", {
    type: "changed", isSession: true, isSecure: true, isHttpOnly: false
  });

  // Update cookie with isSession=false.
  let expiry = new Date();
  expiry.setUTCFullYear(expiry.getUTCFullYear() + 2);
  setCookie(`foo=bar; Expires=${expiry.toGMTString()}`, {
    type: "changed", isSession: false, isSecure: false, isHttpOnly: false
  });

  // Reset cookie.
  setCookie("foo=bar", {
    type: "changed", isSession: true, isSecure: false, isHttpOnly: false
  });
}

function setCookie(value, expected) {
  function setCookieInternal(value, expected = null) {
    function observer(subject, topic, data) {
      if (!expected) {
        do_throw("no notification expected");
        return;
      }

      // Check we saw the right notification.
      do_check_eq(data, expected.type);

      // Check cookie details.
      let cookie = subject.QueryInterface(Ci.nsICookie2);
      do_check_eq(cookie.isSession, expected.isSession);
      do_check_eq(cookie.isSecure, expected.isSecure);
      do_check_eq(cookie.isHttpOnly, expected.isHttpOnly);
    }

    Services.obs.addObserver(observer, "cookie-changed", false);
    cs.setCookieStringFromHttp(URI, null, null, value, null, null);
    Services.obs.removeObserver(observer, "cookie-changed");
  }

  // Check that updating/inserting the cookie works.
  setCookieInternal(value, expected);

  // Check that we ignore identical cookies.
  setCookieInternal(value);
}