debian-mirror-gitlab/spec/helpers/broadcast_messages_helper_spec.rb

96 lines
2.9 KiB
Ruby
Raw Normal View History

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
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
end
describe 'broadcast_message' do
2020-04-08 14:13:33 +05:30
let_it_be(:user) { create(:user) }
2021-04-29 21:17:54 +05:30
2020-03-13 15:44:24 +05:30
let(:current_broadcast_message) { BroadcastMessage.new(message: 'Current Message') }
2020-04-08 14:13:33 +05:30
before do
allow(helper).to receive(:current_user).and_return(user)
end
it 'returns nil when no current message' do
expect(helper.broadcast_message(nil)).to be_nil
end
it 'includes the current message' do
allow(helper).to receive(:broadcast_message_style).and_return(nil)
2020-03-13 15:44:24 +05:30
expect(helper.broadcast_message(current_broadcast_message)).to include 'Current Message'
end
it 'includes custom style' do
allow(helper).to receive(:broadcast_message_style).and_return('foo')
2020-03-13 15:44:24 +05:30
expect(helper.broadcast_message(current_broadcast_message)).to include 'style="foo"'
end
end
describe 'broadcast_message_style' do
it 'defaults to no style' do
broadcast_message = spy
expect(helper.broadcast_message_style(broadcast_message)).to eq ''
end
2020-03-13 15:44:24 +05:30
it 'allows custom style for banner messages' do
broadcast_message = BroadcastMessage.new(color: '#f2dede', font: '#b94a48', broadcast_type: "banner")
2017-09-10 17:25:29 +05:30
expect(helper.broadcast_message_style(broadcast_message))
.to match('background-color: #f2dede; color: #b94a48')
end
2020-03-13 15:44:24 +05:30
it 'does not add style for notification messages' do
broadcast_message = BroadcastMessage.new(color: '#f2dede', broadcast_type: "notification")
expect(helper.broadcast_message_style(broadcast_message)).to eq ''
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
expect(helper.broadcast_message_status(message)).to eq 'Expired'
2014-09-02 18:07:02 +05:30
end
it 'returns Pending' do
message = build(:broadcast_message, :future)
2014-09-02 18:07:02 +05:30
expect(helper.broadcast_message_status(message)).to eq 'Pending'
2014-09-02 18:07:02 +05:30
end
end
end