BigW Consortium Gitlab

broadcast_message_spec.rb 2.59 KB
Newer Older
1 2
require 'spec_helper'

Douwe Maan committed
3
describe BroadcastMessage, models: true do
4
  subject { build(:broadcast_message) }
5

6
  it { is_expected.to be_valid }
7

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
  describe 'validations' do
    let(:triplet) { '#000' }
    let(:hex)     { '#AABBCC' }

    it { is_expected.to allow_value(nil).for(:color) }
    it { is_expected.to allow_value(triplet).for(:color) }
    it { is_expected.to allow_value(hex).for(:color) }
    it { is_expected.not_to allow_value('000').for(:color) }

    it { is_expected.to allow_value(nil).for(:font) }
    it { is_expected.to allow_value(triplet).for(:font) }
    it { is_expected.to allow_value(hex).for(:font) }
    it { is_expected.not_to allow_value('000').for(:font) }
  end

23
  describe '.current' do
24
    it 'returns message if time match' do
25 26
      message = create(:broadcast_message)

27
      expect(BroadcastMessage.current).to include(message)
28 29
    end

30 31 32 33 34 35 36 37
    it 'returns multiple messages if time match' do
      message1 = create(:broadcast_message)
      message2 = create(:broadcast_message)

      expect(BroadcastMessage.current).to contain_exactly(message1, message2)
    end

    it 'returns empty list if time not come' do
38 39
      create(:broadcast_message, :future)

40
      expect(BroadcastMessage.current).to be_empty
41 42
    end

43
    it 'returns empty list if time has passed' do
44 45
      create(:broadcast_message, :expired)

46
      expect(BroadcastMessage.current).to be_empty
47 48
    end
  end
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104

  describe '#active?' do
    it 'is truthy when started and not ended' do
      message = build(:broadcast_message)

      expect(message).to be_active
    end

    it 'is falsey when ended' do
      message = build(:broadcast_message, :expired)

      expect(message).not_to be_active
    end

    it 'is falsey when not started' do
      message = build(:broadcast_message, :future)

      expect(message).not_to be_active
    end
  end

  describe '#started?' do
    it 'is truthy when starts_at has passed' do
      message = build(:broadcast_message)

      travel_to(3.days.from_now) do
        expect(message).to be_started
      end
    end

    it 'is falsey when starts_at is in the future' do
      message = build(:broadcast_message)

      travel_to(3.days.ago) do
        expect(message).not_to be_started
      end
    end
  end

  describe '#ended?' do
    it 'is truthy when ends_at has passed' do
      message = build(:broadcast_message)

      travel_to(3.days.from_now) do
        expect(message).to be_ended
      end
    end

    it 'is falsey when ends_at is in the future' do
      message = build(:broadcast_message)

      travel_to(3.days.ago) do
        expect(message).not_to be_ended
      end
    end
  end
105
end