mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
57 lines
1.6 KiB
Ruby
57 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Users::ExportData::Areas, type: :service do
|
|
let(:user) { create(:user) }
|
|
let(:service) { described_class.new(user) }
|
|
|
|
subject { service.call }
|
|
|
|
describe '#call' do
|
|
context 'when user has no areas' do
|
|
it 'returns an empty array' do
|
|
expect(subject).to eq([])
|
|
end
|
|
end
|
|
|
|
context 'when user has areas' do
|
|
let!(:area1) { create(:area, user: user, name: 'Home', radius: 100) }
|
|
let!(:area2) { create(:area, user: user, name: 'Work', radius: 200) }
|
|
|
|
it 'returns all user areas' do
|
|
expect(subject).to be_an(Array)
|
|
expect(subject.size).to eq(2)
|
|
end
|
|
|
|
it 'excludes user_id and id fields' do
|
|
subject.each do |area_data|
|
|
expect(area_data).not_to have_key('user_id')
|
|
expect(area_data).not_to have_key('id')
|
|
end
|
|
end
|
|
|
|
it 'includes expected area attributes' do
|
|
area_data = subject.find { |a| a['name'] == 'Home' }
|
|
|
|
expect(area_data).to include(
|
|
'name' => 'Home',
|
|
'radius' => 100
|
|
)
|
|
expect(area_data).to have_key('created_at')
|
|
expect(area_data).to have_key('updated_at')
|
|
end
|
|
end
|
|
|
|
context 'with multiple users' do
|
|
let(:other_user) { create(:user) }
|
|
let!(:user_area) { create(:area, user: user, name: 'User Area') }
|
|
let!(:other_user_area) { create(:area, user: other_user, name: 'Other User Area') }
|
|
|
|
it 'only returns areas for the specified user' do
|
|
expect(subject.size).to eq(1)
|
|
expect(subject.first['name']).to eq('User Area')
|
|
end
|
|
end
|
|
end
|
|
end
|