2024-05-18 06:13:29 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
|
|
RSpec.describe 'Settings', type: :request do
|
|
|
|
|
describe 'GET /theme' do
|
|
|
|
|
let(:params) { { theme: 'light' } }
|
|
|
|
|
|
|
|
|
|
context 'when user is not signed in' do
|
|
|
|
|
it 'redirects to the sign in page' do
|
|
|
|
|
get '/settings/theme', params: params
|
|
|
|
|
expect(response).to redirect_to(new_user_session_path)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when user is signed in' do
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
sign_in user
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'updates the user theme' do
|
|
|
|
|
get '/settings/theme', params: params
|
|
|
|
|
expect(user.reload.theme).to eq('light')
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'redirects to the root path' do
|
|
|
|
|
get '/settings/theme', params: params
|
|
|
|
|
expect(response).to redirect_to(root_path)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when theme is dark' do
|
|
|
|
|
let(:params) { { theme: 'dark' } }
|
|
|
|
|
|
|
|
|
|
it 'updates the user theme' do
|
|
|
|
|
get '/settings/theme', params: params
|
|
|
|
|
expect(user.reload.theme).to eq('dark')
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2024-05-25 07:57:50 -04:00
|
|
|
|
|
|
|
|
describe 'POST /generate_api_key' do
|
|
|
|
|
context 'when user is not signed in' do
|
|
|
|
|
it 'redirects to the sign in page' do
|
|
|
|
|
post '/settings/generate_api_key'
|
|
|
|
|
|
|
|
|
|
expect(response).to redirect_to(new_user_session_path)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when user is signed in' do
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
sign_in user
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'generates an API key for the user' do
|
2025-01-15 15:52:59 -05:00
|
|
|
expect { post '/settings/generate_api_key' }.to(change { user.reload.api_key })
|
2024-05-25 07:57:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'redirects back' do
|
|
|
|
|
post '/settings/generate_api_key'
|
|
|
|
|
|
|
|
|
|
expect(response).to redirect_to(root_path)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2024-06-20 17:57:00 -04:00
|
|
|
|
|
|
|
|
describe 'PATCH /settings' do
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
let(:params) { { settings: { 'meters_between_routes' => '1000', 'minutes_between_routes' => '10' } } }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
sign_in user
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'updates the user settings' do
|
|
|
|
|
patch '/settings', params: params
|
|
|
|
|
|
|
|
|
|
expect(user.reload.settings).to eq(params[:settings])
|
|
|
|
|
end
|
|
|
|
|
end
|
2025-01-15 15:52:59 -05:00
|
|
|
|
|
|
|
|
describe 'GET /settings/users' do
|
|
|
|
|
let!(:user) { create(:user, admin: true) }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
stub_request(:any, 'https://api.github.com/repos/Freika/dawarich/tags')
|
|
|
|
|
.to_return(status: 200, body: '[{"name": "1.0.0"}]', headers: {})
|
|
|
|
|
|
|
|
|
|
sign_in user
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when self-hosted' do
|
|
|
|
|
before do
|
|
|
|
|
allow(DawarichSettings).to receive(:self_hosted?).and_return(true)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
|
get '/settings/users'
|
|
|
|
|
|
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when not self-hosted' do
|
|
|
|
|
before do
|
|
|
|
|
allow(DawarichSettings).to receive(:self_hosted?).and_return(false)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'redirects to root path' do
|
|
|
|
|
get '/settings/users'
|
|
|
|
|
|
|
|
|
|
expect(response).to redirect_to(root_path)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2024-05-18 06:13:29 -04:00
|
|
|
end
|