Files
openfoodnetwork/spec/controllers/api/v0/states_controller_spec.rb
Maikel Linke dcb6f4676d Remove all unnecessary spec_helper require statements
The `.rspec` file is doing this for us.
2026-01-21 12:35:34 +11:00

68 lines
1.9 KiB
Ruby

# frozen_string_literal: true
module Api
RSpec.describe V0::StatesController do
render_views
let!(:state) { create(:state, name: "Victoria") }
let(:attributes) { [:id, :name, :abbr, :country_id] }
let(:current_user) { create(:user) }
before do
allow(controller).to receive(:spree_current_user) { current_user }
end
it "gets all states" do
api_get :index
expect(json_response.first.symbolize_keys.keys).to include(*attributes)
expect(json_response.pluck(:name)).to include(state.name)
end
context "pagination" do
it "does not paginate states results when asked not to do so" do
expect(controller).not_to receive(:pagy)
api_get :index
end
it "paginates when page parameter is passed through" do
expect(controller).to receive(:pagy)
api_get :index, page: 1
end
it "paginates when per_page parameter is passed through" do
expect(controller).to receive(:pagy)
api_get :index, per_page: 25
end
end
context "with two states" do
before { create(:state, name: "New South Wales") }
it "gets all states for a country" do
country = create(:country, states_required: true)
state.country = country
state.save
api_get :index, country_id: country.id
expect(json_response.first.symbolize_keys.keys).to include(*attributes)
expect(json_response.count).to eq 1
end
it "can view all states" do
api_get :index
expect(json_response.first.symbolize_keys.keys).to include(*attributes)
end
it 'can query the results through a paramter' do
api_get :index, q: { name_cont: 'Vic' }
expect(json_response.first['name']).to eq("Victoria")
end
end
it "can view a state" do
api_get :show, id: state.id
expect(json_response.symbolize_keys.keys).to include(*attributes)
end
end
end