summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2017-12-21 21:21:21 -0800
committerelijah <elijah@riseup.net>2017-12-21 22:11:50 -0800
commit01a398fd1d7cb753c4e4abdd48d23f4f75486780 (patch)
treea272d18e6c03ebcb1d8c5b6dd187972b5e5bb730
parent13854eb35134260eb184b94eb5d1092546379bb6 (diff)
skip soledad db test for now (closes #8899)
-rw-r--r--tests/server-tests/white-box/couchdb.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/server-tests/white-box/couchdb.rb b/tests/server-tests/white-box/couchdb.rb
index dcf71bc7..f8223bd2 100644
--- a/tests/server-tests/white-box/couchdb.rb
+++ b/tests/server-tests/white-box/couchdb.rb
@@ -51,20 +51,26 @@ class CouchDB < LeapTest
end
end
+ #
+ # TODO: test for the existance of 'soledad' user if soledad service is enabled.
+ #
def test_04_Do_ACL_users_exist?
- acl_users = ['_design/_auth', 'leap_mx', 'nickserver', 'soledad', 'webapp', 'replication']
+ acl_users = ['_design/_auth', 'leap_mx', 'nickserver', 'webapp', 'replication']
url = couchdb_backend_url("/_users/_all_docs", :username => 'admin')
assert_get(url) do |body|
response = JSON.parse(body)
- assert_equal acl_users.count, response['total_rows']
actual_users = response['rows'].map{|row| row['id'].sub(/^org.couchdb.user:/, '') }
+ actual_users.delete('soledad') # for now, ignore user 'soledad'
assert_equal acl_users.sort, actual_users.sort
end
pass
end
+ #
+ # TODO: test for the existance of 'shared' db if soledad service is enabled.
+ #
def test_05_Do_required_databases_exist?
- dbs_that_should_exist = ["customers","identities","keycache","shared","tickets","users", "tmp_users"]
+ dbs_that_should_exist = ["customers","identities","keycache","tickets","users", "tmp_users"]
dbs_that_should_exist << "tokens_#{rotation_suffix}"
dbs_that_should_exist << "sessions_#{rotation_suffix}"
dbs_that_should_exist.each do |db_name|