Sha256: b4bc4e885da0d477758f38a750ccc491cfba5b2b60397d51d6e58e97dbe718c1

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

require 'spec_helper'

module Spree
  describe Api::V1::AddressesController do
    render_views

    before do
      stub_authentication!
      @address = create(:address)
    end

    context "with their own address" do
      before do
        Address.any_instance.stub :user => current_api_user
      end

      it "gets an address" do
        api_get :show, :id => @address.id
        json_response['address']['address1'].should eq @address.address1
      end

      it "updates an address" do
        api_put :update, :id => @address.id,
                         :address => { :address1 => "123 Test Lane" }
        json_response['address']['address1'].should eq '123 Test Lane'
      end
    end

    context "on somebody else's address" do
      before do
        Address.any_instance.stub :user => stub_model(Spree::LegacyUser)
      end

      it "cannot retreive address information" do
        api_get :show, :id => @address.id
        assert_unauthorized!
      end

      it "cannot update address information" do
        api_get :update, :id => @address.id
        assert_unauthorized!
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spree_api-1.2.5 spec/controllers/spree/api/v1/addresses_controller_spec.rb
spree_api-1.2.4 spec/controllers/spree/api/v1/addresses_controller_spec.rb
spree_api-1.2.3 spec/controllers/spree/api/v1/addresses_controller_spec.rb
spree_api-1.2.2 spec/controllers/spree/api/v1/addresses_controller_spec.rb