summaryrefslogtreecommitdiffstats
path: root/storage/test/unit/test_connection_executeSimpleSQLAsync.js
blob: 00bdda7e03036b94402dd9afaac5583d02654596 (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
/* 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 functionality of
 * mozIStorageAsyncConnection::executeSimpleSQLAsync.
 */

const INTEGER = 1;
const TEXT = "this is test text";
const REAL = 3.23;

add_task(async function test_create_and_add() {
  let adb = await openAsyncDatabase(getTestDB());

  let completion = await executeSimpleSQLAsync(
    adb,
    "CREATE TABLE test (id INTEGER, string TEXT, number REAL)"
  );

  Assert.equal(Ci.mozIStorageStatementCallback.REASON_FINISHED, completion);

  completion = await executeSimpleSQLAsync(
    adb,
    "INSERT INTO test (id, string, number) " +
      "VALUES (" +
      INTEGER +
      ', "' +
      TEXT +
      '", ' +
      REAL +
      ")"
  );

  Assert.equal(Ci.mozIStorageStatementCallback.REASON_FINISHED, completion);

  let result = null;

  completion = await executeSimpleSQLAsync(
    adb,
    "SELECT string, number FROM test WHERE id = 1",
    function (aResultSet) {
      result = aResultSet.getNextRow();
      Assert.equal(2, result.numEntries);
      Assert.equal(TEXT, result.getString(0));
      Assert.equal(REAL, result.getDouble(1));
    }
  );

  Assert.equal(Ci.mozIStorageStatementCallback.REASON_FINISHED, completion);
  Assert.notEqual(result, null);
  result = null;

  await executeSimpleSQLAsync(
    adb,
    "SELECT COUNT(0) FROM test",
    function (aResultSet) {
      result = aResultSet.getNextRow();
      Assert.equal(1, result.getInt32(0));
    }
  );

  Assert.notEqual(result, null);

  await asyncClose(adb);
});

add_task(async function test_asyncClose_does_not_complete_before_statement() {
  let adb = await openAsyncDatabase(getTestDB());
  let executed = false;

  let reason = await executeSimpleSQLAsync(
    adb,
    "SELECT * FROM test",
    function (aResultSet) {
      let result = aResultSet.getNextRow();

      Assert.notEqual(result, null);
      Assert.equal(3, result.numEntries);
      Assert.equal(INTEGER, result.getInt32(0));
      Assert.equal(TEXT, result.getString(1));
      Assert.equal(REAL, result.getDouble(2));
      executed = true;
    }
  );

  Assert.equal(Ci.mozIStorageStatementCallback.REASON_FINISHED, reason);

  // Ensure that the statement executed to completion.
  Assert.ok(executed);

  await asyncClose(adb);
});