debian-mirror-gitlab/spec/services/users/set_status_service_spec.rb

81 lines
2.4 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Users::SetStatusService do
2018-11-18 11:00:15 +05:30
let(:current_user) { create(:user) }
2020-01-01 13:55:28 +05:30
2018-11-18 11:00:15 +05:30
subject(:service) { described_class.new(current_user, params) }
describe '#execute' do
2019-02-15 15:39:39 +05:30
context 'when params are set' do
2021-01-29 00:20:46 +05:30
let(:params) { { emoji: 'taurus', message: 'a random status', availability: 'busy' } }
2018-11-18 11:00:15 +05:30
it 'creates a status' do
service.execute
expect(current_user.status.emoji).to eq('taurus')
expect(current_user.status.message).to eq('a random status')
2021-01-29 00:20:46 +05:30
expect(current_user.status.availability).to eq('busy')
2018-11-18 11:00:15 +05:30
end
it 'updates a status if it already existed' do
create(:user_status, user: current_user)
expect { service.execute }.not_to change { UserStatus.count }
expect(current_user.status.message).to eq('a random status')
end
2021-01-29 00:20:46 +05:30
it 'returns true' do
create(:user_status, user: current_user)
expect(service.execute).to be(true)
end
context 'when the given availability value is not valid' do
let(:params) { { availability: 'not a valid value' } }
it 'does not update the status' do
user_status = create(:user_status, user: current_user)
expect { service.execute }.not_to change { user_status.reload }
end
it 'returns false' do
create(:user_status, user: current_user)
expect(service.execute).to be(false)
end
end
2018-11-18 11:00:15 +05:30
context 'for another user' do
let(:target_user) { create(:user) }
let(:params) do
{ emoji: 'taurus', message: 'a random status', user: target_user }
end
2021-01-29 00:20:46 +05:30
context 'the current user is admin', :enable_admin_mode do
2018-11-18 11:00:15 +05:30
let(:current_user) { create(:admin) }
it 'changes the status when the current user is allowed to do that' do
expect { service.execute }.to change { target_user.status }
end
end
it 'does not update the status if the current user is not allowed' do
expect { service.execute }.not_to change { target_user.status }
end
end
end
context 'without params' do
let(:params) { {} }
it 'deletes the status' do
status = create(:user_status, user: current_user)
expect { service.execute }
.to change { current_user.reload.status }.from(status).to(nil)
end
end
end
end