You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2015/12/12 17:01:53 UTC

[32/35] couchdb commit: updated refs/heads/2876-js-tests-merged to 6d9b2eb

disable more tests due to missing _config


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/83425978
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/83425978
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/83425978

Branch: refs/heads/2876-js-tests-merged
Commit: 83425978b41d6c95d22fd3f9850d2754574d6a00
Parents: f67101a
Author: Jan Lehnardt <ja...@apache.org>
Authored: Sat Dec 12 13:30:13 2015 +0100
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Sat Dec 12 15:25:11 2015 +0100

----------------------------------------------------------------------
 test/javascript/tests/auth_cache.js          | 2 +-
 test/javascript/tests/cookie_auth.js         | 1 +
 test/javascript/tests/erlang_views.js        | 1 +
 test/javascript/tests/etags_views.js         | 2 +-
 test/javascript/tests/jsonp.js               | 1 +
 test/javascript/tests/oauth_users_db.js      | 1 +
 test/javascript/tests/proxyauth.js           | 1 +
 test/javascript/tests/reader_acl.js          | 1 +
 test/javascript/tests/recreate_doc.js        | 1 +
 test/javascript/tests/rewrite.js             | 1 +
 test/javascript/tests/security_validation.js | 2 ++
 test/javascript/tests/show_documents.js      | 2 ++
 test/javascript/tests/users_db.js            | 2 ++
 13 files changed, 16 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/auth_cache.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/auth_cache.js b/test/javascript/tests/auth_cache.js
index 85b2051..9a35732 100644
--- a/test/javascript/tests/auth_cache.js
+++ b/test/javascript/tests/auth_cache.js
@@ -11,7 +11,7 @@
 // the License.
 
 couchTests.auth_cache = function(debug) {
-  return console.log('TODO');
+  return console.log('TODO: config not available on cluster');
 
   if (debug) debugger;
 

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/cookie_auth.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/cookie_auth.js b/test/javascript/tests/cookie_auth.js
index 1c2992d..df4c9bd 100644
--- a/test/javascript/tests/cookie_auth.js
+++ b/test/javascript/tests/cookie_auth.js
@@ -11,6 +11,7 @@
 // the License.
 
 couchTests.cookie_auth = function(debug) {
+  return console.log('TODO: config not available on cluster');
   // This tests cookie-based authentication.
   //return console.log('TODO');
   // TODO: re-write so we get along withOUT changed config

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/erlang_views.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/erlang_views.js b/test/javascript/tests/erlang_views.js
index 30c8961..e1b111f 100644
--- a/test/javascript/tests/erlang_views.js
+++ b/test/javascript/tests/erlang_views.js
@@ -11,6 +11,7 @@
 // the License.
 
 couchTests.erlang_views = function(debug) {
+  return console.log('TODO: config not available on cluster');
   var db_name = get_random_db_name();
   var db = new CouchDB(db_name, {"X-Couch-Full-Commit":"false"});
   db.createDb();

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/etags_views.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/etags_views.js b/test/javascript/tests/etags_views.js
index e1f4cfa..bed98ed 100644
--- a/test/javascript/tests/etags_views.js
+++ b/test/javascript/tests/etags_views.js
@@ -11,7 +11,7 @@
 // the License.
 
 couchTests.etags_views = function(debug) {
-  return console.log('TODO - see https://issues.apache.org/jira/browse/COUCHDB-2859');
+  return console.log('TODO: see https://issues.apache.org/jira/browse/COUCHDB-2859');
   var db_name = get_random_db_name();
   var db = new CouchDB(db_name, {"X-Couch-Full-Commit":"true"});
   db.createDb();

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/jsonp.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/jsonp.js b/test/javascript/tests/jsonp.js
index 1013c9e..243d99d 100644
--- a/test/javascript/tests/jsonp.js
+++ b/test/javascript/tests/jsonp.js
@@ -28,6 +28,7 @@ function jsonp_chunk(doc) {
 
 // Do some jsonp tests.
 couchTests.jsonp = function(debug) {
+  return console.log('TODO: config not available on cluster');
   var db_name = get_random_db_name();
   var db = new CouchDB(db_name, {"X-Couch-Full-Commit":"false"});
   db.createDb();

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/oauth_users_db.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/oauth_users_db.js b/test/javascript/tests/oauth_users_db.js
index e244921..e427ea2 100644
--- a/test/javascript/tests/oauth_users_db.js
+++ b/test/javascript/tests/oauth_users_db.js
@@ -11,6 +11,7 @@
 // the License.
 
 couchTests.oauth_users_db = function(debug) {
+  return console.log('TODO: config not available on cluster');
   // This tests OAuth authentication using the _users DB instead of the ini
   // configuration for storing OAuth tokens and secrets.
 

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/proxyauth.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/proxyauth.js b/test/javascript/tests/proxyauth.js
index 79445a9..41fde23 100644
--- a/test/javascript/tests/proxyauth.js
+++ b/test/javascript/tests/proxyauth.js
@@ -13,6 +13,7 @@
  
  
 couchTests.proxyauth = function(debug) {
+  return console.log('TODO: config not available on cluster');
   // this test proxy authentification handler
 
   var users_db_name = get_random_db_name();

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/reader_acl.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/reader_acl.js b/test/javascript/tests/reader_acl.js
index 1535b5c..e1d9c5f 100644
--- a/test/javascript/tests/reader_acl.js
+++ b/test/javascript/tests/reader_acl.js
@@ -11,6 +11,7 @@
 // the License.
 
 couchTests.reader_acl = function(debug) {
+  return console.log('TODO: config not available on cluster');
   // this tests read access control
 
   var users_db_name = get_random_db_name();

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/recreate_doc.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/recreate_doc.js b/test/javascript/tests/recreate_doc.js
index cc8694b..3c70224 100644
--- a/test/javascript/tests/recreate_doc.js
+++ b/test/javascript/tests/recreate_doc.js
@@ -11,6 +11,7 @@
 // the License.
 
 couchTests.recreate_doc = function(debug) {
+  return console.log('TODO: compaction not available on cluster');
   var db_name = get_random_db_name();
   var db = new CouchDB(db_name, {"X-Couch-Full-Commit":"false"});
   db.createDb();

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/rewrite.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/rewrite.js b/test/javascript/tests/rewrite.js
index 8d7627a..dd56589 100644
--- a/test/javascript/tests/rewrite.js
+++ b/test/javascript/tests/rewrite.js
@@ -13,6 +13,7 @@
  
  
 couchTests.rewrite = function(debug) {
+  return console.log('TODO: config not available on cluster');
   if (debug) debugger;
   var dbNames = ["test_suite_db", "test_suite_db/with_slashes"];
   for (var i=0; i < dbNames.length; i++) {

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/security_validation.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/security_validation.js b/test/javascript/tests/security_validation.js
index 2847c29..619ba34 100644
--- a/test/javascript/tests/security_validation.js
+++ b/test/javascript/tests/security_validation.js
@@ -11,6 +11,8 @@
 // the License.
 
 couchTests.security_validation = function(debug) {
+  return console.log('TODO: config not available on cluster');
+
   // This tests couchdb's security and validation features. This does
   // not test authentication, except to use test authentication code made
   // specifically for this testing. It is a WWW-Authenticate scheme named

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/show_documents.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/show_documents.js b/test/javascript/tests/show_documents.js
index d337c7e..4987afc 100644
--- a/test/javascript/tests/show_documents.js
+++ b/test/javascript/tests/show_documents.js
@@ -11,6 +11,8 @@
 // the License.
 
 couchTests.show_documents = function(debug) {
+  return console.log('TODO: config not available on cluster');
+
   var db_name = get_random_db_name();
   var db = new CouchDB(db_name, {"X-Couch-Full-Commit":"false"});
   db.createDb();

http://git-wip-us.apache.org/repos/asf/couchdb/blob/83425978/test/javascript/tests/users_db.js
----------------------------------------------------------------------
diff --git a/test/javascript/tests/users_db.js b/test/javascript/tests/users_db.js
index 31173f7..b21bc9e 100644
--- a/test/javascript/tests/users_db.js
+++ b/test/javascript/tests/users_db.js
@@ -11,6 +11,8 @@
 // the License.
 
 couchTests.users_db = function(debug) {
+  return console.log('TODO: config not available on cluster');
+
   // This tests the users db, especially validations
   // this should also test that you can log into the couch