From ec875169b0231d84bb8c55bbe91c52b896561f1e Mon Sep 17 00:00:00 2001 From: Azul Date: Mon, 12 Sep 2016 16:34:25 +0200 Subject: test: separate remote tests into own directory Dropped the webmock dependency. We have our own http adapter. So we can stub that to inject a mock. As an added bonus this does not mess with other http requests. Also wrote down testing strategy. Not completely implemented yet. --- test/support/http_stub_helper.rb | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 test/support/http_stub_helper.rb (limited to 'test/support/http_stub_helper.rb') diff --git a/test/support/http_stub_helper.rb b/test/support/http_stub_helper.rb new file mode 100644 index 0000000..6b05f98 --- /dev/null +++ b/test/support/http_stub_helper.rb @@ -0,0 +1,38 @@ +module HttpStubHelper + + def stubbing_http + Nickserver::Adapters::CelluloidHttp.stub :new, adapter do + yield + end + adapter.verify + end + + def stub_sks_vindex_reponse(uid, response = {}) + stub_http_request :get, config.hkp_url, + query: {op: 'vindex', search: uid, exact: 'on', options: 'mr', fingerprint: 'on'}, + response: response + end + + def stub_sks_get_reponse(key_id, response = {}) + stub_http_request :get, config.hkp_url, + query: {op: 'get', search: "0x"+key_id, exact: 'on', options: 'mr'}, + response: response + end + + def stub_couch_response(uid, response = {}) + query = "\?key=#{"%22#{uid}%22"}&reduce=false" + stub_http_request :get, + /#{Regexp.escape(config.couch_url)}.*#{query}/, + response: response + end + + def stub_http_request(verb, url, options = {}) + response = {status: 200, body: ""}.merge(options.delete(:response) || {}) + adapter.expect :get, [response[:status], response[:body]], + [url, options] + end + + def adapter + @adapter ||= MiniTest::Mock.new + end +end -- cgit v1.2.3