diff options
author | elijah <elijah@riseup.net> | 2016-04-08 10:41:54 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-04-08 10:41:54 -0700 |
commit | 82b15a8a071ba099cf52bb00c66caebdbd265273 (patch) | |
tree | 3f27b0673839be7d10ed5b401216ab79e43ce751 /tests/helpers/couchdb_helper.rb | |
parent | 44666c42ce836fb611dfd9c1b549e955c470814c (diff) | |
parent | eac3056c237d523f4786593922fe8f88eb65dff7 (diff) |
Merge branch 'feature/mxtest' into develop
Diffstat (limited to 'tests/helpers/couchdb_helper.rb')
-rw-r--r-- | tests/helpers/couchdb_helper.rb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/helpers/couchdb_helper.rb b/tests/helpers/couchdb_helper.rb index 27dabfcb..b9085c1e 100644 --- a/tests/helpers/couchdb_helper.rb +++ b/tests/helpers/couchdb_helper.rb @@ -103,4 +103,40 @@ class LeapTest end end + def assert_destroy_user_db(user_id, options=nil) + db_name = "user-#{user_id}" + url = couchdb_url("/#{db_name}", options) + http_options = {:ok_codes => [200, 404]} # ignore missing dbs + assert_delete(url, nil, http_options) + end + + def assert_create_user_db(user_id, options=nil) + db_name = "user-#{user_id}" + url = couchdb_url("/#{db_name}", options) + http_options = {:ok_codes => [200, 404]} # ignore missing dbs + assert_put(url, nil, :format => :json) do |body| + assert response = JSON.parse(body), "PUT response should be JSON" + assert response["ok"], "PUT response should be OK" + end + end + + # + # returns true if the per-user db created by soledad-server exists. + # + def user_db_exists?(user_id, options=nil) + db_name = "user-#{user_id}" + url = couchdb_url("/#{db_name}", options) + get(url) do |body, response, error| + if response.nil? + fail "could not query couchdb #{url}: #{error}\n#{body}" + elsif response.code.to_i == 200 + return true + elsif response.code.to_i == 404 + return false + else + fail ["could not query couchdb #{url}: expected response code 200 or 404, but got #{response.code}.", error, body].compact.join("\n") + end + end + end + end
\ No newline at end of file |