Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
move COUCHDB-1178 test to conflicts.js
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1128708 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rnewson committed May 28, 2011
1 parent 31e900e commit 5bfca1d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
1 change: 0 additions & 1 deletion share/www/script/couch_tests.js
Expand Up @@ -76,7 +76,6 @@ loadTest("reduce.js");
loadTest("reduce_builtin.js");
loadTest("reduce_false.js");
loadTest("reduce_false_temp.js");
loadTest("regression.js");
loadTest("replication.js");
loadTest("replicator_db.js");
loadTest("rev_stemming.js");
Expand Down
25 changes: 25 additions & 0 deletions share/www/script/test/conflicts.js
Expand Up @@ -61,4 +61,29 @@ couchTests.conflicts = function(debug) {

T(db.save(doc2).ok); // we can save a new document over a deletion without
// knowing the deletion rev.

// Verify COUCHDB-1178
var r1 = {"_id":"doc","foo":"bar"};
var r2 = {"_id":"doc","foo":"baz","_rev":"1-4c6114c65e295552ab1019e2b046b10e"};
var r3 = {"_id":"doc","foo":"bam","_rev":"2-cfcd6781f13994bde69a1c3320bfdadb"};
var r4 = {"_id":"doc","foo":"bat","_rev":"3-cc2f3210d779aef595cd4738be0ef8ff"};

T(db.save({"_id":"_design/couchdb-1178","validate_doc_update":"function(){}"}).ok);
T(db.save(r1).ok);
T(db.save(r2).ok);
T(db.save(r3).ok);

T(db.compact().ok);
while (db.info().compact_running) {};

TEquals({"_id":"doc",
"_rev":"3-cc2f3210d779aef595cd4738be0ef8ff",
"foo":"bam",
"_revisions":{"start":3,
"ids":["cc2f3210d779aef595cd4738be0ef8ff",
"cfcd6781f13994bde69a1c3320bfdadb",
"4c6114c65e295552ab1019e2b046b10e"]}},
db.open("doc", {"revs": true}));
TEquals([], db.bulkSave([r4, r3, r2], {"new_edits":false}), "no failures");

};

0 comments on commit 5bfca1d

Please sign in to comment.