summaryrefslogtreecommitdiffstats
path: root/xpcom/tests/unit/test_windows_registry.js
blob: 691c0461c3fa832d2dda499bdf59039b0fe17a84 (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
197
198
199
200
201
202
203
204
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */

/* 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/. */

const nsIWindowsRegKey = Ci.nsIWindowsRegKey;
let regKeyComponent = Cc["@mozilla.org/windows-registry-key;1"];

function run_test() {
  //* create a key structure in a spot that's normally writable (somewhere under HKCU).
  let testKey = regKeyComponent.createInstance(nsIWindowsRegKey);

  // If it's already present because a previous test crashed or didn't clean up properly, clean it up first.
  let keyName = BASE_PATH + "\\" + TESTDATA_KEYNAME;
  setup_test_run(testKey, keyName);

  //* test that the write* functions write stuff
  test_writing_functions(testKey);

  //* check that the valueCount/getValueName functions work for the values we just wrote
  test_value_functions(testKey);

  //* check that the get* functions work for the values we just wrote.
  test_reading_functions(testKey);

  //* check that the get* functions fail with the right exception codes if we ask for the wrong type or if the value name doesn't exist at all
  test_invalidread_functions(testKey);

  //* check that creating/enumerating/deleting child keys works
  test_childkey_functions(testKey);

  //* clean up
  cleanup_test_run(testKey, keyName);
}

function setup_test_run(testKey, keyName) {
  info("Setup test run");
  try {
    testKey.open(
      nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
      keyName,
      nsIWindowsRegKey.ACCESS_READ
    );
    info("Test key exists. Needs cleanup.");
    cleanup_test_run(testKey, keyName);
  } catch (e) {
    if (!(e instanceof Ci.nsIException && e.result == Cr.NS_ERROR_FAILURE)) {
      throw e;
    }
  }

  testKey.create(
    nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
    keyName,
    nsIWindowsRegKey.ACCESS_ALL
  );
}

function test_writing_functions(testKey) {
  strictEqual(testKey.valueCount, 0);

  strictEqual(testKey.hasValue(TESTDATA_STRNAME), false);
  testKey.writeStringValue(TESTDATA_STRNAME, TESTDATA_STRVALUE);
  strictEqual(testKey.hasValue(TESTDATA_STRNAME), true);

  strictEqual(testKey.hasValue(TESTDATA_INTNAME), false);
  testKey.writeIntValue(TESTDATA_INTNAME, TESTDATA_INTVALUE);

  strictEqual(testKey.hasValue(TESTDATA_INT64NAME), false);
  testKey.writeInt64Value(TESTDATA_INT64NAME, TESTDATA_INT64VALUE);

  strictEqual(testKey.hasValue(TESTDATA_BINARYNAME), false);
  testKey.writeBinaryValue(TESTDATA_BINARYNAME, TESTDATA_BINARYVALUE);
}

function test_value_functions(testKey) {
  strictEqual(testKey.valueCount, 4);
  strictEqual(testKey.getValueName(0), TESTDATA_STRNAME);
  strictEqual(testKey.getValueName(1), TESTDATA_INTNAME);
  strictEqual(testKey.getValueName(2), TESTDATA_INT64NAME);
  strictEqual(testKey.getValueName(3), TESTDATA_BINARYNAME);
}

function test_reading_functions(testKey) {
  strictEqual(
    testKey.getValueType(TESTDATA_STRNAME),
    nsIWindowsRegKey.TYPE_STRING
  );
  strictEqual(testKey.readStringValue(TESTDATA_STRNAME), TESTDATA_STRVALUE);

  strictEqual(
    testKey.getValueType(TESTDATA_INTNAME),
    nsIWindowsRegKey.TYPE_INT
  );
  strictEqual(testKey.readIntValue(TESTDATA_INTNAME), TESTDATA_INTVALUE);

  strictEqual(
    testKey.getValueType(TESTDATA_INT64NAME),
    nsIWindowsRegKey.TYPE_INT64
  );
  strictEqual(testKey.readInt64Value(TESTDATA_INT64NAME), TESTDATA_INT64VALUE);

  strictEqual(
    testKey.getValueType(TESTDATA_BINARYNAME),
    nsIWindowsRegKey.TYPE_BINARY
  );
  strictEqual(
    testKey.readBinaryValue(TESTDATA_BINARYNAME),
    TESTDATA_BINARYVALUE
  );
}

function test_invalidread_functions(testKey) {
  try {
    testKey.readIntValue(TESTDATA_STRNAME);
    do_throw("Reading an integer from a string registry value should throw.");
  } catch (e) {
    if (!(e instanceof Ci.nsIException && e.result == Cr.NS_ERROR_FAILURE)) {
      throw e;
    }
  }

  try {
    let val = testKey.readStringValue(TESTDATA_INTNAME);
    do_throw(
      "Reading an string from an Int registry value should throw." + val
    );
  } catch (e) {
    if (!(e instanceof Ci.nsIException && e.result == Cr.NS_ERROR_FAILURE)) {
      throw e;
    }
  }

  try {
    testKey.readStringValue(TESTDATA_INT64NAME);
    do_throw("Reading an string from an Int64 registry value should throw.");
  } catch (e) {
    if (!(e instanceof Ci.nsIException && e.result == Cr.NS_ERROR_FAILURE)) {
      throw e;
    }
  }

  try {
    testKey.readStringValue(TESTDATA_BINARYNAME);
    do_throw("Reading a string from an Binary registry value should throw.");
  } catch (e) {
    if (!(e instanceof Ci.nsIException && e.result == Cr.NS_ERROR_FAILURE)) {
      throw e;
    }
  }
}

function test_childkey_functions(testKey) {
  strictEqual(testKey.childCount, 0);
  strictEqual(testKey.hasChild(TESTDATA_CHILD_KEY), false);

  let childKey = testKey.createChild(
    TESTDATA_CHILD_KEY,
    nsIWindowsRegKey.ACCESS_ALL
  );
  childKey.close();

  strictEqual(testKey.childCount, 1);
  strictEqual(testKey.hasChild(TESTDATA_CHILD_KEY), true);
  strictEqual(testKey.getChildName(0), TESTDATA_CHILD_KEY);

  childKey = testKey.openChild(TESTDATA_CHILD_KEY, nsIWindowsRegKey.ACCESS_ALL);
  testKey.removeChild(TESTDATA_CHILD_KEY);
  strictEqual(testKey.childCount, 0);
  strictEqual(testKey.hasChild(TESTDATA_CHILD_KEY), false);
}

function cleanup_test_run(testKey, keyName) {
  info("Cleaning up test.");

  for (var i = 0; i < testKey.childCount; i++) {
    testKey.removeChild(testKey.getChildName(i));
  }
  testKey.close();

  let baseKey = regKeyComponent.createInstance(nsIWindowsRegKey);
  baseKey.open(
    nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
    BASE_PATH,
    nsIWindowsRegKey.ACCESS_ALL
  );
  baseKey.removeChild(TESTDATA_KEYNAME);
  baseKey.close();
}

// Test data used above.
const BASE_PATH = "SOFTWARE";
const TESTDATA_KEYNAME = "TestRegXPC";
const TESTDATA_STRNAME = "AString";
const TESTDATA_STRVALUE = "The quick brown fox jumps over the lazy dog.";
const TESTDATA_INTNAME = "AnInteger";
const TESTDATA_INTVALUE = 65536;
const TESTDATA_INT64NAME = "AnInt64";
const TESTDATA_INT64VALUE = 9223372036854775000;
const TESTDATA_BINARYNAME = "ABinary";
const TESTDATA_BINARYVALUE = "She sells seashells by the seashore";
const TESTDATA_CHILD_KEY = "TestChildKey";