summaryrefslogtreecommitdiffstats
path: root/dom/push/test/xpcshell/test_updateRecordNoEncryptionKeys_http2.js
blob: e3e63833717b9c3ea7084ff8d0a80a3d6b73b03c (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const { HttpServer } = ChromeUtils.import("resource://testing-common/httpd.js");

var httpServer = null;

function listenHandler(metadata, response) {
  Assert.ok(true, "Start listening");
  httpServer.stop(do_test_finished);
  response.setHeader("Retry-After", "10");
  response.setStatusLine(metadata.httpVersion, 500, "Retry");
}

httpServer = new HttpServer();
httpServer.registerPathHandler("/subscriptionNoKey", listenHandler);
httpServer.start(-1);

function run_test() {
  do_get_profile();
  setPrefs({
    "testing.allowInsecureServerURL": true,
    "http2.retryInterval": 1000,
    "http2.maxRetries": 2,
  });

  run_next_test();
}

add_task(async function test1() {
  let db = PushServiceHttp2.newPushDB();
  registerCleanupFunction(() => {
    return db.drop().then(() => db.close());
  });

  do_test_pending();

  var serverURL = "http://localhost:" + httpServer.identity.primaryPort;

  let record = {
    subscriptionUri: serverURL + "/subscriptionNoKey",
    pushEndpoint: serverURL + "/pushEndpoint",
    pushReceiptEndpoint: serverURL + "/pushReceiptEndpoint",
    scope: "https://example.com/page",
    originAttributes: "",
    quota: Infinity,
    systemRecord: true,
  };

  await db.put(record);

  let notifyPromise = promiseObserverNotification(
    PushServiceComponent.subscriptionChangeTopic,
    _ => true
  );

  PushService.init({
    serverURI: serverURL + "/subscribe",
    db,
  });

  await notifyPromise;

  let aRecord = await db.getByKeyID(serverURL + "/subscriptionNoKey");
  ok(aRecord, "The record should still be there");
  ok(aRecord.p256dhPublicKey, "There should be a public key");
  ok(aRecord.p256dhPrivateKey, "There should be a private key");
});