summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/unit/test_cert_storage_preexisting.js
blob: 8a757c199c4b7d8696b4e8811d907098454b3081 (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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* 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 file tests that cert_storage correctly persists its "has prior data"
// information across runs of the browser.
// (The test DB files for this test were created by running the test
// `test_cert_storage_broken_db.js` and copying them from that test's profile
// directory.)

/* eslint-disable no-unused-vars */
add_task(async function () {
  let dbDirectory = do_get_profile();
  dbDirectory.append("security_state");
  let dbFile = do_get_file("test_cert_storage_preexisting/data.safe.bin");
  dbFile.copyTo(dbDirectory, "data.safe.bin");

  let certStorage = Cc["@mozilla.org/security/certstorage;1"].getService(
    Ci.nsICertStorage
  );
  let hasPriorRevocationData = await new Promise(resolve => {
    certStorage.hasPriorData(
      Ci.nsICertStorage.DATA_TYPE_REVOCATION,
      (rv, hasPriorData) => {
        Assert.equal(rv, Cr.NS_OK, "hasPriorData should succeed");
        resolve(hasPriorData);
      }
    );
  });
  Assert.equal(
    hasPriorRevocationData,
    true,
    "should have prior revocation data"
  );

  let hasPriorCertData = await new Promise(resolve => {
    certStorage.hasPriorData(
      Ci.nsICertStorage.DATA_TYPE_CERTIFICATE,
      (rv, hasPriorData) => {
        Assert.equal(rv, Cr.NS_OK, "hasPriorData should succeed");
        resolve(hasPriorData);
      }
    );
  });
  Assert.equal(hasPriorCertData, true, "should have prior cert data");
});