-
Notifications
You must be signed in to change notification settings - Fork 11
/
observe-003-cancel.js
180 lines (157 loc) · 6.16 KB
/
observe-003-cancel.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
/*
Handle a cancellation of an Observe request by calling the `Client.cancel`
method:
1. Client sends a request:
==============================================================================
Version | Type | Token Length | Code | Message ID
0 1 | 0 0 | 0 0 0 0 | 0 0 0 0 0 0 0 1 | 0x0001
1 | CON | 0 bytes | GET | 1
------------------------------------------------------------------------------
Remote Endpoint: 127.0.0.1
------------------------------------------------------------------------------
Observe : 0
Uri-Path: observer
==============================================================================
2. Server sends a piggy-backed response:
==============================================================================
Version | Type | Token Length | Code | Message ID
0 1 | 1 0 | 0 0 0 0 | 0 1 0 0 0 1 0 1 | 0x0001
1 | ACK | 0 bytes | 2.05 Content | 1
------------------------------------------------------------------------------
Remote Endpoint: 127.0.0.1
------------------------------------------------------------------------------
Observe : 1
Content-Format: text/plain;charset=utf-8
Max-Age : 10
------------------------------------------------------------------------------
Payload (1 byte)
1
==============================================================================
3. Client receives the #2 response. Request emits the `acknowledged` event
and the `response` event.
4. Client cancels the subscription. Request emits the `cancelled` event.
5. After 2s, server sends the first, non-confirmable notification:
==============================================================================
Version | Type | Token Length | Code | Message ID
0 1 | 0 1 | 0 0 0 0 | 0 1 0 0 0 1 0 1 | 0x4321
1 | NON | 0 bytes | 2.05 Content | 17185
------------------------------------------------------------------------------
Remote Endpoint: 127.0.0.1
------------------------------------------------------------------------------
Observe : 2
Content-Format: text/plain;charset=utf-8
Max-Age : 10
------------------------------------------------------------------------------
Payload (1 byte)
2
==============================================================================
6. Client receives the #5 notification, but ignores it as it's a NON and the
subscription was cancelled.
7. After another 2s, server sends the second, confirmable notification:
==============================================================================
Version | Type | Token Length | Code | Message ID
0 1 | 0 0 | 0 0 0 0 | 0 1 0 0 0 1 0 1 | 0x4322
1 | CON | 0 bytes | 2.05 Content | 17186
------------------------------------------------------------------------------
Remote Endpoint: 127.0.0.1
------------------------------------------------------------------------------
Observe : 3
Content-Format: text/plain;charset=utf-8
Max-Age : 10
------------------------------------------------------------------------------
Payload (1 byte)
3
==============================================================================
8. Client receives the #7 notification, but resets it as it's a CON and the
subscription was cancelled:
==============================================================================
Version | Type | Token Length | Code | Message ID
0 1 | 1 1 | 0 0 0 0 | 0 0 0 0 0 0 0 0 | 0x4322
1 | RST | 0 bytes | Empty | 17186
------------------------------------------------------------------------------
Remote Endpoint: 127.0.0.1
==============================================================================
*/
'use strict';
require('should');
var sinon = require('sinon');
var helpers = require('../helpers');
var Message = require(helpers.LIB_DIR).Message;
helpers.test(__filename, function(ctx)
{
var expectedRequest = {
type: Message.Type.CON,
code: Message.Code.GET,
id: 0x0001,
token: new Buffer([]),
uri: '/observer',
observe: 0
};
var expectedResponse = {
type: Message.Type.ACK,
code: Message.Code.CONTENT,
id: expectedRequest.id,
token: expectedRequest.token,
contentFormat: 'text/plain;charset=utf-8',
maxAge: 10,
observe: 1,
payload: new Buffer('1')
};
var expectedNonNotification = {
type: Message.Type.NON,
code: Message.Code.CONTENT,
id: 0x4321,
token: expectedRequest.token,
contentFormat: 'text/plain;charset=utf-8',
maxAge: 10,
observe: 2,
payload: new Buffer('2')
};
var expectedConNotification = {
type: Message.Type.CON,
code: Message.Code.CONTENT,
id: 0x4322,
token: expectedRequest.token,
contentFormat: 'text/plain;charset=utf-8',
maxAge: 10,
observe: 3,
payload: new Buffer('3')
};
var expectedNotificationRst = {
type: Message.Type.RST,
code: Message.Type.EMPTY,
id: expectedConNotification.id
};
ctx.socket.expectRequest(expectedRequest);
ctx.socket.scheduleResponse(50, expectedResponse);
ctx.socket.scheduleResponse(2050, expectedNonNotification);
ctx.socket.scheduleResponse(4050, expectedConNotification);
ctx.socket.expectRequest(4050, expectedNotificationRst);
var req = ctx.client.request(Message.fromObject(expectedRequest));
setTimeout(function() { ctx.client.cancel(req); }, 1000);
var eventSpy = sinon.spy(req, 'emit');
ctx.clock.tick(3600000);
return function assert()
{
ctx.socket.assert();
sinon.assert.callCount(eventSpy, 3);
sinon.assert.calledWith(
eventSpy, 'acknowledged', sinon.match.instanceOf(Message)
);
sinon.assert.calledWith(
eventSpy, 'response', sinon.match.instanceOf(Message)
);
sinon.assert.calledWith(
eventSpy, 'cancelled'
);
eventSpy.args[0][0].should.be.equal('acknowledged');
sinon.assert.coapMessage(
eventSpy.args[0][1], expectedResponse, "Invalid ACK."
);
eventSpy.args[1][0].should.be.equal('response');
sinon.assert.coapMessage(
eventSpy.args[1][1], expectedResponse, "Invalid `response`."
);
eventSpy.args[2][0].should.be.equal('cancelled');
};
});