From bbd217f334475cd83eaaf24cda71100d4db0efb0 Mon Sep 17 00:00:00 2001 From: John Christopher Anderson Date: Fri, 30 Jan 2009 01:40:38 +0000 Subject: POST to create docs returns a Location header. fixes COUCHDB-8 git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@739133 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/couch_tests.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'share/www/script') diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index a6c47a7d..89a979b4 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -140,6 +140,18 @@ var tests = { // make sure we can still open T(db.open(existingDoc._id, {rev: existingDoc._rev}) != null); + + // test that the POST response has a Location header + var xhr = CouchDB.request("POST", "/test_suite_db", { + body: JSON.stringify({"foo":"bar"}) + }); + var resp = JSON.parse(xhr.responseText); + T(resp.ok); + var loc = xhr.getResponseHeader("Location"); + T(loc, "should have a Location header"); + var locs = loc.split('/'); + T(locs[4] == resp.id); + T(locs[3] == "test_suite_db"); }, delayed_commits: function(debug) { -- cgit v1.2.3