9920551536
This commit alters views for the following models to use the markdown cache if present: * AbuseReport * Appearance * ApplicationSetting * BroadcastMessage * Group * Issue * Label * MergeRequest * Milestone * Project At the same time, calls to `escape_once` have been moved into the `single_line` Banzai pipeline, so they can't be missed out by accident and the work is done at save, rather than render, time.
60 lines
1.6 KiB
Ruby
60 lines
1.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe BroadcastMessagesHelper do
|
|
describe 'broadcast_message' do
|
|
it 'returns nil when no current message' do
|
|
expect(helper.broadcast_message(nil)).to be_nil
|
|
end
|
|
|
|
it 'includes the current message' do
|
|
current = BroadcastMessage.new(message: 'Current Message')
|
|
|
|
allow(helper).to receive(:broadcast_message_style).and_return(nil)
|
|
|
|
expect(helper.broadcast_message(current)).to include 'Current Message'
|
|
end
|
|
|
|
it 'includes custom style' do
|
|
current = BroadcastMessage.new(message: 'Current Message')
|
|
|
|
allow(helper).to receive(:broadcast_message_style).and_return('foo')
|
|
|
|
expect(helper.broadcast_message(current)).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
|
|
|
|
it 'allows custom style' do
|
|
broadcast_message = double(color: '#f2dede', font: '#b94a48')
|
|
|
|
expect(helper.broadcast_message_style(broadcast_message)).
|
|
to match('background-color: #f2dede; color: #b94a48')
|
|
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)
|
|
|
|
expect(helper.broadcast_message_status(message)).to eq 'Expired'
|
|
end
|
|
|
|
it 'returns Pending' do
|
|
message = build(:broadcast_message, :future)
|
|
|
|
expect(helper.broadcast_message_status(message)).to eq 'Pending'
|
|
end
|
|
end
|
|
end
|