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
|
requireRequest();
testSupport.lib('request/propfind');
testSupport.lib('request/calendar_query');
suite('caldav/request/calendar_query', function() {
var Propfind,
FakeXhr,
CalendarData,
CalendarQuery,
CalendarFilter,
Xhr,
Template,
oldXhrClass,
SaxResponse;
var url = 'http://google.com',
subject;
suiteSetup(function() {
Propfind = Caldav.require('request/propfind');
CalendarData = Caldav.require('templates/calendar_data');
CalendarFilter = Caldav.require('templates/calendar_filter');
CalendarQuery = Caldav.require('request/calendar_query');
SaxResponse = Caldav.require('sax/dav_response');
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() {
subject = new CalendarQuery(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.fields, CalendarData);
assert.instanceOf(subject.filters, CalendarFilter);
});
test('#_createPayload', function() {
subject.prop('getetag');
subject.fields.select('VEVENT', ['NAME']);
subject.filters.add('VEVENT', true);
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() {
return;
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/']);
});
});
});
|