mirror of
https://github.com/openSUSE/osem.git
synced 2026-05-06 14:47:54 -04:00
303 lines
18 KiB
Ruby
303 lines
18 KiB
Ruby
require 'spec_helper'
|
|
|
|
feature 'Has correct abilities' do
|
|
# It is necessary to use bang version of let to build roles before user
|
|
let(:conference1) { create(:conference) } # user is organizer
|
|
let(:conference2) { create(:conference) } # user is cfp
|
|
let(:conference3) { create(:conference) } # user is info_desk
|
|
let(:conference4) { create(:conference) } # user is volunteer coordinator
|
|
let(:conference5) { create(:conference) } # user has no role
|
|
|
|
let(:role_organizer) { create(:role, name: 'organizer', resource: conference1) }
|
|
let(:role_cfp) { create(:role, name: 'cfp', resource: conference2) }
|
|
let(:role_info_desk) { create(:role, name: 'info_desk', resource: conference3) }
|
|
let(:role_volunteer_coordinator) { create(:role, name: 'volunteer_coordinator', resource: conference4) }
|
|
|
|
let(:user) { create(:user, role_ids: [role_organizer.id, role_cfp.id, role_info_desk.id, role_volunteer_coordinator.id]) }
|
|
|
|
scenario 'when user is organizer' do
|
|
sign_in user
|
|
visit admin_conference_path(conference1.short_title)
|
|
|
|
expect(page).to have_selector('li.nav-header.nav-header-bigger a', text: 'Dashboard')
|
|
expect(page).to have_link('Basics', href: "/admin/conference/#{conference1.short_title}/edit")
|
|
expect(page).to have_link('Contact', href: "/admin/conference/#{conference1.short_title}/contact/edit")
|
|
expect(page).to have_link('Commercials', href: "/admin/conference/#{conference1.short_title}/commercials")
|
|
expect(page).to have_link('Photos', href: "/admin/conference/#{conference1.short_title}/photos")
|
|
expect(page).to have_link('Events', href: "/admin/conference/#{conference1.short_title}/events")
|
|
expect(page).to have_link('Registrations', href: "/admin/conference/#{conference1.short_title}/registrations")
|
|
expect(page).to have_link('Schedule', href: "/admin/conference/#{conference1.short_title}/schedule")
|
|
expect(page).to have_link('Campaigns', href: "/admin/conference/#{conference1.short_title}/campaigns")
|
|
expect(page).to have_link('Targets', href: "/admin/conference/#{conference1.short_title}/targets")
|
|
expect(page).to have_link('Venue', href: "/admin/conference/#{conference1.short_title}/venue")
|
|
expect(page).to have_link('Rooms', href: "/admin/conference/#{conference1.short_title}/rooms")
|
|
expect(page).to have_link('Lodgings', href: "/admin/conference/#{conference1.short_title}/lodgings")
|
|
expect(page).to have_link('Sponsorship', href: "/admin/conference/#{conference1.short_title}/sponsorship_levels")
|
|
expect(page).to have_link('Sponsors', href: "/admin/conference/#{conference1.short_title}/sponsors")
|
|
expect(page).to have_link('Tickets', href: "/admin/conference/#{conference1.short_title}/tickets")
|
|
expect(page).to have_link('E-Mails', href: "/admin/conference/#{conference1.short_title}/emails")
|
|
expect(page).to have_link('Call for papers', href: "/admin/conference/#{conference1.short_title}/callforpapers")
|
|
expect(page).to have_link('Tracks', href: "/admin/conference/#{conference1.short_title}/tracks")
|
|
expect(page).to have_link('Event types', href: "/admin/conference/#{conference1.short_title}/event_types")
|
|
expect(page).to have_link('Difficulty levels', href: "/admin/conference/#{conference1.short_title}/difficulty_levels")
|
|
expect(page).to have_link('Questions', href: "/admin/conference/#{conference1.short_title}/questions")
|
|
expect(page).to have_link('Roles', href: "/admin/conference/#{conference1.short_title}/roles")
|
|
|
|
visit edit_admin_conference_path(conference1.short_title)
|
|
expect(current_path).to eq(edit_admin_conference_path(conference1.short_title))
|
|
|
|
visit admin_conference_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_path(conference1.short_title))
|
|
|
|
visit admin_conference_registrations_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_registrations_path(conference1.short_title))
|
|
|
|
visit admin_conference_events_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_events_path(conference1.short_title))
|
|
|
|
visit admin_conference_schedule_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_schedule_path(conference1.short_title))
|
|
|
|
visit admin_conference_campaigns_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_campaigns_path(conference1.short_title))
|
|
|
|
visit admin_conference_targets_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_targets_path(conference1.short_title))
|
|
|
|
visit admin_conference_venue_info_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_venue_info_path(conference1.short_title))
|
|
|
|
visit admin_conference_sponsorship_levels_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_sponsorship_levels_path(conference1.short_title))
|
|
|
|
visit admin_conference_tickets_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_tickets_path(conference1.short_title))
|
|
|
|
visit admin_conference_emails_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_emails_path(conference1.short_title))
|
|
|
|
visit admin_conference_callforpapers_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_callforpapers_path(conference1.short_title))
|
|
|
|
visit admin_conference_questions_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_questions_path(conference1.short_title))
|
|
|
|
visit admin_conference_commercials_path(conference1.short_title)
|
|
expect(current_path).to eq(admin_conference_commercials_path(conference1.short_title))
|
|
end
|
|
|
|
scenario 'when user is cfp' do
|
|
sign_in user
|
|
visit admin_conference_path(conference2.short_title)
|
|
|
|
expect(page).to have_selector('li.nav-header.nav-header-bigger a', text: 'Dashboard')
|
|
expect(page).to have_link('Basics', href: "/admin/conference/#{conference2.short_title}/edit")
|
|
expect(page).to_not have_link('Contact', href: "/admin/conference/#{conference2.short_title}/contact/edit")
|
|
expect(page).to have_link('Commercials', href: "/admin/conference/#{conference2.short_title}/commercials")
|
|
expect(page).to_not have_link('Photos', href: "/admin/conference/#{conference2.short_title}/photos")
|
|
expect(page).to have_link('Events', href: "/admin/conference/#{conference2.short_title}/events")
|
|
expect(page).to_not have_link('Registrations', href: "/admin/conference/#{conference2.short_title}/registrations")
|
|
expect(page).to have_link('Schedule', href: "/admin/conference/#{conference2.short_title}/schedule")
|
|
expect(page).to_not have_link('Campaigns', href: "/admin/conference/#{conference2.short_title}/campaigns")
|
|
expect(page).to_not have_link('Targets', href: "/admin/conference/#{conference2.short_title}/targets")
|
|
expect(page).to have_link('Venue', href: "/admin/conference/#{conference2.short_title}/venue")
|
|
expect(page).to have_link('Rooms', href: "/admin/conference/#{conference2.short_title}/rooms")
|
|
expect(page).to_not have_link('Lodgings', href: "/admin/conference/#{conference2.short_title}/lodgings")
|
|
expect(page).to_not have_link('Sponsorship', href: "/admin/conference/#{conference2.short_title}/sponsorship_levels")
|
|
expect(page).to_not have_link('Sponsors', href: "/admin/conference/#{conference2.short_title}/sponsors")
|
|
expect(page).to_not have_link('Supporter Levels', href: "/admin/conference/#{conference2.short_title}/supporter_levels")
|
|
expect(page).to have_link('E-Mails', href: "/admin/conference/#{conference2.short_title}/emails")
|
|
expect(page).to have_link('Call for papers', href: "/admin/conference/#{conference2.short_title}/callforpapers")
|
|
expect(page).to have_link('Tracks', href: "/admin/conference/#{conference2.short_title}/tracks")
|
|
expect(page).to have_link('Event types', href: "/admin/conference/#{conference2.short_title}/event_types")
|
|
expect(page).to have_link('Difficulty levels', href: "/admin/conference/#{conference2.short_title}/difficulty_levels")
|
|
expect(page).to_not have_link('Questions', href: "/admin/conference/#{conference2.short_title}/questions")
|
|
expect(page).to_not have_link('Roles', href: "/admin/conference/#{conference2.short_title}/roles")
|
|
|
|
visit edit_admin_conference_path(conference2.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_path(conference2.short_title)
|
|
expect(current_path).to eq(admin_conference_path(conference2.short_title))
|
|
|
|
visit admin_conference_registrations_path(conference2.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_events_path(conference2.short_title)
|
|
expect(current_path).to eq(admin_conference_events_path(conference2.short_title))
|
|
|
|
visit admin_conference_schedule_path(conference2.short_title)
|
|
expect(current_path).to eq(admin_conference_schedule_path(conference2.short_title))
|
|
|
|
visit admin_conference_campaigns_path(conference2.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_targets_path(conference2.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_venue_info_path(conference2.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_sponsorship_levels_path(conference2.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_tickets_path(conference2.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_emails_path(conference2.short_title)
|
|
expect(current_path).to eq(admin_conference_emails_path(conference2.short_title))
|
|
|
|
visit admin_conference_callforpapers_path(conference2.short_title)
|
|
expect(current_path).to eq(admin_conference_callforpapers_path(conference2.short_title))
|
|
|
|
visit admin_conference_questions_path(conference2.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_commercials_path(conference2.short_title)
|
|
expect(current_path).to eq(admin_conference_commercials_path(conference2.short_title))
|
|
end
|
|
|
|
scenario 'when user is info desk' do
|
|
sign_in user
|
|
visit admin_conference_path(conference3.short_title)
|
|
|
|
expect(page).to have_selector('li.nav-header.nav-header-bigger a', text: 'Dashboard')
|
|
expect(page).to have_link('Basics', href: "/admin/conference/#{conference3.short_title}/edit")
|
|
expect(page).to_not have_link('Contact', href: "/admin/conference/#{conference3.short_title}/contact/edit")
|
|
expect(page).to have_link('Commercials', href: "/admin/conference/#{conference3.short_title}/commercials")
|
|
expect(page).to_not have_link('Photos', href: "/admin/conference/#{conference3.short_title}/photos")
|
|
expect(page).to_not have_link('Events', href: "/admin/conference/#{conference3.short_title}/events")
|
|
expect(page).to have_link('Registrations', href: "/admin/conference/#{conference3.short_title}/registrations")
|
|
expect(page).to_not have_link('Schedule', href: "/admin/conference/#{conference3.short_title}/schedule")
|
|
expect(page).to_not have_link('Campaigns', href: "/admin/conference/#{conference3.short_title}/campaigns")
|
|
expect(page).to_not have_link('Targets', href: "/admin/conference/#{conference3.short_title}/targets")
|
|
expect(page).to_not have_link('Venue', href: "/admin/conference/#{conference3.short_title}/venue")
|
|
expect(page).to_not have_link('Rooms', href: "/admin/conference/#{conference3.short_title}/rooms")
|
|
expect(page).to_not have_link('Lodgings', href: "/admin/conference/#{conference3.short_title}/lodgings")
|
|
expect(page).to_not have_link('Sponsorship', href: "/admin/conference/#{conference3.short_title}/sponsorship_levels")
|
|
expect(page).to_not have_link('Sponsors', href: "/admin/conference/#{conference3.short_title}/sponsors")
|
|
expect(page).to_not have_link('Supporter Levels', href: "/admin/conference/#{conference3.short_title}/supporter_levels")
|
|
expect(page).to_not have_link('E-Mails', href: "/admin/conference/#{conference3.short_title}/emails")
|
|
expect(page).to_not have_link('Call for papers', href: "/admin/conference/#{conference3.short_title}/callforpapers")
|
|
expect(page).to_not have_link('Tracks', href: "/admin/conference/#{conference3.short_title}/tracks")
|
|
expect(page).to_not have_link('Event types', href: "/admin/conference/#{conference3.short_title}/event_types")
|
|
expect(page).to_not have_link('Difficulty levels', href: "/admin/conference/#{conference3.short_title}/difficulty_levels")
|
|
expect(page).to have_link('Questions', href: "/admin/conference/#{conference3.short_title}/questions")
|
|
expect(page).to_not have_link('Roles', href: "/admin/conference/#{conference3.short_title}/roles")
|
|
|
|
visit edit_admin_conference_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_path(conference3.short_title)
|
|
expect(current_path).to eq(admin_conference_path(conference3.short_title))
|
|
|
|
visit admin_conference_registrations_path(conference3.short_title)
|
|
expect(current_path).to eq(admin_conference_registrations_path(conference3.short_title))
|
|
|
|
visit admin_conference_events_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_schedule_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_campaigns_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_targets_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_venue_info_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_sponsorship_levels_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_tickets_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_emails_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_callforpapers_path(conference3.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_questions_path(conference3.short_title)
|
|
expect(current_path).to eq(admin_conference_questions_path(conference3.short_title))
|
|
|
|
visit admin_conference_commercials_path(conference3.short_title)
|
|
expect(current_path).to eq(admin_conference_commercials_path(conference3.short_title))
|
|
|
|
end
|
|
|
|
scenario 'when user is volunteer coordinator' do
|
|
sign_in user
|
|
visit admin_conference_path(conference4.short_title)
|
|
|
|
expect(page).to have_selector('li.nav-header.nav-header-bigger a', text: 'Dashboard')
|
|
expect(page).to have_link('Basics', href: "/admin/conference/#{conference4.short_title}/edit")
|
|
expect(page).to_not have_link('Contact', href: "/admin/conference/#{conference4.short_title}/contact/edit")
|
|
expect(page).to have_link('Commercials', href: "/admin/conference/#{conference4.short_title}/commercials")
|
|
expect(page).to_not have_link('Photos', href: "/admin/conference/#{conference4.short_title}/photos")
|
|
expect(page).to_not have_link('Events', href: "/admin/conference/#{conference4.short_title}/events")
|
|
expect(page).to_not have_link('Registrations', href: "/admin/conference/#{conference4.short_title}/registrations")
|
|
expect(page).to_not have_link('Schedule', href: "/admin/conference/#{conference4.short_title}/schedule")
|
|
expect(page).to_not have_link('Campaigns', href: "/admin/conference/#{conference4.short_title}/campaigns")
|
|
expect(page).to_not have_link('Targets', href: "/admin/conference/#{conference4.short_title}/targets")
|
|
expect(page).to_not have_link('Venue', href: "/admin/conference/#{conference4.short_title}/venue")
|
|
expect(page).to_not have_link('Rooms', href: "/admin/conference/#{conference4.short_title}/rooms")
|
|
expect(page).to_not have_link('Lodgings', href: "/admin/conference/#{conference4.short_title}/lodgings")
|
|
expect(page).to_not have_link('Sponsorship', href: "/admin/conference/#{conference4.short_title}/sponsorship_levels")
|
|
expect(page).to_not have_link('Sponsors', href: "/admin/conference/#{conference4.short_title}/sponsors")
|
|
expect(page).to_not have_link('Supporter Levels', href: "/admin/conference/#{conference4.short_title}/supporter_levels")
|
|
expect(page).to_not have_link('E-Mails', href: "/admin/conference/#{conference4.short_title}/emails")
|
|
expect(page).to_not have_link('Call for papers', href: "/admin/conference/#{conference4.short_title}/callforpapers")
|
|
expect(page).to_not have_link('Tracks', href: "/admin/conference/#{conference4.short_title}/tracks")
|
|
expect(page).to_not have_link('Event types', href: "/admin/conference/#{conference4.short_title}/event_types")
|
|
expect(page).to_not have_link('Difficulty levels', href: "/admin/conference/#{conference4.short_title}/difficulty_levels")
|
|
expect(page).to_not have_link('Questions', href: "/admin/conference/#{conference4.short_title}/questions")
|
|
expect(page).to_not have_link('Roles', href: "/admin/conference/#{conference4.short_title}/roles")
|
|
|
|
visit edit_admin_conference_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_path(conference4.short_title)
|
|
expect(current_path).to eq(admin_conference_path(conference4.short_title))
|
|
|
|
visit admin_conference_registrations_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_events_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_schedule_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_campaigns_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_targets_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_venue_info_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_sponsorship_levels_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_tickets_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_emails_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_callforpapers_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_questions_path(conference4.short_title)
|
|
expect(current_path).to eq(root_path)
|
|
|
|
visit admin_conference_commercials_path(conference4.short_title)
|
|
expect(current_path).to eq(admin_conference_commercials_path(conference4.short_title))
|
|
end
|
|
end
|