summaryrefslogtreecommitdiffstats
path: root/netwerk/cookie/test/unit/test_bug1267910.js
blob: 93ea5e13284584b9f58620ea2f7d5675a73f2146 (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
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
/*
 * Bug 1267910 - Add test cases for the backward compatiability and originAttributes
 *               of nsICookieManager2.
 */

var {utils: Cu, interfaces: Ci, classes: Cc} = Components;

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

const BASE_URL = "http://example.org/";

const COOKIE = {
  host: BASE_URL,
  path: "/",
  name: "test1",
  value: "yes",
  isSecure: false,
  isHttpOnly: false,
  isSession: true,
  expiry: 2145934800,
};

const COOKIE_OA_DEFAULT = {
  host: BASE_URL,
  path: "/",
  name: "test0",
  value: "yes0",
  isSecure: false,
  isHttpOnly: false,
  isSession: true,
  expiry: 2145934800,
  originAttributes: {},
};

const COOKIE_OA_1 = {
  host: BASE_URL,
  path: "/",
  name: "test1",
  value: "yes1",
  isSecure: false,
  isHttpOnly: false,
  isSession: true,
  expiry: 2145934800,
  originAttributes: {userContextId: 1},
};

function checkCookie(cookie, cookieObj) {
  for (let prop of Object.keys(cookieObj)) {
    if (prop === "originAttributes") {
      ok(ChromeUtils.isOriginAttributesEqual(cookie[prop], cookieObj[prop]),
        "Check cookie: " + prop);
    } else {
      equal(cookie[prop], cookieObj[prop], "Check cookie: " + prop);
    }
  }
}

function countCookies(enumerator) {
  let cnt = 0;

  while (enumerator.hasMoreElements()) {
    cnt++;
    enumerator.getNext();
  }

  return cnt;
}

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

  // Enable user context id
  Services.prefs.setBoolPref("privacy.userContext.enabled", true);

  add_test(test_backward_compatiability);
  add_test(test_originAttributes);


  run_next_test();
}

/*
 * Test for backward compatiablility that APIs works correctly without
 * originAttributes.
 */
function test_backward_compatiability() {
  // Clear cookies.
  Services.cookies.removeAll();

  // Call Add() to add a cookie without originAttributes
  Services.cookies.add(COOKIE.host,
                       COOKIE.path,
                       COOKIE.name,
                       COOKIE.value,
                       COOKIE.isSecure,
                       COOKIE.isHttpOnly,
                       COOKIE.isSession,
                       COOKIE.expiry);

  // Call getCookiesFromHost() to get cookies without originAttributes
  let enumerator = Services.cookies.getCookiesFromHost(BASE_URL);

  ok(enumerator.hasMoreElements(), "Cookies available");
  let foundCookie = enumerator.getNext().QueryInterface(Ci.nsICookie2);

  checkCookie(foundCookie, COOKIE);

  ok(!enumerator.hasMoreElements(), "We should get only one cookie");

  run_next_test();
}

/*
 * Test for originAttributes.
 */
function test_originAttributes() {
  // Clear cookies.
  Services.cookies.removeAll();

  // Add a cookie for default originAttributes.
  Services.cookies.add(COOKIE_OA_DEFAULT.host,
                       COOKIE_OA_DEFAULT.path,
                       COOKIE_OA_DEFAULT.name,
                       COOKIE_OA_DEFAULT.value,
                       COOKIE_OA_DEFAULT.isSecure,
                       COOKIE_OA_DEFAULT.isHttpOnly,
                       COOKIE_OA_DEFAULT.isSession,
                       COOKIE_OA_DEFAULT.expiry,
                       COOKIE_OA_DEFAULT.originAttributes);

  // Get cookies for default originAttributes.
  let enumerator = Services.cookies.getCookiesFromHost(BASE_URL, COOKIE_OA_DEFAULT.originAttributes);

  // Check that do we get cookie correctly.
  ok(enumerator.hasMoreElements(), "Cookies available");
  let foundCookie = enumerator.getNext().QueryInterface(Ci.nsICookie2);
  checkCookie(foundCookie, COOKIE_OA_DEFAULT);

  // We should only get one cookie.
  ok(!enumerator.hasMoreElements(), "We should get only one cookie");

  // Get cookies for originAttributes with user context id 1.
  enumerator = Services.cookies.getCookiesFromHost(BASE_URL, COOKIE_OA_1.originAttributes);

  // Check that we will not get cookies if the originAttributes is different.
  ok(!enumerator.hasMoreElements(), "No cookie should be here");

  // Add a cookie for originAttributes with user context id 1.
  Services.cookies.add(COOKIE_OA_1.host,
                       COOKIE_OA_1.path,
                       COOKIE_OA_1.name,
                       COOKIE_OA_1.value,
                       COOKIE_OA_1.isSecure,
                       COOKIE_OA_1.isHttpOnly,
                       COOKIE_OA_1.isSession,
                       COOKIE_OA_1.expiry,
                       COOKIE_OA_1.originAttributes);

  // Get cookies for originAttributes with user context id 1.
  enumerator = Services.cookies.getCookiesFromHost(BASE_URL, COOKIE_OA_1.originAttributes);

  // Check that do we get cookie correctly.
  ok(enumerator.hasMoreElements(), "Cookies available");
  foundCookie = enumerator.getNext().QueryInterface(Ci.nsICookie2);
  checkCookie(foundCookie, COOKIE_OA_1);

  // We should only get one cookie.
  ok(!enumerator.hasMoreElements(), "We should get only one cookie");

  // Check that add a cookie will not affect cookies in different originAttributes.
  enumerator = Services.cookies.getCookiesFromHost(BASE_URL, COOKIE_OA_DEFAULT.originAttributes);
  equal(countCookies(enumerator), 1, "We should get only one cookie for default originAttributes");

  // Remove a cookie for originAttributes with user context id 1.
  Services.cookies.remove(COOKIE_OA_1.host, COOKIE_OA_1.name, COOKIE_OA_1.path,
                          false, COOKIE_OA_1.originAttributes);

  // Check that remove will not affect cookies in default originAttributes.
  enumerator = Services.cookies.getCookiesFromHost(BASE_URL, COOKIE_OA_DEFAULT.originAttributes);
  equal(countCookies(enumerator), 1, "Get one cookie for default originAttributes.");

  // Check that should be no cookie for originAttributes with user context id 1.
  enumerator = Services.cookies.getCookiesFromHost(BASE_URL, COOKIE_OA_1.originAttributes);
  equal(countCookies(enumerator), 0, "No cookie shold be here");

  // Remove a cookie for default originAttributes.
  Services.cookies.remove(COOKIE_OA_DEFAULT.host, COOKIE_OA_DEFAULT.name, COOKIE_OA_DEFAULT.path,
                          false, COOKIE_OA_DEFAULT.originAttributes);

  // Check remove() works correctly for default originAttributes.
  enumerator = Services.cookies.getCookiesFromHost(BASE_URL, COOKIE_OA_DEFAULT.originAttributes);
  equal(countCookies(enumerator), 0, "No cookie shold be here");

  run_next_test();
}