diff options
author | varac <varacanero@zeromail.org> | 2017-02-23 11:52:10 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2017-03-15 19:22:50 +0100 |
commit | 5035b80537d4f6d4f4d57a3a429d12fc4ca04d54 (patch) | |
tree | 36de82276dded87cb3e0ad9c22f4b0d14ab339a1 /tests/server-tests/helpers/couchdb_helper.rb | |
parent | cce9af1fce42c29bf062cccfc46ef356d83a6328 (diff) |
[8144] Remove Haproxy tests
Diffstat (limited to 'tests/server-tests/helpers/couchdb_helper.rb')
-rw-r--r-- | tests/server-tests/helpers/couchdb_helper.rb | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/tests/server-tests/helpers/couchdb_helper.rb b/tests/server-tests/helpers/couchdb_helper.rb index efb2c2bf..0b6671ee 100644 --- a/tests/server-tests/helpers/couchdb_helper.rb +++ b/tests/server-tests/helpers/couchdb_helper.rb @@ -31,35 +31,6 @@ class LeapTest end # - # generates a couchdb url for accessing couchdb via haproxy - # - # example properties: - # - # haproxy: - # couch: - # listen_port: 4096 - # servers: - # panda: - # backup: false - # host: localhost - # port: 4000 - # weight: 100 - # writable: true - # - def couchdb_url_via_haproxy(path="", options=nil) - path = path.gsub('"', '%22') - if options && options[:username] && options[:password] - userpart = "%{username}:%{password}@" % options - else - userpart = "" - end - port = assert_property('haproxy.couch.listen_port') - return URLString.new("http://#{userpart}localhost:#{port}#{path}").tap { |url| - url.memo = '(via haproxy)' - } - end - - # # generates a couchdb url for when couchdb is running locally. # # example properties: @@ -140,4 +111,4 @@ class LeapTest end end -end
\ No newline at end of file +end |