mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
136 lines
3.3 KiB
Ruby
136 lines
3.3 KiB
Ruby
# 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
|
|
|
|
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
|
|
expect { post '/settings/generate_api_key' }.to(change { user.reload.api_key })
|
|
end
|
|
|
|
it 'redirects back' do
|
|
post '/settings/generate_api_key'
|
|
|
|
expect(response).to redirect_to(root_path)
|
|
end
|
|
end
|
|
end
|
|
|
|
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
|
|
|
|
user.reload
|
|
expect(user.settings['meters_between_routes']).to eq('1000')
|
|
expect(user.settings['minutes_between_routes']).to eq('10')
|
|
end
|
|
|
|
context 'when user is inactive' do
|
|
before do
|
|
user.update(status: :inactive, active_until: 1.day.ago)
|
|
end
|
|
|
|
it 'redirects to the root path' do
|
|
patch '/settings', params: params
|
|
|
|
expect(response).to redirect_to(root_path)
|
|
expect(flash[:notice]).to eq('Your account is not active.')
|
|
end
|
|
end
|
|
end
|
|
|
|
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
|
|
end
|