summaryrefslogtreecommitdiff
path: root/spec/helpers/broadcast_messages_helper_spec.rb
blob: c6e3c5c2368caddc87d3bd14811a989c03dedcb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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