summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2011-05-17 19:18:57 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2011-05-17 19:18:57 +0000
commit589a5043e34c3bb98eb97b780fd015e0d1296152 (patch)
tree2693af69f5f8baf57c4278abcdf648b39222b521 /share
parent571edb05e32a2ae70ca7e1b1086ba937d2941a66 (diff)
Added extra assertions to the test for COUCHDB-885
This is to verify the attachments really exist in the target and have the right data and metadata. git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1104478 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r--share/www/script/test/replication.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/share/www/script/test/replication.js b/share/www/script/test/replication.js
index bde4ad11..ea6713e8 100644
--- a/share/www/script/test/replication.js
+++ b/share/www/script/test/replication.js
@@ -838,6 +838,12 @@ couchTests.replication = function(debug) {
T(copy !== null);
TEquals("undefined", typeof copy._conflicts);
TEquals("undefined", typeof copy._deleted_conflicts);
+ TEquals("text/plain", copy._attachments["hello.txt"]["content_type"]);
+ TEquals("aGVsbG8gd29ybGQ=", copy._attachments["hello.txt"]["data"]);
+ TEquals("gzip", copy._attachments["hello.txt"]["encoding"]);
+ TEquals("not/compressible", copy._attachments["foo.dat"]["content_type"]);
+ TEquals("aSBhbSBub3QgZ3ppcGVk", copy._attachments["foo.dat"]["data"]);
+ TEquals("undefined", typeof copy._attachments["foo.dat"]["encoding"]);
// end of test for COUCHDB-885