debian-mirror-gitlab/spec/models/concerns/subscribable_spec.rb

193 lines
6 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Subscribable, 'Subscribable' do
2017-09-10 17:25:29 +05:30
let(:project) { create(:project) }
2017-08-17 22:00:37 +05:30
let(:resource) { create(:issue, project: project) }
let(:user_1) { create(:user) }
2016-06-02 11:05:42 +05:30
describe '#subscribed?' do
2018-03-17 18:26:18 +05:30
context 'without user' do
it 'returns false' do
expect(resource.subscribed?(nil, project)).to be_falsey
end
end
2017-08-17 22:00:37 +05:30
context 'without project' do
it 'returns false when no subscription exists' do
expect(resource.subscribed?(user_1)).to be_falsey
end
it 'returns true when a subcription exists and subscribed is true' do
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, subscribed: true)
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1)).to be_truthy
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'returns false when a subcription exists and subscribed is false' do
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, subscribed: false)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1)).to be_falsey
end
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
context 'with project' do
it 'returns false when no subscription exists' do
expect(resource.subscribed?(user_1, project)).to be_falsey
end
it 'returns true when a subcription exists and subscribed is true' do
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, project: project, subscribed: true)
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1, project)).to be_truthy
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'returns false when a subcription exists and subscribed is false' do
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, project: project, subscribed: false)
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1, project)).to be_falsey
end
2016-06-02 11:05:42 +05:30
end
end
2017-08-17 22:00:37 +05:30
2016-06-02 11:05:42 +05:30
describe '#subscribers' do
it 'returns [] when no subcribers exists' do
2017-08-17 22:00:37 +05:30
expect(resource.subscribers(project)).to be_empty
2016-06-02 11:05:42 +05:30
end
it 'returns the subscribed users' do
2017-08-17 22:00:37 +05:30
user_2 = create(:user)
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, subscribed: true)
resource.subscriptions.create!(user: user_2, project: project, subscribed: true)
resource.subscriptions.create!(user: create(:user), project: project, subscribed: false)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
expect(resource.subscribers(project)).to contain_exactly(user_1, user_2)
2016-06-02 11:05:42 +05:30
end
end
describe '#toggle_subscription' do
2017-08-17 22:00:37 +05:30
context 'without project' do
it 'toggles the current subscription state for the given user' do
expect(resource.subscribed?(user_1)).to be_falsey
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
resource.toggle_subscription(user_1)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1)).to be_truthy
end
end
context 'with project' do
it 'toggles the current subscription state for the given user' do
expect(resource.subscribed?(user_1, project)).to be_falsey
resource.toggle_subscription(user_1, project)
expect(resource.subscribed?(user_1, project)).to be_truthy
end
2016-06-02 11:05:42 +05:30
end
end
describe '#subscribe' do
2017-08-17 22:00:37 +05:30
context 'without project' do
it 'subscribes the given user' do
expect(resource.subscribed?(user_1)).to be_falsey
resource.subscribe(user_1)
expect(resource.subscribed?(user_1)).to be_truthy
end
end
context 'with project' do
it 'subscribes the given user' do
expect(resource.subscribed?(user_1, project)).to be_falsey
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
resource.subscribe(user_1, project)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1, project)).to be_truthy
end
2016-06-02 11:05:42 +05:30
end
end
describe '#unsubscribe' do
2017-08-17 22:00:37 +05:30
context 'without project' do
it 'unsubscribes the given current user' do
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, subscribed: true)
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1)).to be_truthy
resource.unsubscribe(user_1)
expect(resource.subscribed?(user_1)).to be_falsey
end
end
context 'with project' do
it 'unsubscribes the given current user' do
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, project: project, subscribed: true)
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1, project)).to be_truthy
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
resource.unsubscribe(user_1, project)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
expect(resource.subscribed?(user_1, project)).to be_falsey
end
2016-06-02 11:05:42 +05:30
end
end
2019-12-26 22:10:19 +05:30
describe '#set_subscription' do
shared_examples 'setting subscriptions' do
context 'when desired_state is set to true' do
context 'when a user is subscribed to the resource' do
it 'keeps the user subscribed' do
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, subscribed: true, project: resource_project)
2019-12-26 22:10:19 +05:30
resource.set_subscription(user_1, true, resource_project)
expect(resource.subscribed?(user_1, resource_project)).to be_truthy
end
end
context 'when a user is not subscribed to the resource' do
it 'subscribes the user to the resource' do
expect { resource.set_subscription(user_1, true, resource_project) }
.to change { resource.subscribed?(user_1, resource_project) }
.from(false).to(true)
end
end
end
context 'when desired_state is set to false' do
context 'when a user is subscribed to the resource' do
it 'unsubscribes the user from the resource' do
2021-01-03 14:25:43 +05:30
resource.subscriptions.create!(user: user_1, subscribed: true, project: resource_project)
2019-12-26 22:10:19 +05:30
expect { resource.set_subscription(user_1, false, resource_project) }
.to change { resource.subscribed?(user_1, resource_project) }
.from(true).to(false)
end
end
context 'when a user is not subscribed to the resource' do
it 'keeps the user unsubscribed' do
resource.set_subscription(user_1, false, resource_project)
expect(resource.subscribed?(user_1, resource_project)).to be_falsey
end
end
end
end
context 'without project' do
let(:resource_project) { nil }
it_behaves_like 'setting subscriptions'
end
context 'with project' do
let(:resource_project) { project }
it_behaves_like 'setting subscriptions'
end
end
2016-06-02 11:05:42 +05:30
end