summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-06-28 13:16:47 -0400
committerMicah <micah@leap.se>2016-06-30 09:41:19 -0400
commitd0ff379fe2a43d7968b8828c8b31af5254f6f85b (patch)
tree35ffe6576ea383e9e6bfcd70d7908e5b58400089 /tests
parent8e0fdbb46761505b9188c9ea2a6c0df0c55ac458 (diff)
Remove bigcouch (#8056)
Change-Id: I0c6e27298c63bd37de1410985d054799818c22a4
Diffstat (limited to 'tests')
-rw-r--r--tests/white-box/couchdb.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/white-box/couchdb.rb b/tests/white-box/couchdb.rb
index 85dc6840..44a2769b 100644
--- a/tests/white-box/couchdb.rb
+++ b/tests/white-box/couchdb.rb
@@ -27,23 +27,6 @@ class CouchDB < LeapTest
end
#
- # compare the configured nodes to the nodes that are actually listed in bigcouch
- #
- def test_02_Is_cluster_membership_ok?
- return unless multimaster?
- url = couchdb_backend_url("/nodes/_all_docs")
- neighbors = assert_property('couch.bigcouch.neighbors')
- neighbors << assert_property('domain.full')
- neighbors.sort!
- assert_get(url) do |body|
- response = JSON.parse(body)
- nodes_in_db = response['rows'].collect{|row| row['id'].sub(/^bigcouch@/, '')}.sort
- assert_equal neighbors, nodes_in_db, "The couchdb replication node list is wrong (/nodes/_all_docs)"
- end
- pass
- end
-
- #
# all configured nodes are in 'cluster_nodes'
# all nodes online and communicating are in 'all_nodes'
#