summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/unit/test_sss_readstate_huge.js
blob: 079fd598b44bb3a07b31bb8fc62b75fa12c3ac92 (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
/* 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";

// The purpose of this test is to create a site security service state file
// that is too large and see that the site security service reads it properly
// (this means discarding all entries after the 1024th).

var gSSService = null;

function checkStateRead(aSubject, aTopic, aData) {
  if (aData == CLIENT_AUTH_FILE_NAME) {
    return;
  }

  equal(aData, SSS_STATE_FILE_NAME);

  ok(
    gSSService.isSecureURI(Services.io.newURI("https://example0.example.com"))
  );
  ok(
    gSSService.isSecureURI(Services.io.newURI("https://example423.example.com"))
  );
  ok(
    gSSService.isSecureURI(
      Services.io.newURI("https://example1023.example.com")
    )
  );
  ok(
    !gSSService.isSecureURI(
      Services.io.newURI("https://example1024.example.com")
    )
  );
  ok(
    !gSSService.isSecureURI(
      Services.io.newURI("https://example1025.example.com")
    )
  );
  ok(
    !gSSService.isSecureURI(
      Services.io.newURI("https://example9000.example.com")
    )
  );
  ok(
    !gSSService.isSecureURI(
      Services.io.newURI("https://example99999.example.com")
    )
  );
  do_test_finished();
}

function run_test() {
  let profileDir = do_get_profile();
  let stateFile = profileDir.clone();
  stateFile.append(SSS_STATE_FILE_NAME);
  // Assuming we're working with a clean slate, the file shouldn't exist
  // until we create it.
  ok(!stateFile.exists());
  let outputStream = FileUtils.openFileOutputStream(stateFile);
  let expiryTime = Date.now() + 100000;
  let lines = [];
  for (let i = 0; i < 10000; i++) {
    // The 0s will all get squashed down into one 0 when they are read.
    // This is just to make the file size large (>2MB).
    lines.push(
      `example${i}.example.com:HSTS\t` +
        "0000000000000000000000000000000000000000000000000\t" +
        "00000000000000000000000000000000000000\t" +
        `${expiryTime},1,0000000000000000000000000000000000000000000000000000000000000000000000000`
    );
  }
  writeLinesAndClose(lines, outputStream);
  Services.obs.addObserver(checkStateRead, "data-storage-ready");
  do_test_pending();
  gSSService = Cc["@mozilla.org/ssservice;1"].getService(
    Ci.nsISiteSecurityService
  );
  notEqual(gSSService, null);
}