Sha256: 6839856c8284f71f44e2a1cc3d29517f80e7a999f850e0d4e2f2c4bcf979f65d

Contents?: true

Size: 1.29 KB

Versions: 7

Compression:

Stored size: 1.29 KB

Contents

module Spree
  module Api
    module TestingSupport
      module Helpers
        def json_response
          case body = JSON.parse(response.body)
          when Hash
            body.with_indifferent_access
          when Array
            body
          end
        end

        def assert_not_found!
          json_response.should == { "error" => "The resource you were looking for could not be found." }
          response.status.should == 404
        end

        def assert_unauthorized!
          json_response.should == { "error" => "You are not authorized to perform that action." }
          response.status.should == 401
        end

        def stub_authentication!
          Spree::LegacyUser.stub(:find_by).with(hash_including(:spree_api_key)) { current_api_user }
        end

        # This method can be overriden (with a let block) inside a context
        # For instance, if you wanted to have an admin user instead.
        def current_api_user
          @current_api_user ||= stub_model(Spree::LegacyUser, :email => "spree@example.com")
        end

        def image(filename)
          File.open(Spree::Api::Engine.root + "spec/fixtures" + filename)
        end

        def upload_image(filename)
          fixture_file_upload(image(filename).path, 'image/jpg')
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
spree_api-2.4.0.rc2 lib/spree/api/testing_support/helpers.rb
spree_api-2.4.0.rc1 lib/spree/api/testing_support/helpers.rb
spree_api-2.3.4 lib/spree/api/testing_support/helpers.rb
spree_api-2.3.3 lib/spree/api/testing_support/helpers.rb
spree_api-2.3.2 lib/spree/api/testing_support/helpers.rb
spree_api-2.3.1 lib/spree/api/testing_support/helpers.rb
spree_api-2.3.0 lib/spree/api/testing_support/helpers.rb