dawarich/spec/models/user_spec.rb
2025-07-29 21:17:33 +02:00

222 lines
6.7 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe User, type: :model do
describe 'associations' do
it { is_expected.to have_many(:imports).dependent(:destroy) }
it { is_expected.to have_many(:points).through(:imports) }
it { is_expected.to have_many(:stats) }
it { is_expected.to have_many(:tracked_points).class_name('Point').dependent(:destroy) }
it { is_expected.to have_many(:exports).dependent(:destroy) }
it { is_expected.to have_many(:notifications).dependent(:destroy) }
it { is_expected.to have_many(:areas).dependent(:destroy) }
it { is_expected.to have_many(:visits).dependent(:destroy) }
it { is_expected.to have_many(:places).through(:visits) }
it { is_expected.to have_many(:trips).dependent(:destroy) }
it { is_expected.to have_many(:tracks).dependent(:destroy) }
end
describe 'enums' do
it { is_expected.to define_enum_for(:status).with_values(inactive: 0, active: 1) }
end
describe 'callbacks' do
describe '#create_api_key' do
let(:user) { create(:user) }
it 'creates api key' do
expect(user.api_key).to be_present
end
end
describe '#activate' do
context 'when self-hosted' do
let!(:user) { create(:user, :inactive) }
before do
allow(DawarichSettings).to receive(:self_hosted?).and_return(true)
end
it 'activates user after creation' do
expect(user.active?).to be_truthy
expect(user.active_until).to be_within(1.minute).of(1000.years.from_now)
end
end
context 'when not self-hosted' do
before do
allow(DawarichSettings).to receive(:self_hosted?).and_return(false)
end
it 'does not activate user' do
user = create(:user, :inactive)
expect(user.active?).to be_falsey
expect(user.active_until).to be_within(1.minute).of(1.day.ago)
end
end
end
end
describe 'methods' do
let(:user) { create(:user) }
describe '#countries_visited' do
subject { user.countries_visited }
let!(:point1) { create(:point, user:, country_name: 'Germany') }
let!(:point2) { create(:point, user:, country_name: 'France') }
let!(:point3) { create(:point, user:, country_name: nil) }
let!(:point4) { create(:point, user:, country_name: '') }
it 'returns array of countries' do
expect(subject).to include('Germany', 'France')
expect(subject.count).to eq(2)
end
it 'excludes nil and empty country names' do
expect(subject).not_to include(nil, '')
end
end
describe '#cities_visited' do
subject { user.cities_visited }
let!(:point1) { create(:point, user:, city: 'Berlin') }
let!(:point2) { create(:point, user:, city: 'Paris') }
let!(:point3) { create(:point, user:, city: nil) }
let!(:point4) { create(:point, user:, city: '') }
it 'returns array of cities' do
expect(subject).to include('Berlin', 'Paris')
expect(subject.count).to eq(2)
end
it 'excludes nil and empty city names' do
expect(subject).not_to include(nil, '')
end
end
describe '#total_distance' do
subject { user.total_distance }
let!(:stat1) { create(:stat, user:, distance: 10_000) }
let!(:stat2) { create(:stat, user:, distance: 20_000) }
it 'returns sum of distances' do
expect(subject).to eq(30) # 30 km
end
end
describe '#total_countries' do
subject { user.total_countries }
let!(:point1) { create(:point, user:, country_name: 'Germany') }
let!(:point2) { create(:point, user:, country_name: 'France') }
let!(:point3) { create(:point, user:, country_name: nil) }
it 'returns number of countries' do
expect(subject).to eq(2)
end
end
describe '#total_cities' do
subject { user.total_cities }
let!(:point1) { create(:point, user:, city: 'Berlin') }
let!(:point2) { create(:point, user:, city: 'Paris') }
let!(:point3) { create(:point, user:, city: nil) }
it 'returns number of cities' do
expect(subject).to eq(2)
end
end
describe '#total_reverse_geocoded_points' do
subject { user.total_reverse_geocoded_points }
let!(:reverse_geocoded_point) { create(:point, :reverse_geocoded, user:) }
let!(:not_reverse_geocoded_point) { create(:point, user:, reverse_geocoded_at: nil) }
it 'returns number of reverse geocoded points' do
expect(subject).to eq(1)
end
end
describe '#total_reverse_geocoded_points_without_data' do
subject { user.total_reverse_geocoded_points_without_data }
let!(:reverse_geocoded_point) { create(:point, :reverse_geocoded, :with_geodata, user:) }
let!(:reverse_geocoded_point_without_data) { create(:point, :reverse_geocoded, user:, geodata: {}) }
it 'returns number of reverse geocoded points without data' do
expect(subject).to eq(1)
end
end
describe '#years_tracked' do
let!(:points) do
(1..3).map do |i|
create(:point, user:, timestamp: DateTime.new(2024, 1, 1, 5, 0, 0) + i.minutes)
end
end
it 'returns years tracked' do
expect(user.years_tracked).to eq([{ year: 2024, months: ['Jan'] }])
end
end
describe '#can_subscribe?' do
context 'when Dawarich is self-hosted' do
before do
allow(DawarichSettings).to receive(:self_hosted?).and_return(true)
end
context 'when user is active' do
let!(:user) { create(:user, status: :active, active_until: 1000.years.from_now) }
it 'returns false' do
expect(user.can_subscribe?).to be_falsey
end
end
context 'when user is inactive' do
let(:user) { create(:user, :inactive) }
it 'returns false' do
expect(user.can_subscribe?).to be_falsey
end
end
end
context 'when Dawarich is not self-hosted' do
before do
allow(DawarichSettings).to receive(:self_hosted?).and_return(false)
end
context 'when user is active' do
let(:user) { create(:user, status: :active, active_until: 1000.years.from_now) }
it 'returns false' do
expect(user.can_subscribe?).to be_falsey
end
end
context 'when user is inactive' do
let(:user) { create(:user, :inactive) }
it 'returns true' do
expect(user.can_subscribe?).to be_truthy
end
end
end
end
describe '#export_data' do
it 'enqueues the export data job' do
expect { user.export_data }.to have_enqueued_job(Users::ExportDataJob).with(user.id)
end
end
end
end