Sha256: 8e24d960d44c77dfb9937762999a08ec82e73fee262e6f606ace09995ecfe45e

Contents?: true

Size: 1.12 KB

Versions: 5

Compression:

Stored size: 1.12 KB

Contents

require 'spec_helper'

describe 'Report a Problem', type: :feature do
  let!(:exhibit) { FactoryGirl.create(:default_exhibit) }
  it 'does not have a header link' do
    visit root_path
    expect(page).to_not have_content 'Feedback'
  end

  describe 'when emails are setup' do
    before do
      exhibit.contact_emails_attributes = [{ 'email' => 'test@example.com' }, { 'email' => 'test2@example.com' }]
      exhibit.save!
      exhibit.contact_emails.first.tap do |e|
        if e.respond_to? :confirm
          e.confirm
        else
          e.confirm!
        end
      end
    end

    it 'accepts a problem report', js: true do
      visit spotlight.exhibit_catalog_path(exhibit, id: 'dq287tq6352')
      click_on 'Feedback'
      expect(find('#contact_form_current_url', visible: false).value).to end_with spotlight.exhibit_catalog_path(exhibit, id: 'dq287tq6352')
      fill_in 'Name', with: 'Some Body'
      fill_in 'Email', with: 'test@example.com'
      fill_in 'Message', with: 'This is my problem report'

      expect do
        click_on 'Send'
      end.to change { ActionMailer::Base.deliveries.count }.by(1)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
blacklight-spotlight-0.7.2 spec/features/report_a_problem_spec.rb
blacklight-spotlight-0.7.1 spec/features/report_a_problem_spec.rb
blacklight-spotlight-0.7.0 spec/features/report_a_problem_spec.rb
blacklight-spotlight-0.6.0 spec/features/report_a_problem_spec.rb
blacklight-spotlight-0.5.0 spec/features/report_a_problem_spec.rb