aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2013-01-07 08:33:36 +0100
committerJames Lal <james@lightsofapollo.com>2013-01-07 08:33:36 +0100
commit0b6e8afda0bc88fdfe0a64a15abfe537b5569bf7 (patch)
treef5b8c7d9322fae5cdf579e43e5a8a16fa0b55e78 /test
parent90090182c63617015830116dd4100136ed8c6b8b (diff)
parent042257fc2db8b1f6afb81ff77bca60c0fd820883 (diff)
downloadjsCalDAV-0b6e8afda0bc88fdfe0a64a15abfe537b5569bf7.tar.gz
Merge branch 'master' of github.com:mozilla-b2g/caldav
Diffstat (limited to 'test')
-rw-r--r--test/caldav/request/abstract_test.js4
-rw-r--r--test/caldav/request/calendar_home_test.js24
-rw-r--r--test/caldav/sax/dav_response_test.js6
3 files changed, 28 insertions, 6 deletions
diff --git a/test/caldav/request/abstract_test.js b/test/caldav/request/abstract_test.js
index 88d8b2b..ee70b67 100644
--- a/test/caldav/request/abstract_test.js
+++ b/test/caldav/request/abstract_test.js
@@ -83,9 +83,9 @@ suite('caldav/request/abstract.js', function() {
xhr = getXhr();
xhr.respond('NOT XML <div>', 500);
});
-
+
test('on response', function() {
- assert.match(calledWith[0].message, /http error/);
+ assert.equal(calledWith[0].code, 500);
});
});
diff --git a/test/caldav/request/calendar_home_test.js b/test/caldav/request/calendar_home_test.js
index 88eb905..13483ad 100644
--- a/test/caldav/request/calendar_home_test.js
+++ b/test/caldav/request/calendar_home_test.js
@@ -9,6 +9,7 @@ suite('caldav/request/propfind', function() {
var MockRequest;
var MockPropfind;
var Home;
+ var Errors;
var subject;
var con;
@@ -19,6 +20,7 @@ suite('caldav/request/propfind', function() {
Connection = Caldav.require('connection');
Home = Caldav.require('request/calendar_home');
MockRequest = Caldav.require('support/mock_request');
+ Errors = Caldav.require('request/errors');
});
suiteSetup(function() {
@@ -74,7 +76,7 @@ suite('caldav/request/propfind', function() {
response[url] = {
'current-user-principal': {
status: '200',
- value: 'foo.com/'
+ value: { href:'foo.com/' }
}
};
@@ -94,7 +96,7 @@ suite('caldav/request/propfind', function() {
},
'principal-URL': {
status: '200',
- value: 'bar.com/'
+ value: { href: 'bar.com/' }
}
};
@@ -102,6 +104,24 @@ suite('caldav/request/propfind', function() {
assert.equal(data, 'bar.com/');
});
+
+ test('unauthenticated', function() {
+ var req = request('_findPrincipal');
+
+ response[url] = {
+ 'principal-URL': {
+ status: '200',
+ value: {
+ unauthenticated: {}
+ }
+ }
+ };
+
+ req.respond(null, response);
+
+ assert.equal(true, err instanceof Errors.UnauthenticatedError);
+ });
+
});
suite('#_findCalendarHome', function() {
diff --git a/test/caldav/sax/dav_response_test.js b/test/caldav/sax/dav_response_test.js
index 926f975..d435ef8 100644
--- a/test/caldav/sax/dav_response_test.js
+++ b/test/caldav/sax/dav_response_test.js
@@ -85,7 +85,9 @@ suite('caldav/sax/dav_response', function() {
'principal-URL': {
status: '200',
- value: '/calendar/pinc/'
+ value: {
+ href: '/calendar/pinc/'
+ }
},
resourcetype: {
@@ -98,7 +100,7 @@ suite('caldav/sax/dav_response', function() {
'current-user-principal': {
status: '404',
- value: null
+ value: {}
}
},