-
-
Notifications
You must be signed in to change notification settings - Fork 829
/
Copy pathupdate_hook.test.js
75 lines (59 loc) · 2.5 KB
/
update_hook.test.js
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
var sqlite3 = require('..');
var assert = require('assert');
describe('update_hook', function() {
var db;
beforeEach(function(done) {
db = new sqlite3.Database(':memory:', function(err) {
if (err) return done(err);
db.run("CREATE TABLE update_hooks_test (id int PRIMARY KEY, value text)", done);
});
});
it('emits insert event on inserting data to table', function(done) {
db.addListener('change', function(eventType, database, table, rowId) {
assert.equal(eventType, 'insert');
assert.equal(database, 'main');
assert.equal(table, 'update_hooks_test');
assert.equal(rowId, 1);
return done();
});
db.run("INSERT INTO update_hooks_test VALUES (1, 'value')", function(err) {
if (err) return done(err);
});
});
it('emits update event on row modification in table', function(done) {
db.run("INSERT INTO update_hooks_test VALUES (2, 'value'), (3, 'value4')", function(err) {
if (err) return done(err);
db.addListener('change', function(eventType, database, table, rowId) {
assert.equal(eventType, 'update');
assert.equal(database, 'main');
assert.equal(table, 'update_hooks_test');
assert.equal(rowId, 1);
db.all("SELECT * FROM update_hooks_test WHERE rowid = ?", rowId, function(err, rows) {
assert.deepEqual(rows, [{ id: 2, value: 'new_val' }]);
return done(err);
});
});
db.run("UPDATE update_hooks_test SET value = 'new_val' WHERE id = 2", function(err) {
if (err) return done(err);
});
});
});
it('emits delete event on row was deleted from table', function(done) {
db.run("INSERT INTO update_hooks_test VALUES (2, 'value')", function(err) {
if (err) return done(err);
db.addListener('change', function(eventType, database, table, rowId) {
assert.equal(eventType, 'delete');
assert.equal(database, 'main');
assert.equal(table, 'update_hooks_test');
assert.equal(rowId, 1);
return done();
});
db.run("DELETE FROM update_hooks_test WHERE id = 2", function(err) {
if (err) return done(err);
});
});
});
afterEach(function(done) {
db.close(done);
});
});