forked from gbezyuk/logux-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-pair.js
193 lines (179 loc) · 4.43 KB
/
test-pair.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
var LocalPair = require('./local-pair')
function clone (obj) {
if (Array.isArray(obj)) {
return obj.map(function (i) {
return clone(i)
})
} else if (typeof obj === 'object') {
var cloned = { }
for (var i in obj) {
cloned[i] = clone(obj[i])
}
return cloned
} else {
return obj
}
}
/**
* Two paired loopback connections with events tracking
* to be used in Logux tests.
*
* @param {number} [delay=1] Delay for connection and send events.
*
* @example
* import { testPair } from 'logux-sync'
* it('tracks events', () => {
* const pair = new testPair()
* const client = new ClientSync(pair.right)
* return pair.left.connect().then(() => {
* expect(pair.leftEvents).toEqual('connect')
* return pair.left.send(msg)
* }).then(() => {
* expect(pair.leftSent).toEqual([msg])
* })
* })
*
* @extends LocalPair
* @class
*/
function TestPair (delay) {
LocalPair.call(this, delay)
this.clear()
var pair = this
this.left.on('connect', function () {
pair.leftEvents.push(['connect'])
if (pair.waiting) pair.waiting('left')
})
this.right.on('connect', function () {
pair.rightEvents.push(['connect'])
if (pair.waiting) pair.waiting('right')
})
this.left.on('message', function (msg) {
var cloned = clone(msg)
pair.rightSent.push(cloned)
pair.leftEvents.push(['message', cloned])
if (pair.waiting) pair.waiting('left')
})
this.right.on('message', function (msg) {
var cloned = clone(msg)
pair.leftSent.push(cloned)
pair.rightEvents.push(['message', cloned])
if (pair.waiting) pair.waiting('right')
})
this.left.on('disconnect', function (reason) {
pair.leftEvents.push(['disconnect', reason])
if (pair.waiting) pair.waiting('left')
})
this.right.on('disconnect', function () {
pair.rightEvents.push(['disconnect'])
if (pair.waiting) pair.waiting('right')
})
}
TestPair.prototype = {
/**
* Sync instance used in this test, connected with {@link TestPair#left}.
* @type {Sync}
*
* @example
* function createTest () {
* test = new TestPair()
* test.leftSync = ClientSync('client', log, test.left)
* return test
* }
*/
leftSync: undefined,
/**
* Sync instance used in this test, connected with {@link TestPair#right}.
* @type {Sync}
*
* @example
* function createTest () {
* test = new TestPair()
* test.rightSync = ServerSync('client', log, test.right)
* return test
* }
*/
rightSync: undefined,
/**
* Clear all connections events and messages to test only last events.
*
* @return {undefined}
*
* @example
* client.connection.connect()
* return wait(1).then(() => {
* pair.clear() // Remove all connecting messages
* return client.log.add({ type: 'a' })
* }).then(() => {
* expect(pair.leftSent).toEqual([
* ['sync', …]
* ])
* })
*/
clear: function clear () {
/**
* Sent messages from {@link TestPair#left} connection.
* @type {Message[]}
*
* @example
* pair.left.send(msg).then(() => {
* pair.leftSent //=> [msg]
* })
*/
this.leftSent = []
/**
* Sent messages from {@link TestPair#right} connection.
* @type {Message[]}
*
* @example
* pair.right.send(msg)
* pair.rightSent //=> [msg]
*/
this.rightSent = []
/**
* Emitted events from {@link TestPair#left} connection.
* @type {Array[]}
*
* @example
* pair.left.connect().then(() => {
* pair.leftEvents //=> [['connect']]
* })
*/
this.leftEvents = []
/**
* Emitted events from {@link TestPair#right} connection.
* @type {Array[]}
*
* @example
* pair.right.connect().then(() => {
* pair.rightEvents //=> [['connect']]
* })
*/
this.rightEvents = []
},
/**
* Return Promise until next event.
*
* @param {"left"|"right"} [receiver] Wait for specific receiver event.
*
* @return {Promise} Promise until next event.
*
* @example
* pair.left.send(['test'])
* return pair.wait('left').then(() => {
* pair.leftSend //=> [['test']]
* })
*/
wait: function wait (receiver) {
var pair = this
return new Promise(function (resolve) {
pair.waiting = function (from) {
if (!receiver || from === receiver) {
pair.waiting = false
resolve(pair)
}
}
})
}
}
module.exports = TestPair