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
|
requireRequest();
testSupport.lib('query_builder');
testSupport.lib('request/propfind');
testSupport.lib('request/calendar_query');
suite('caldav/request/calendar_query', function() {
var Propfind,
FakeXhr,
Builder,
CalendarQuery,
Connection,
con,
Xhr,
Template,
oldXhrClass,
SaxResponse;
var url = 'http://google.com',
subject;
suiteSetup(function() {
// this is way to much stuff
Propfind = Caldav.require('request/propfind');
Builder = Caldav.require('query_builder');
CalendarQuery = Caldav.require('request/calendar_query');
SaxResponse = Caldav.require('sax/dav_response');
Connection = Caldav.require('connection');
FakeXhr = Caldav.require('support/fake_xhr');
Template = Caldav.require('template');
Xhr = Caldav.require('xhr');
oldXhrClass = Xhr.prototype.xhrClass;
Xhr.prototype.xhrClass = FakeXhr;
});
suiteTeardown(function() {
Xhr.prototype.xhrClass = oldXhrClass;
});
setup(function() {
con = new Connection();
subject = new CalendarQuery(con, { url: url });
FakeXhr.instances.length = 0;
});
test('initializer', function() {
assert.instanceOf(subject, Propfind);
assert.deepEqual(subject._props, []);
assert.equal(subject.xhr.headers['Depth'], 1);
assert.equal(subject.xhr.method, 'REPORT');
assert.instanceOf(subject.data, Builder);
assert.instanceOf(subject.filter, Builder);
});
test('#_createPayload', function() {
subject.prop('getetag');
var cal = subject.data.
setComp('VCALENDAR').
comp('VEVENT').
prop('NAME');
var filter = subject.filter.
setComp('VCALENDAR').
comp('VEVENT');
var props = [
'<N0:getetag />',
'<N1:calendar-data>',
'<N1:comp name="VCALENDAR">',
'<N1:comp name="VEVENT">',
'<N1:prop name="NAME" />',
'</N1:comp>',
'</N1:comp>',
'</N1:calendar-data>'
].join('');
var filter = [
'<N1:comp-filter name="VCALENDAR">',
'<N1:comp-filter name="VEVENT" />',
'</N1:comp-filter>'
].join('');
var expected = [
subject.template.doctype,
'<N1:calendar-query xmlns:N0="DAV:" ',
'xmlns:N1="urn:ietf:params:xml:ns:caldav">',
'<N0:prop>', props, '</N0:prop>',
'<N1:filter>', filter, '</N1:filter>',
'</N1:calendar-query>'
].join('');
assert.equal(subject._createPayload(), expected);
});
suite('integration', function() {
var xml,
data,
result,
xhr,
calledWith;
testSupport.defineSample('xml/propget.xml', function(data) {
xml = data;
});
setup(function(done) {
subject.prop('foo');
subject.send(function(err, tree) {
data = tree;
done();
});
xhr = FakeXhr.instances.pop();
xhr.respond(xml, 207);
});
test('simple tree', function() {
assert.ok(data['/calendar/user/']);
});
});
});
|