Sha256: db170c2450885edb4ea190a17fae89a098a58242abe81af5cb7efb9902705aa3
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true require 'api_signature/spec_support/path_builder' require 'api_signature/spec_support/headers_builder' module ApiSignature module SpecSupport module Helper include Rack::Test::Methods def app Rails.app_class end def get_with_signature(client, *args) with_signature(:get, client.api_key, client.api_secret, *args) end def post_with_signature(client, *args) with_signature(:post, client.api_key, client.api_secret, *args) end def put_with_signature(client, *args) with_signature(:put, client.api_key, client.api_secret, *args) end alias patch_with_signature put_with_signature def delete_with_signature(client, *args) with_signature(:delete, client.api_key, client.api_secret, *args) end private def with_signature(http_method, api_key, secret, action_name, params = {}) path = PathBuilder.new(controller, action_name, params).path headers = HeadersBuilder.new(api_key, secret, http_method, path).headers send(http_method, path, params, headers) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
api_signature-0.1.2 | lib/api_signature/spec_support/helper.rb |
api_signature-0.1.1 | lib/api_signature/spec_support/helper.rb |