Files
dawarich/spec/models/user_spec.rb
Evgenii Burmakin c8242ce902 0.36.3 (#2013)
* fix: move foreman to global gems to fix startup crash (#1971)

* Update exporting code to stream points data to file in batches to red… (#1980)

* Update exporting code to stream points data to file in batches to reduce memory usage

* Update changelog

* Update changelog

* Feature/maplibre frontend (#1953)

* Add a plan to use MapLibre GL JS for the frontend map rendering, replacing Leaflet

* Implement phase 1

* Phases 1-3 + part of 4

* Fix e2e tests

* Phase 6

* Implement fog of war

* Phase 7

* Next step: fix specs, phase 7 done

* Use our own map tiles

* Extract v2 map logic to separate manager classes

* Update settings panel on v2 map

* Update v2 e2e tests structure

* Reimplement location search in maps v2

* Update speed routes

* Implement visits and places creation in v2

* Fix last failing test

* Implement visits merging

* Fix a routes e2e test and simplify the routes layer styling.

* Extract js to modules from maps_v2_controller.js

* Implement area creation

* Fix spec problem

* Fix some e2e tests

* Implement live mode in v2 map

* Update icons and panel

* Extract some styles

* Remove unused file

* Start adding dark theme to popups on MapLibre maps

* Make popups respect dark theme

* Move v2 maps to maplibre namespace

* Update v2 references to maplibre

* Put place, area and visit info into side panel

* Update API to use safe settings config method

* Fix specs

* Fix method name to config in SafeSettings and update usages accordingly

* Add missing public files

* Add handling for real time points

* Fix remembering enabled/disabled layers of the v2 map

* Fix lots of e2e tests

* Add settings to select map version

* Use maps/v2 as main path for MapLibre maps

* Update routing

* Update live mode

* Update maplibre controller

* Update changelog

* Remove some console.log statements

* Pull only necessary data for map v2 points

* Feature/raw data archive (#2009)

* 0.36.2 (#2007)

* fix: move foreman to global gems to fix startup crash (#1971)

* Update exporting code to stream points data to file in batches to red… (#1980)

* Update exporting code to stream points data to file in batches to reduce memory usage

* Update changelog

* Update changelog

* Feature/maplibre frontend (#1953)

* Add a plan to use MapLibre GL JS for the frontend map rendering, replacing Leaflet

* Implement phase 1

* Phases 1-3 + part of 4

* Fix e2e tests

* Phase 6

* Implement fog of war

* Phase 7

* Next step: fix specs, phase 7 done

* Use our own map tiles

* Extract v2 map logic to separate manager classes

* Update settings panel on v2 map

* Update v2 e2e tests structure

* Reimplement location search in maps v2

* Update speed routes

* Implement visits and places creation in v2

* Fix last failing test

* Implement visits merging

* Fix a routes e2e test and simplify the routes layer styling.

* Extract js to modules from maps_v2_controller.js

* Implement area creation

* Fix spec problem

* Fix some e2e tests

* Implement live mode in v2 map

* Update icons and panel

* Extract some styles

* Remove unused file

* Start adding dark theme to popups on MapLibre maps

* Make popups respect dark theme

* Move v2 maps to maplibre namespace

* Update v2 references to maplibre

* Put place, area and visit info into side panel

* Update API to use safe settings config method

* Fix specs

* Fix method name to config in SafeSettings and update usages accordingly

* Add missing public files

* Add handling for real time points

* Fix remembering enabled/disabled layers of the v2 map

* Fix lots of e2e tests

* Add settings to select map version

* Use maps/v2 as main path for MapLibre maps

* Update routing

* Update live mode

* Update maplibre controller

* Update changelog

* Remove some console.log statements

---------

Co-authored-by: Robin Tuszik <mail@robin.gg>

* Remove esbuild scripts from package.json

* Remove sideEffects field from package.json

* Raw data archivation

* Add tests

* Fix tests

* Fix tests

* Update ExceptionReporter

* Add schedule to run raw data archival job monthly

* Change file structure for raw data archival feature

* Update changelog and version for raw data archival feature

---------

Co-authored-by: Robin Tuszik <mail@robin.gg>

* Set raw_data to an empty hash instead of nil when archiving

* Fix storage configuration and file extraction

* Consider MIN_MINUTES_SPENT_IN_CITY during stats calculation (#2018)

* Consider MIN_MINUTES_SPENT_IN_CITY during stats calculation

* Remove raw data from visited cities api endpoint

* Use user timezone to show dates on maps (#2020)

* Fix/pre epoch time (#2019)

* Use user timezone to show dates on maps

* Limit timestamps to valid range to prevent database errors when users enter pre-epoch dates.

* Limit timestamps to valid range to prevent database errors when users enter pre-epoch dates.

* Fix tests failing due to new index on stats table

* Fix failing specs

* Update redis client configuration to support unix socket connection

* Update changelog

* Fix kml kmz import issues (#2023)

* Fix kml kmz import issues

* Refactor KML importer to improve readability and maintainability

* Implement moving points in map v2 and fix route rendering logic to ma… (#2027)

* Implement moving points in map v2 and fix route rendering logic to match map v1.

* Fix route spec

* fix(maplibre): update date format to ISO 8601 (#2029)

* Add verification step to raw data archival process (#2028)

* Add verification step to raw data archival process

* Add actual verification of raw data archives after creation, and only clear raw_data for verified archives.

* Fix failing specs

* Eliminate zip-bomb risk

* Fix potential memory leak in js

* Return .keep files

* Use Toast instead of alert for notifications

* Add help section to navbar dropdown

* Update changelog

* Remove raw_data_archival_job

* Ensure file is being closed properly after reading in Archivable concern

---------

Co-authored-by: Robin Tuszik <mail@robin.gg>
2025-12-14 12:05:59 +01:00

439 lines
13 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(:stats) }
it { is_expected.to have_many(: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).dependent(:destroy) }
it { is_expected.to have_many(:trips).dependent(:destroy) }
it { is_expected.to have_many(:tracks).dependent(:destroy) }
it { is_expected.to have_many(:tags).dependent(:destroy) }
it { is_expected.to have_many(:visited_places).through(:visits) }
end
describe 'enums' do
it { is_expected.to define_enum_for(:status).with_values(inactive: 0, active: 1, trial: 2) }
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 'sets user to trial instead of active' do
user = create(:user, :inactive)
expect(user.trial?).to be_truthy
expect(user.active_until).to be_within(1.minute).of(7.days.from_now)
end
end
end
describe '#start_trial' do
let(:user) { create(:user, :inactive) }
before do
allow(Users::TrialWebhookJob).to receive(:perform_later)
end
it 'sets trial status and active_until to 7 days from now' do
user.send(:start_trial)
expect(user.reload.trial?).to be_truthy
expect(user.active_until).to be_within(1.minute).of(7.days.from_now)
end
it 'enqueues trial webhook job' do
expect(Users::TrialWebhookJob).to receive(:perform_later).with(user.id)
user.send(:start_trial)
end
it 'schedules welcome emails' do
allow(user).to receive(:schedule_welcome_emails)
user.send(:start_trial)
expect(user).to have_received(:schedule_welcome_emails)
end
end
describe '#schedule_welcome_emails' do
let(:user) { create(:user, :inactive) }
before do
allow(Users::MailerSendingJob).to receive(:perform_later)
allow(Users::MailerSendingJob).to receive(:set).and_return(Users::MailerSendingJob)
end
it 'schedules welcome email immediately' do
expect(Users::MailerSendingJob).to receive(:perform_later).with(user.id, 'welcome')
user.send(:schedule_welcome_emails)
end
it 'schedules explore_features email for day 2' do
expect(Users::MailerSendingJob).to receive(:set).with(wait: 2.days).and_return(Users::MailerSendingJob)
expect(Users::MailerSendingJob).to receive(:perform_later).with(user.id, 'explore_features')
user.send(:schedule_welcome_emails)
end
it 'schedules trial_expires_soon email for day 5' do
expect(Users::MailerSendingJob).to receive(:set).with(wait: 5.days).and_return(Users::MailerSendingJob)
expect(Users::MailerSendingJob).to receive(:perform_later).with(user.id, 'trial_expires_soon')
user.send(:schedule_welcome_emails)
end
it 'schedules trial_expired email for day 7' do
expect(Users::MailerSendingJob).to receive(:set).with(wait: 7.days).and_return(Users::MailerSendingJob)
expect(Users::MailerSendingJob).to receive(:perform_later).with(user.id, 'trial_expired')
user.send(:schedule_welcome_emails)
end
end
end
describe 'methods' do
let(:user) { create(:user) }
describe '#trial_state?' do
context 'when user has trial status and no tracked points' do
let(:user) do
user = build(:user, :trial)
user.save!(validate: false)
user.update_column(:status, 'trial')
user
end
it 'returns true' do
user.points.destroy_all
expect(user.trial_state?).to be_truthy
end
end
context 'when user has trial status but has tracked points' do
let(:user) { create(:user, :trial) }
before do
create(:point, user: user)
end
it 'returns false' do
expect(user.trial_state?).to be_falsey
end
end
context 'when user is not on trial' do
let(:user) { create(:user, :active) }
it 'returns false' do
expect(user.trial_state?).to be_falsey
end
end
end
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:, year: 2020, month: 10, distance: 10_000) }
let!(:stat2) { create(:stat, user:, year: 2020, month: 11, 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
user.update(status: :active)
expect(user.can_subscribe?).to be_falsey
end
end
context 'when user is inactive' do
let(:user) do
user = build(:user, :inactive)
user.save!(validate: false)
user.update_columns(status: 'inactive', active_until: 1.day.ago)
user
end
it 'returns true' do
expect(user.can_subscribe?).to be_truthy
end
end
context 'when user is on trial' do
let(:user) { create(:user, :trial, active_until: 1.week.from_now) }
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
describe '#timezone' do
it 'returns the app timezone' do
expect(user.timezone).to eq(Time.zone.name)
end
end
end
describe '.from_omniauth' do
let(:auth_hash) do
OmniAuth::AuthHash.new(
{
provider: 'github',
uid: '123545',
info: {
email: email,
name: 'Test User'
}
}
)
end
context 'when user exists with the same email' do
let(:email) { 'existing@example.com' }
let!(:existing_user) { create(:user, email: email) }
it 'returns the existing user' do
user = described_class.from_omniauth(auth_hash)
expect(user).to eq(existing_user)
expect(user.persisted?).to be true
end
it 'does not create a new user' do
expect do
described_class.from_omniauth(auth_hash)
end.not_to change(User, :count)
end
end
context 'when user does not exist' do
let(:email) { 'new@example.com' }
it 'creates a new user with the OAuth email' do
expect do
described_class.from_omniauth(auth_hash)
end.to change(User, :count).by(1)
user = User.last
expect(user.email).to eq(email)
end
it 'generates a random password for the new user' do
user = described_class.from_omniauth(auth_hash)
expect(user.encrypted_password).to be_present
end
it 'returns a persisted user' do
user = described_class.from_omniauth(auth_hash)
expect(user.persisted?).to be true
end
end
context 'when OAuth provider is Google' do
let(:email) { 'google@example.com' }
let(:auth_hash) do
OmniAuth::AuthHash.new(
{
provider: 'google_oauth2',
uid: '123545',
info: {
email: email,
name: 'Google User'
}
}
)
end
it 'creates a user from Google OAuth data' do
user = described_class.from_omniauth(auth_hash)
expect(user.email).to eq(email)
expect(user.persisted?).to be true
end
end
context 'when email is nil' do
let(:email) { nil }
it 'attempts to create a user but fails validation' do
user = described_class.from_omniauth(auth_hash)
expect(user.persisted?).to be false
expect(user.errors[:email]).to be_present
end
end
context 'when email is blank' do
let(:email) { '' }
it 'attempts to create a user but fails validation' do
user = described_class.from_omniauth(auth_hash)
expect(user.persisted?).to be false
expect(user.errors[:email]).to be_present
end
end
end
end