mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
60 lines
1.9 KiB
Ruby
60 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
feature Ticket do
|
|
let!(:conference) { create(:conference, title: 'ExampleCon') }
|
|
let!(:organizer) { create(:organizer, resource: conference) }
|
|
|
|
context 'as a organizer' do
|
|
before(:each) do
|
|
sign_in organizer
|
|
end
|
|
|
|
after(:each) do
|
|
sign_out
|
|
end
|
|
|
|
scenario 'add a valid ticket', feature: true, js: true do
|
|
visit admin_conference_tickets_path(conference.short_title)
|
|
click_link 'Add Ticket'
|
|
|
|
fill_in 'ticket_title', with: 'Business Ticket'
|
|
fill_in 'ticket_description', with: 'The business ticket'
|
|
fill_in 'ticket_price', with: '100'
|
|
|
|
click_button 'Create Ticket'
|
|
|
|
within('#flash') { expect(page).to have_text('Ticket successfully created.') }
|
|
expect(Ticket.count).to eq(2)
|
|
end
|
|
|
|
context 'Ticket already created' do
|
|
let!(:ticket) { create(:ticket, title: 'Business Ticket', price: 100, conference_id: conference.id) }
|
|
|
|
scenario 'edit valid ticket', feature: true, js: true do
|
|
visit admin_conference_tickets_path(conference.short_title)
|
|
click_link('Edit', href: edit_admin_conference_ticket_path(conference.short_title, ticket.id))
|
|
|
|
fill_in 'ticket_title', with: 'Event Ticket'
|
|
fill_in 'ticket_price', with: '50'
|
|
|
|
click_button 'Update Ticket'
|
|
|
|
within('#flash') { expect(page).to have_text('Ticket successfully updated.') }
|
|
expect(ticket.reload.price.to_i).to eq(50)
|
|
expect(ticket.reload.title).to eq('Event Ticket')
|
|
expect(Ticket.count).to eq(2)
|
|
end
|
|
|
|
scenario 'delete ticket', feature: true, js: true do
|
|
visit admin_conference_tickets_path(conference.short_title)
|
|
click_link('Delete', href: admin_conference_ticket_path(conference.short_title, ticket.id))
|
|
page.accept_alert
|
|
|
|
within('#flash') { expect(page).to have_text('Ticket successfully destroyed.') }
|
|
expect(Ticket.count).to eq(1)
|
|
end
|
|
end
|
|
end
|
|
end
|