2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe BroadcastMessagesHelper do
|
2022-05-07 20:08:51 +05:30
|
|
|
include Gitlab::Routing.url_helpers
|
|
|
|
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'returns role-targeted broadcast message when in project, group, or sub-group URL' do
|
|
|
|
let(:feature_flag_state) { true }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_feature_flags(role_targeted_broadcast_messages: feature_flag_state)
|
|
|
|
allow(helper).to receive(:cookies) { {} }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when in a project page' do
|
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
|
|
|
|
assign(:project, project)
|
|
|
|
allow(helper).to receive(:controller) { ProjectsController.new }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq message }
|
|
|
|
|
|
|
|
context 'when feature flag is disabled' do
|
|
|
|
let(:feature_flag_state) { false }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when in a group page' do
|
|
|
|
let_it_be(:group) { create(:group) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_developer(user)
|
|
|
|
|
|
|
|
assign(:group, group)
|
|
|
|
allow(helper).to receive(:controller) { GroupsController.new }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq message }
|
|
|
|
|
|
|
|
context 'when feature flag is disabled' do
|
|
|
|
let(:feature_flag_state) { false }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when not in a project, group, or sub-group page' do
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
|
|
|
|
context 'when feature flag is disabled' do
|
|
|
|
let(:feature_flag_state) { false }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
describe 'current_broadcast_notification_message' do
|
|
|
|
subject { helper.current_broadcast_notification_message }
|
|
|
|
|
|
|
|
context 'with available broadcast notification messages' do
|
|
|
|
let!(:broadcast_message_1) { create(:broadcast_message, broadcast_type: 'notification', starts_at: Time.now - 1.day) }
|
|
|
|
let!(:broadcast_message_2) { create(:broadcast_message, broadcast_type: 'notification', starts_at: Time.now) }
|
|
|
|
|
|
|
|
it { is_expected.to eq broadcast_message_2 }
|
|
|
|
|
|
|
|
context 'when last broadcast message is hidden' do
|
|
|
|
before do
|
2020-04-08 14:13:33 +05:30
|
|
|
helper.request.cookies["hide_broadcast_message_#{broadcast_message_2.id}"] = 'true'
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq broadcast_message_1 }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without broadcast notification messages' do
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
|
|
|
|
describe 'user access level targeted messages' do
|
|
|
|
let_it_be(:message) { create(:broadcast_message, broadcast_type: 'notification', starts_at: Time.now, target_access_levels: [Gitlab::Access::DEVELOPER]) }
|
|
|
|
|
|
|
|
include_examples 'returns role-targeted broadcast message when in project, group, or sub-group URL'
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
describe 'current_broadcast_banner_messages' do
|
|
|
|
describe 'user access level targeted messages' do
|
|
|
|
let_it_be(:message) { create(:broadcast_message, broadcast_type: 'banner', starts_at: Time.now, target_access_levels: [Gitlab::Access::DEVELOPER]) }
|
2021-04-29 21:17:54 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
subject { helper.current_broadcast_banner_messages.first }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
include_examples 'returns role-targeted broadcast message when in project, group, or sub-group URL'
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'broadcast_message' do
|
|
|
|
let(:current_broadcast_message) { BroadcastMessage.new(message: 'Current Message') }
|
2020-04-08 14:13:33 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
it 'returns nil when no current message' do
|
|
|
|
expect(helper.broadcast_message(nil)).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes the current message' do
|
2020-03-13 15:44:24 +05:30
|
|
|
expect(helper.broadcast_message(current_broadcast_message)).to include 'Current Message'
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'broadcast_message_status' do
|
|
|
|
it 'returns Active' do
|
|
|
|
message = build(:broadcast_message)
|
|
|
|
|
|
|
|
expect(helper.broadcast_message_status(message)).to eq 'Active'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns Expired' do
|
|
|
|
message = build(:broadcast_message, :expired)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
expect(helper.broadcast_message_status(message)).to eq 'Expired'
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
it 'returns Pending' do
|
|
|
|
message = build(:broadcast_message, :future)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
expect(helper.broadcast_message_status(message)).to eq 'Pending'
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|