// Licensed under the Apache License, Version 2.0 (the "License"); you may not // use this file except in compliance with the License. You may obtain a copy of // the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the // License for the specific language governing permissions and limitations under // the License. // Used by replication test if (typeof window == 'undefined' || !window) { CouchDB.host = "127.0.0.1:5984"; CouchDB.inBrowser = false; } else { CouchDB.host = window.location.host; CouchDB.inBrowser = true; } var couchTests = {}; function loadTest(file) { loadScript("script/test/"+file); }; loadTest("basics.js"); loadTest("batch_save.js"); loadTest("delayed_commits.js"); loadTest("all_docs.js"); loadTest("conflicts.js"); loadTest("recreate_doc.js"); loadTest("copy_doc.js"); loadTest("uuids.js"); loadTest("bulk_docs.js"); loadTest("lots_of_docs.js"); loadTest("reduce.js"); loadTest("reduce_false.js"); loadTest("reduce_builtin.js"); loadTest("design_options.js"); loadTest("multiple_rows.js"); loadTest("large_docs.js"); loadTest("utf8.js"); loadTest("jsonp.js"); loadTest("attachments.js"); loadTest("attachment_names.js"); loadTest("attachment_paths.js"); loadTest("attachment_views.js"); loadTest("design_paths.js"); loadTest("content_negotiation.js"); loadTest("design_docs.js"); loadTest("invalid_docids.js"); loadTest("view_collation.js"); loadTest("view_conflicts.js"); loadTest("view_errors.js"); loadTest("view_include_docs.js"); loadTest("view_multi_key_all_docs.js"); loadTest("view_multi_key_design.js"); loadTest("view_multi_key_temp.js"); loadTest("view_offsets.js"); loadTest("view_pagination.js"); loadTest("view_sandboxing.js"); loadTest("view_xml.js"); loadTest("changes.js"); loadTest("replication.js"); loadTest("etags_head.js"); loadTest("etags_views.js"); loadTest("show_documents.js"); loadTest("update_documents.js"); loadTest("list_views.js"); loadTest("compact.js"); loadTest("purge.js"); loadTest("config.js"); loadTest("form_submit.js"); loadTest("security_validation.js"); loadTest("cookie_auth.js"); loadScript("script/sha1.js"); loadScript("script/oauth.js"); loadTest("oauth.js"); loadTest("stats.js"); loadTest("rev_stemming.js"); loadTest("erlang_views.js"); function makeDocs(start, end, templateDoc) { var templateDocSrc = templateDoc ? JSON.stringify(templateDoc) : "{}" if (end === undefined) { end = start; start = 0; } var docs = [] for (var i = start; i < end; i++) { var newDoc = eval("(" + templateDocSrc + ")"); newDoc._id = (i).toString(); newDoc.integer = i; newDoc.string = (i).toString(); docs.push(newDoc) } return docs; } function run_on_modified_server(settings, fun) { try { // set the settings for(var i=0; i < settings.length; i++) { var s = settings[i]; var xhr = CouchDB.request("PUT", "/_config/" + s.section + "/" + s.key, { body: JSON.stringify(s.value), headers: {"X-Couch-Persist": "false"} }); CouchDB.maybeThrowError(xhr); s.oldValue = xhr.responseText; } // run the thing fun(); } finally { // unset the settings for(var j=0; j < i; j++) { var s = settings[j]; CouchDB.request("PUT", "/_config/" + s.section + "/" + s.key, { body: s.oldValue, headers: {"X-Couch-Persist": "false"} }); } } } function stringFun(fun) { var string = fun.toSource ? fun.toSource() : "(" + fun.toString() + ")"; return string; } function restartServer() { CouchDB.request("POST", "/_restart"); }