forked from btford/angular-socket-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocket.spec.js
145 lines (100 loc) · 3.02 KB
/
socket.spec.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
/*
* angular-socket-io v0.4.0
* (c) 2014 Brian Ford http://briantford.com
* License: MIT
*/
'use strict';
describe('socketFactory', function () {
beforeEach(module('btford.socket-io'));
var socket,
scope,
$timeout,
$browser,
mockIoSocket,
spy;
beforeEach(inject(function (socketFactory, _$browser_, $rootScope, _$timeout_) {
$browser = _$browser_;
$timeout = _$timeout_;
scope = $rootScope.$new();
spy = jasmine.createSpy('emitSpy');
mockIoSocket = io.connect();
socket = socketFactory({
ioSocket: mockIoSocket,
scope: scope
});
}));
describe('#on', function () {
it('should apply asynchronously', function () {
socket.on('event', spy);
mockIoSocket.emit('event');
expect(spy).not.toHaveBeenCalled();
$timeout.flush();
expect(spy).toHaveBeenCalled();
});
});
describe('#emit', function () {
it('should call the delegate socket\'s emit', function () {
spyOn(mockIoSocket, 'emit');
socket.emit('event', {foo: 'bar'});
expect(mockIoSocket.emit).toHaveBeenCalled();
});
});
describe('#removeListener', function () {
it('should not call after removing an event', function () {
socket.on('event', spy);
socket.removeListener('event', spy);
mockIoSocket.emit('event');
expect($browser.deferredFns.length).toBe(0);
});
});
describe('#forward', function () {
it('should forward events', function () {
socket.forward('event');
scope.$on('socket:event', spy);
mockIoSocket.emit('event');
$timeout.flush();
expect(spy).toHaveBeenCalled();
});
it('should forward an array of events', function () {
socket.forward(['e1', 'e2']);
scope.$on('socket:e1', spy);
scope.$on('socket:e2', spy);
mockIoSocket.emit('e1');
mockIoSocket.emit('e2');
$timeout.flush();
expect(spy.callCount).toBe(2);
});
it('should remove watchers when the scope is removed', function () {
socket.forward('event');
scope.$on('socket:event', spy);
mockIoSocket.emit('event');
$timeout.flush();
expect(spy).toHaveBeenCalled();
scope.$destroy();
spy.reset();
mockIoSocket.emit('event');
expect(spy).not.toHaveBeenCalled();
});
it('should use the specified prefix', inject(function (socketFactory) {
var socket = socketFactory({
ioSocket: mockIoSocket,
scope: scope,
prefix: 'custom:'
});
socket.forward('event');
scope.$on('custom:event', spy);
mockIoSocket.emit('event');
$timeout.flush();
expect(spy).toHaveBeenCalled();
}));
it('should forward to the specified scope when one is provided', function () {
var child = scope.$new();
spyOn(child, '$broadcast');
socket.forward('event', child);
scope.$on('socket:event', spy);
mockIoSocket.emit('event');
$timeout.flush();
expect(child.$broadcast).toHaveBeenCalled();
});
});
});