summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes J. Schmidt <schmidt@netzmerk.com>2013-03-27 23:59:16 +0100
committerJohannes J. Schmidt <schmidt@netzmerk.com>2013-03-27 23:59:16 +0100
commitfe2dca093a629097b9d0e1e0575e9044a5908df3 (patch)
tree42dfb61eb61edfc4b570dd359a7b7372d7ffe452
parente18f0bdb3702a7874f1a6051bcf406d8c279b40c (diff)
downloadcouchdb-fe2dca093a629097b9d0e1e0575e9044a5908df3.tar.gz
Test attachment upload via multipart/form-data
This is used in Futon attachment upload.
-rw-r--r--share/www/script/test/attachments.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/share/www/script/test/attachments.js b/share/www/script/test/attachments.js
index db4524a92..2fa08ee25 100644
--- a/share/www/script/test/attachments.js
+++ b/share/www/script/test/attachments.js
@@ -298,4 +298,31 @@ couchTests.attachments= function(debug) {
var xhr = CouchDB.request("GET", "/test_suite_db/bin_doc7/attachment.txt");
TEquals('MntvB0NYESObxH4VRDUycw==', xhr.getResponseHeader("Content-MD5"));
+ // test attachment via multipart/form-data
+ var bin_doc8 = {
+ _id: "bin_doc8"
+ };
+ T(db.save(bin_doc8).ok);
+ var doc = db.open("bin_doc8");
+ var body = "------TF\r\n" +
+ "Content-Disposition: form-data; name=\"_rev\"\r\n\r\n" +
+ doc._rev + "\r\n" +
+ "------TF\r\n" +
+ "Content-Disposition: form-data; name=\"_attachments\"; filename=\"file.txt\"\r\n" +
+ "Content-Type: text/plain\r\n\r\n" +
+ "contents of file.txt\r\n\r\n" +
+ "------TF--"
+ xhr = CouchDB.request("POST", "/test_suite_db/bin_doc8", {
+ headers: {
+ "Content-Type": "multipart/form-data; boundary=----TF",
+ "Content-Length": body.length
+ },
+ body: body
+ });
+ TEquals(201, xhr.status);
+ TEquals(true, JSON.parse(xhr.responseText).ok);
+ var doc = db.open("bin_doc8");
+ T(doc._attachments);
+ T(doc._attachments['file.txt']);
+
};