-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMember.spec.js
59 lines (49 loc) · 2.05 KB
/
Member.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
Screw.Unit(function() {
describe("A Member", function() {
//set up a fake proxy
var proxy = new Ext.ux.IRC.Proxy();
//we need to fake swfobject so as not to actually try to connect
swfobject = {embedSWF: Ext.emptyFn};
proxy.connect = Ext.emptyFn;
var member = new Ext.ux.IRC.Member({nickname: 'edspencer', proxy: proxy});
describe("when constructing", function() {
it("should assign config parameters to itself", function() {
expect(member.nickname).to(equal, 'edspencer');
});
it("should provide blank values for unspecified parameters", function() {
expect(member.username).to(equal, '');
expect(member.realname).to(equal, '');
expect(member.hostname).to(equal, '');
});
it("should maintain a reference to its proxy if one is given", function() {
expect(member.proxy).to(equal, proxy);
});
});
describe("listening to proxy events", function() {
var decoded = {
nickname: 'edspencer',
username: 'newUsername',
hostname: 'newHostname',
realname: 'Ed Spencer'
};
var decodedForSomeoneElse = {
nickname: 'someoneelse',
username: 'anotherUsername',
hostname: 'anotherHostname',
realname: 'William Adama'
};
it("should update its data when a whois-response-received event is fired by the proxy", function() {
proxy.fireEvent('whois-response-received', decoded);
expect(member.username).to(equal, 'newUsername');
expect(member.hostname).to(equal, 'newHostname');
expect(member.realname).to(equal, 'Ed Spencer');
});
it("should ignore WHOIS responses not aimed at itself", function() {
proxy.fireEvent('whois-response-received', decodedForSomeoneElse);
expect(member.username).to_not(equal, 'anotherUsername');
expect(member.username).to_not(equal, 'anotherHostname');
expect(member.username).to_not(equal, 'William Adama');
});
});
});
});