From e9970e71045eb9ea34976e24c287c729708f773d Mon Sep 17 00:00:00 2001 From: Jan Lehnardt Date: Thu, 3 Jun 2010 15:41:51 +0000 Subject: Add test case for by-doc-id replication with slashes. Patch by Filipe Manana. Closes COUCHDB-713. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@951038 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/test/replication.js | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/share/www/script/test/replication.js b/share/www/script/test/replication.js index c03ce430..d2b3164b 100644 --- a/share/www/script/test/replication.js +++ b/share/www/script/test/replication.js @@ -342,6 +342,25 @@ couchTests.replication = function(debug) { { _id: "foo3", value: "c" + }, + { + _id: "slashed/foo", + value: "s" + }, + { + _id: "_design/foobar", + language: "javascript", + value: "I am a design doc", + filters: { + idfilter: (function(doc, req) { + return doc.value == Number(req.filter_value); + }).toString() + }, + views: { + countview: (function(doc) { + emit(doc.value, 1); + }).toString() + } } ]; @@ -364,7 +383,11 @@ couchTests.replication = function(debug) { ["foo1", "foo3", "foo666"], ["foo1", "foo666"], ["foo666", "foo2"], - ["foo2", "foo9999", "foo1"] + ["foo2", "foo9999", "foo1"], + ["foo3", "slashed/foo"], + ["foo3", "slashed%2Ffoo"], + ["foo1", "_design/foobar"], + ["foo1", "foo1001", "_design%2Ffoobar"] ]; for (var i = 0; i < dbPairs.length; i++) { -- cgit v1.2.3