summaryrefslogtreecommitdiff
path: root/spec/features/admin/admin_broadcast_messages_spec.rb
blob: 091ed0a339619fd14d1a06f522cbd8b429fca292 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Admin Broadcast Messages' do
  before do
    sign_in(create(:admin))
    create(:broadcast_message, :expired, message: 'Migration to new server')
    visit admin_broadcast_messages_path
  end

  it 'See broadcast messages list' do
    expect(page).to have_content 'Migration to new server'
  end

  it 'creates a customized broadcast banner message' do
    fill_in 'broadcast_message_message', with: 'Application update from **4:00 CST to 5:00 CST**'
    fill_in 'broadcast_message_color', with: '#f2dede'
    fill_in 'broadcast_message_target_path', with: '*/user_onboarded'
    fill_in 'broadcast_message_font', with: '#b94a48'
    select Date.today.next_year.year, from: 'broadcast_message_ends_at_1i'
    click_button 'Add broadcast message'

    expect(current_path).to eq admin_broadcast_messages_path
    expect(page).to have_content 'Application update from 4:00 CST to 5:00 CST'
    expect(page).to have_content '*/user_onboarded'
    expect(page).to have_selector 'strong', text: '4:00 CST to 5:00 CST'
    expect(page).to have_selector %(div[style="background-color: #f2dede; color: #b94a48"])
  end

  it 'creates a customized broadcast notification message' do
    fill_in 'broadcast_message_message', with: 'Application update from **4:00 CST to 5:00 CST**'
    fill_in 'broadcast_message_target_path', with: '*/user_onboarded'
    select 'Notification', from: 'broadcast_message_broadcast_type'
    select Date.today.next_year.year, from: 'broadcast_message_ends_at_1i'
    click_button 'Add broadcast message'

    expect(current_path).to eq admin_broadcast_messages_path
    expect(page).to have_content 'Application update from 4:00 CST to 5:00 CST'
    expect(page).to have_content '*/user_onboarded'
    expect(page).to have_content 'Notification'
    expect(page).to have_selector 'strong', text: '4:00 CST to 5:00 CST'
  end

  it 'Edit an existing broadcast message' do
    click_link 'Edit'
    fill_in 'broadcast_message_message', with: 'Application update RIGHT NOW'
    click_button 'Update broadcast message'

    expect(current_path).to eq admin_broadcast_messages_path
    expect(page).to have_content 'Application update RIGHT NOW'
  end

  it 'Remove an existing broadcast message' do
    click_link 'Remove'

    expect(current_path).to eq admin_broadcast_messages_path
    expect(page).not_to have_content 'Migration to new server'
  end

  it 'updates a preview of a customized broadcast banner message', :js do
    fill_in 'broadcast_message_message', with: "Live **Markdown** previews. :tada:"

    page.within('.js-broadcast-banner-message-preview') do
      expect(page).to have_selector('strong', text: 'Markdown')
      expect(page).to have_emoji('tada')
    end
  end

  it 'updates a preview of a customized broadcast notification message', :js do
    fill_in 'broadcast_message_message', with: "Live **Markdown** previews. :tada:"
    select 'Notification', from: 'broadcast_message_broadcast_type'

    page.within('.js-broadcast-notification-message-preview') do
      expect(page).to have_selector('strong', text: 'Markdown')
      expect(page).to have_emoji('tada')
    end
  end
end