mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
46 lines
1.6 KiB
Ruby
46 lines
1.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
feature SupporterLevel do
|
|
let!(:conference) { create(:conference) }
|
|
let!(:organizer_role) { create(:organizer_role, resource: conference) }
|
|
let!(:user) { create(:user, role_ids: [organizer_role.id]) }
|
|
|
|
shared_examples 'supporter levels' do
|
|
scenario 'adds and updates supporter level', feature: true, js: true do
|
|
sign_in user
|
|
visit admin_conference_supporter_levels_path(conference_id: conference.short_title)
|
|
|
|
# Add supporter level
|
|
click_link 'Add supporter_level'
|
|
expect(page.all('div.nested-fields').count == 1).to be true
|
|
|
|
page.
|
|
find('div.nested-fields:nth-of-type(1) div:nth-of-type(1) input').
|
|
set('Example supporter level')
|
|
|
|
page.
|
|
find('div.nested-fields:nth-of-type(1) div:nth-of-type(2) input').
|
|
set('http://www.google.de')
|
|
|
|
click_button 'Update Conference'
|
|
|
|
# Validations
|
|
expect(flash).to eq('Supporter levels were successfully updated.')
|
|
expect(find('div.nested-fields:nth-of-type(1) div:nth-of-type(1) input').
|
|
value).to eq('Example supporter level')
|
|
expect(find('div.nested-fields:nth-of-type(1) div:nth-of-type(2) input').
|
|
value).to eq('http://www.google.de')
|
|
|
|
# Remove supporter level
|
|
click_link 'Remove supporter_level'
|
|
expect(page.all('div.nested-fields').count == 0).to be true
|
|
find('button', text: 'Update Conference').trigger('click')
|
|
expect(flash).to eq('Supporter levels were successfully updated.')
|
|
expect(page.all('div.nested-fields').count == 0).to be true
|
|
end
|
|
end
|
|
|
|
describe 'organizer' do
|
|
it_behaves_like 'supporter levels'
|
|
end
|
|
end
|