Sha256: 56e3cb7cab23c1302007371252986e17398fbd2e123563a3be47ec0a4da5e4cb

Contents?: true

Size: 827 Bytes

Versions: 4

Compression:

Stored size: 827 Bytes

Contents

require 'shared_examples/protect_product_actions'
require 'spec_helper'

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

    let!(:product) { create(:product) }
    let(:attributes) { [:id, :name, :description, :price, :available_on, :permalink, :count_on_hand, :meta_description, :meta_keywords, :taxon_ids] }

    context "without authentication" do
      before { Spree::Api::Config[:requires_authentication] = false }

      it "retreives a list of products" do
        api_get :index
        json_response["products"].first.should have_attributes(attributes)
        json_response["count"].should == 1
        json_response["current_page"].should == 1
        json_response["pages"].should == 1
      end

      it_behaves_like "modifying product actions are restricted"
    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/unauthenticated_products_controller_spec.rb
spree_api-1.2.4 spec/controllers/spree/api/v1/unauthenticated_products_controller_spec.rb
spree_api-1.2.3 spec/controllers/spree/api/v1/unauthenticated_products_controller_spec.rb
spree_api-1.2.2 spec/controllers/spree/api/v1/unauthenticated_products_controller_spec.rb