Skip to content

Commit 8565995

Browse files
committed
βœ… πŸ“š test read and writing nested keys.
test read and writing nested keys. βœ… Adding a test, πŸ“š Documentation
1 parent 0b1e32c commit 8565995

File tree

2 files changed

+51
-2
lines changed

2 files changed

+51
-2
lines changed

β€ŽREADME.md

+10
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,16 @@ try {
153153
console.log(err)
154154
}
155155

156+
// It's possible to pass arrays as key names. This is especially useful if you want to scope your data to a specific user or group. Internally all array keys will be joined with a `.` character.
157+
158+
await db.set<ExampleData>(['user', 'testUserId'], {
159+
value: {
160+
displayName: 'Test User'
161+
}
162+
})
163+
164+
await db.get<ExampleData>(['user', 'testUserId'])
165+
156166
await db.has('key') // true
157167

158168
await db.keys() // ['key']

β€Ž__tests__/GistDatabase.test.ts

+41-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms))
66
let index = 0
77

88
for (const compressionType of Object.values(CompressionType)) {
9+
// for (const compressionType of [CompressionType.msgpack]) {
910
it('GistDatabase - initialize with existing gist id', async () => {
1011
const db = new GistDatabase({
1112
token: process.env.GIST_TOKEN
@@ -203,7 +204,45 @@ it('get and set and del static util functions', () => {
203204
expect(GistDatabase.get(res, ['a'])).toBe(2)
204205
})
205206

206-
describe('GistDatabase - advanced scenario', () => {
207+
describe('GistDatabase - works with nested keys', () => {
208+
let db: GistDatabase
209+
beforeAll(async () => {
210+
db = new GistDatabase({
211+
token: process.env.GIST_TOKEN,
212+
compression: CompressionType.pretty
213+
})
214+
})
215+
afterAll(async () => {
216+
await db.destroy()
217+
})
218+
it('writes and reads a nested key', async () => {
219+
await db.set(['parent'], {
220+
value: {
221+
name: 'parent'
222+
}
223+
})
224+
225+
await db.set(['parent', 'child'], {
226+
value: {
227+
name: 'child'
228+
}
229+
})
230+
231+
expect(await db.get(['parent'])).toMatchObject({
232+
value: {
233+
name: 'parent'
234+
}
235+
})
236+
237+
expect(await db.get(['parent', 'child'])).toMatchObject({
238+
value: {
239+
name: 'child'
240+
}
241+
})
242+
})
243+
})
244+
245+
describe('GistDatabase - advanced scenario 1', () => {
207246
let db: GistDatabase
208247
beforeAll(async () => {
209248
db = new GistDatabase({
@@ -299,7 +338,7 @@ describe('GistDatabase - advanced scenario', () => {
299338
})
300339
})
301340

302-
describe('GistDatabase - advanced scenario', () => {
341+
describe('GistDatabase - advanced scenario 2', () => {
303342
let db: GistDatabase
304343
beforeAll(async () => {
305344
db = new GistDatabase({

0 commit comments

Comments
Β (0)