dawarich/spec/requests/api/v1/places_spec.rb
2025-11-19 20:08:49 +01:00

203 lines
6.1 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Api::V1::Places', type: :request do
let(:user) { create(:user) }
let!(:place) { create(:place, user: user, name: 'Home', latitude: 40.7128, longitude: -74.0060) }
let!(:tag) { create(:tag, user: user, name: 'Favorite') }
let(:headers) { { 'Authorization' => "Bearer #{user.api_key}" } }
describe 'GET /api/v1/places' do
it 'returns user places' do
get '/api/v1/places', headers: headers
expect(response).to have_http_status(:success)
json = JSON.parse(response.body)
expect(json.size).to eq(1)
expect(json.first['name']).to eq('Home')
end
it 'filters by tag_ids' do
tagged_place = create(:place, user: user)
create(:tagging, taggable: tagged_place, tag: tag)
get '/api/v1/places', params: { tag_ids: [tag.id] }, headers: headers
json = JSON.parse(response.body)
expect(json.size).to eq(1)
expect(json.first['id']).to eq(tagged_place.id)
end
it 'does not return other users places' do
other_user = create(:user)
create(:place, user: other_user, name: 'Private Place')
get '/api/v1/places', headers: headers
json = JSON.parse(response.body)
expect(json.map { |p| p['name'] }).not_to include('Private Place')
end
end
describe 'GET /api/v1/places/:id' do
it 'returns the place' do
get "/api/v1/places/#{place.id}", headers: headers
expect(response).to have_http_status(:success)
json = JSON.parse(response.body)
expect(json['name']).to eq('Home')
expect(json['latitude']).to eq(40.7128)
end
it 'returns 404 for other users place' do
other_user = create(:user)
other_place = create(:place, user: other_user)
get "/api/v1/places/#{other_place.id}", headers: headers
expect(response).to have_http_status(:not_found)
end
end
describe 'POST /api/v1/places' do
let(:valid_params) do
{
place: {
name: 'Central Park',
latitude: 40.785091,
longitude: -73.968285,
source: 'manual',
tag_ids: [tag.id]
}
}
end
it 'creates a place' do
expect {
post '/api/v1/places', params: valid_params, headers: headers
}.to change(Place, :count).by(1)
expect(response).to have_http_status(:created)
json = JSON.parse(response.body)
expect(json['name']).to eq('Central Park')
end
it 'associates tags with the place' do
post '/api/v1/places', params: valid_params, headers: headers
place = Place.last
expect(place.tags).to include(tag)
end
it 'returns errors for invalid params' do
post '/api/v1/places', params: { place: { name: '' } }, headers: headers
expect(response).to have_http_status(:unprocessable_entity)
json = JSON.parse(response.body)
expect(json['errors']).to be_present
end
end
describe 'PATCH /api/v1/places/:id' do
it 'updates the place' do
patch "/api/v1/places/#{place.id}",
params: { place: { name: 'Updated Home' } },
headers: headers
expect(response).to have_http_status(:success)
expect(place.reload.name).to eq('Updated Home')
end
it 'updates tags' do
new_tag = create(:tag, user: user, name: 'Work')
patch "/api/v1/places/#{place.id}",
params: { place: { tag_ids: [new_tag.id] } },
headers: headers
expect(place.reload.tags).to contain_exactly(new_tag)
end
it 'prevents updating other users places' do
other_user = create(:user)
other_place = create(:place, user: other_user)
patch "/api/v1/places/#{other_place.id}",
params: { place: { name: 'Hacked' } },
headers: headers
expect(response).to have_http_status(:not_found)
expect(other_place.reload.name).not_to eq('Hacked')
end
end
describe 'DELETE /api/v1/places/:id' do
it 'destroys the place' do
expect {
delete "/api/v1/places/#{place.id}", headers: headers
}.to change(Place, :count).by(-1)
expect(response).to have_http_status(:no_content)
end
it 'prevents deleting other users places' do
other_user = create(:user)
other_place = create(:place, user: other_user)
expect {
delete "/api/v1/places/#{other_place.id}", headers: headers
}.not_to change(Place, :count)
expect(response).to have_http_status(:not_found)
end
end
describe 'GET /api/v1/places/nearby' do
before do
allow(DawarichSettings).to receive(:reverse_geocoding_enabled?).and_return(true)
end
it 'returns nearby places from geocoder', :vcr do
get '/api/v1/places/nearby',
params: { latitude: 40.7128, longitude: -74.0060 },
headers: headers
expect(response).to have_http_status(:success)
json = JSON.parse(response.body)
expect(json['places']).to be_an(Array)
end
it 'requires latitude and longitude' do
get '/api/v1/places/nearby', headers: headers
expect(response).to have_http_status(:bad_request)
json = JSON.parse(response.body)
expect(json['error']).to include('latitude and longitude')
end
it 'accepts custom radius and limit' do
service_double = instance_double(Places::NearbySearch)
allow(Places::NearbySearch).to receive(:new)
.with(latitude: 40.7128, longitude: -74.0060, radius: 1.0, limit: 5)
.and_return(service_double)
allow(service_double).to receive(:call).and_return([])
get '/api/v1/places/nearby',
params: { latitude: 40.7128, longitude: -74.0060, radius: 1.0, limit: 5 },
headers: headers
expect(response).to have_http_status(:success)
end
end
describe 'authentication' do
it 'requires API key for all endpoints' do
get '/api/v1/places'
expect(response).to have_http_status(:unauthorized)
post '/api/v1/places', params: { place: { name: 'Test' } }
expect(response).to have_http_status(:unauthorized)
end
end
end