summaryrefslogtreecommitdiffstats
path: root/storage/test/unit/test_storage_value_array.js
blob: 6a8f1fb6a28832d8c6c4bf067cec59d5a1ed709f (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
/* 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/. */

// This file tests the functions of mozIStorageValueArray

add_task(async function setup() {
  getOpenedDatabase().createTable(
    "test",
    "id INTEGER PRIMARY KEY, name TEXT," +
      "number REAL, nuller NULL, blobber BLOB"
  );

  var stmt = createStatement(
    "INSERT INTO test (name, number, blobber) VALUES (?1, ?2, ?3)"
  );
  stmt.bindByIndex(0, "foo");
  stmt.bindByIndex(1, 2.34);
  stmt.bindBlobByIndex(2, [], 0);
  stmt.execute();

  stmt.bindByIndex(0, "");
  stmt.bindByIndex(1, 1.23);
  stmt.bindBlobByIndex(2, [1, 2], 2);
  stmt.execute();

  stmt.reset();
  stmt.finalize();

  registerCleanupFunction(cleanup);
});

add_task(async function test_getIsNull_for_null() {
  var stmt = createStatement("SELECT nuller, blobber FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 1);
  Assert.ok(stmt.executeStep());

  Assert.ok(stmt.getIsNull(0)); // null field
  Assert.ok(stmt.getIsNull(1)); // data is null if size is 0
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_getIsNull_for_non_null() {
  var stmt = createStatement("SELECT name, blobber FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 2);
  Assert.ok(stmt.executeStep());

  Assert.ok(!stmt.getIsNull(0));
  Assert.ok(!stmt.getIsNull(1));
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_value_type_null() {
  var stmt = createStatement("SELECT nuller FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 1);
  Assert.ok(stmt.executeStep());

  Assert.equal(
    Ci.mozIStorageValueArray.VALUE_TYPE_NULL,
    stmt.getTypeOfIndex(0)
  );
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_value_type_integer() {
  var stmt = createStatement("SELECT id FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 1);
  Assert.ok(stmt.executeStep());

  Assert.equal(
    Ci.mozIStorageValueArray.VALUE_TYPE_INTEGER,
    stmt.getTypeOfIndex(0)
  );
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_value_type_float() {
  var stmt = createStatement("SELECT number FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 1);
  Assert.ok(stmt.executeStep());

  Assert.equal(
    Ci.mozIStorageValueArray.VALUE_TYPE_FLOAT,
    stmt.getTypeOfIndex(0)
  );
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_value_type_text() {
  var stmt = createStatement("SELECT name FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 1);
  Assert.ok(stmt.executeStep());

  Assert.equal(
    Ci.mozIStorageValueArray.VALUE_TYPE_TEXT,
    stmt.getTypeOfIndex(0)
  );
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_value_type_blob() {
  var stmt = createStatement("SELECT blobber FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 2);
  Assert.ok(stmt.executeStep());

  Assert.equal(
    Ci.mozIStorageValueArray.VALUE_TYPE_BLOB,
    stmt.getTypeOfIndex(0)
  );
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_numEntries_one() {
  var stmt = createStatement("SELECT blobber FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 2);
  Assert.ok(stmt.executeStep());

  Assert.equal(1, stmt.numEntries);
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_numEntries_all() {
  var stmt = createStatement("SELECT * FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 2);
  Assert.ok(stmt.executeStep());

  Assert.equal(5, stmt.numEntries);
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_getInt() {
  var stmt = createStatement("SELECT id FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 2);
  Assert.ok(stmt.executeStep());

  Assert.equal(2, stmt.getInt32(0));
  Assert.equal(2, stmt.getInt64(0));
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_getDouble() {
  var stmt = createStatement("SELECT number FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 2);
  Assert.ok(stmt.executeStep());

  Assert.equal(1.23, stmt.getDouble(0));
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_getUTF8String() {
  var stmt = createStatement("SELECT name FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 1);
  Assert.ok(stmt.executeStep());

  Assert.equal("foo", stmt.getUTF8String(0));
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_getString() {
  var stmt = createStatement("SELECT name FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 2);
  Assert.ok(stmt.executeStep());

  Assert.equal("", stmt.getString(0));
  stmt.reset();
  stmt.finalize();
});

add_task(async function test_getBlob() {
  var stmt = createStatement("SELECT blobber FROM test WHERE id = ?1");
  stmt.bindByIndex(0, 2);
  Assert.ok(stmt.executeStep());

  var count = { value: 0 };
  var arr = { value: null };
  stmt.getBlob(0, count, arr);
  Assert.equal(2, count.value);
  Assert.equal(1, arr.value[0]);
  Assert.equal(2, arr.value[1]);
  stmt.reset();
  stmt.finalize();
});