-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
49 lines (46 loc) · 1.42 KB
/
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
const test = require('tape')
const ras = require('random-access-storage')
const ram = require('random-access-memory')
const proxy = require('./')
test('proxy([target])', (t) => {
{
const hello = Buffer.from('hello')
const goodbye = Buffer.from('goodbye')
const memory = ram()
const a = proxy(memory)
const b = proxy(memory)
a.write(0, hello, (err) => {
t.notOk(err)
b.read(0, hello.length, (err, buffer) => {
t.notOk(err)
t.ok(0 === Buffer.compare(buffer, hello))
const c = proxy(b)
c.read(0, hello.length, (err, buffer) => {
t.notOk(err)
t.ok(0 === Buffer.compare(buffer, hello))
c.reset()
c.write(0, goodbye, (err) => {
t.ok(err)
c.setTarget(ram())
c.write(0, goodbye, (err) => {
t.notOk(err)
c.read(0, goodbye.length, (err, buffer) => {
t.notOk(err)
t.ok(0 === Buffer.compare(buffer, goodbye))
a.read(0, hello.length, (err, buffer) => {
t.notOk(err)
t.ok(0 === Buffer.compare(buffer, hello))
b.read(0, hello.length, (err, buffer) => {
t.notOk(err)
t.ok(0 === Buffer.compare(buffer, hello))
t.end()
})
})
})
})
})
})
})
})
}
})