mirror of
https://github.com/etesync/android
synced 2024-11-30 03:48:27 +00:00
c753dcaa8e
* RoboHydra tests * intelligent URL sanitizing (fixes #58, fixes #49, see issue #11, should fix #45)
52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
var roboHydraHeadDAV = require("../headdav");
|
|
|
|
exports.getBodyParts = function(conf) {
|
|
return {
|
|
heads: [
|
|
/* address-book home set */
|
|
new RoboHydraHeadDAV({
|
|
path: "/dav-invalid/addressbooks/user%40domain/",
|
|
handler: function(req,res,next) {
|
|
if (req.method == "PROPFIND" && req.rawBody.toString().match(/addressbook-description/)) {
|
|
res.statusCode = 207;
|
|
res.write('\<?xml version="1.0" encoding="utf-8" ?>\
|
|
<multistatus xmlns="DAV:">\
|
|
<response>\
|
|
<href>/dav/addressbooks/user@domain/My Contacts:1.vcf/</href>\
|
|
<propstat>\
|
|
<prop xmlns:CARD="urn:ietf:params:xml:ns:carddav">\
|
|
<resourcetype>\
|
|
<collection/>\
|
|
<CARD:addressbook/>\
|
|
</resourcetype>\
|
|
<CARD:addressbook-description>\
|
|
Address Book with dubious characters in path\
|
|
</CARD:addressbook-description>\
|
|
</prop>\
|
|
<status>HTTP/1.1 200 OK</status>\
|
|
</propstat>\
|
|
</response>\
|
|
<response>\
|
|
<href>HTTPS://example.com/user@domain/absolute-url.vcf</href>\
|
|
<propstat>\
|
|
<prop xmlns:CARD="urn:ietf:params:xml:ns:carddav">\
|
|
<resourcetype>\
|
|
<collection/>\
|
|
<CARD:addressbook/>\
|
|
</resourcetype>\
|
|
<CARD:addressbook-description>\
|
|
Address Book with absolute URL\
|
|
</CARD:addressbook-description>\
|
|
</prop>\
|
|
<status>HTTP/1.1 200 OK</status>\
|
|
</propstat>\
|
|
</response>\
|
|
</multistatus>\
|
|
');
|
|
}
|
|
}
|
|
})
|
|
]
|
|
};
|
|
};
|