-
Notifications
You must be signed in to change notification settings - Fork 11
/
core-008-non-get-duplicate-response.js
85 lines (68 loc) · 2.59 KB
/
core-008-non-get-duplicate-response.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
/*
Handle a duplicate response to a non-confirmable GET request:
1. Client sends a request:
==============================================================================
Version | Type | Token Length | Code | Message ID
0 1 | 0 1 | 0 0 0 0 | 0 0 0 0 0 0 0 1 | 0x0001
1 | NON | 0 bytes | GET | 1
------------------------------------------------------------------------------
Remote Endpoint: 127.0.0.1
------------------------------------------------------------------------------
Uri-Path: temperature
==============================================================================
2. Server sends a response to the #1 request:
==============================================================================
Version | Type | Token Length | Code | Message ID
0 1 | 0 0 | 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
------------------------------------------------------------------------------
Payload (6 bytes)
22.3 C
==============================================================================
3. Client receives the #2 response. Request emits the `response` event.
4. Magic happens... The #2 response was duplicated along the way.
5. Client receives the duplicate response and ignores it (no `response` event
is emitted).
*/
'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.NON,
code: Message.Code.GET,
id: 0x0001,
token: new Buffer([]),
uri: '/temperature'
};
var expectedResponse = {
type: Message.Type.NON,
code: Message.Code.CONTENT,
id: 0x4321,
token: expectedRequest.token,
payload: new Buffer('22.3 C')
};
ctx.socket.expectRequest(expectedRequest);
ctx.socket.scheduleResponse(50, expectedResponse);
ctx.socket.scheduleResponse(75, expectedResponse);
var req = ctx.client.request(Message.fromObject(expectedRequest));
var eventSpy = sinon.spy(req, 'emit');
ctx.clock.tick(3600000);
return function assert()
{
ctx.socket.assert();
sinon.assert.callCount(eventSpy, 1);
sinon.assert.calledWith(
eventSpy, 'response', sinon.match.instanceOf(Message)
);
eventSpy.args[0][0].should.be.equal('response');
sinon.assert.coapMessage(
eventSpy.args[0][1], expectedResponse, "Invalid `response`."
);
};
});