-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.test.ts
83 lines (81 loc) · 2.28 KB
/
db.test.ts
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
import * as fs from 'fs'
import { createDB, DB } from '../src/db'
import { expect } from 'chai'
describe('DB TestSuit', function () {
const dir = 'data'
if (fs.existsSync(dir)) {
// fs.rmdirSync(dir, { recursive: true })
}
const db: DB = createDB({ path: dir })
it('should set and get values', function () {
db.set('num', 42)
db.set('str', 'Hello world')
db.set('escaped string', `I'm good`)
db.set('user', { name: 'Alice', age: 20 })
expect(db.get('num')).to.equal(42)
expect(db.get('str')).to.equal('Hello world')
expect(db.get('escaped string')).to.equal(`I'm good`)
expect(db.get('user')).to.deep.equal({ name: 'Alice', age: 20 })
})
it('should delete values', function () {
db.set('num', 42)
expect(db.get('num')).to.equal(42)
db.del('num')
expect(db.get('num')).to.be.undefined
})
it('should clear all values', function () {
db.set(1, 1)
db.set(2, 2)
db.clear()
expect(db.get(1)).to.be.undefined
expect(db.get(2)).to.be.undefined
})
it('should load data of previous session', function () {
for (let i = 0; i < 12; i++) {
const db1 = createDB({ path: dir })
const value = Math.random()
db1.set('num', value)
const db2 = createDB({ path: dir })
expect(db2.get('num')).to.equal(value)
}
})
it('should support batch update', function () {
db.batch([
{ type: 'set', key: 1, value: 1 },
{ type: 'set', key: 2, value: 2 },
{ type: 'clear' },
{ type: 'set', key: 3, value: 3 },
{ type: 'set', key: 4, value: 4 },
{ type: 'del', key: 4 },
])
expect(db.get(1)).to.be.undefined
expect(db.get(2)).to.be.undefined
expect(db.get(3)).to.equal(3)
expect(db.get(4)).to.be.undefined
})
it('should get all keys', function () {
db.clear()
db.set('a', 1)
db.set('b', 1)
db.set('c', 1)
expect(db.keys()).to.deep.equal(['a', 'b', 'c'])
})
it('should get all entries', function () {
db.clear()
db.set('a', 1)
db.set('b', 2)
db.set('c', 3)
expect(db.entries()).to.deep.equal([
['a', 1],
['b', 2],
['c', 3],
])
})
it('should get all values', function () {
db.clear()
db.set('a', 1)
db.set('b', 2)
db.set('c', 3)
expect(db.values()).to.deep.equal([1, 2, 3])
})
})