mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 04:04:03 +00:00
43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe ConferenceController do
|
|
let(:conference) { create(:conference, make_conference_public: true) }
|
|
|
|
describe 'GET #show' do
|
|
context 'conference made public' do
|
|
it 'assigns the requested conference to conference' do
|
|
get :show, id: conference.short_title
|
|
expect(assigns(:conference)).to eq conference
|
|
end
|
|
|
|
it 'renders the show template' do
|
|
get :show, id: conference.short_title
|
|
expect(response).to render_template :show
|
|
end
|
|
end
|
|
context 'conference is not public' do
|
|
before(:each) { conference.update_attribute(:make_conference_public, false) }
|
|
|
|
it 'redirects to root path' do
|
|
get :show, id: conference.short_title
|
|
expect(response).to redirect_to root_path
|
|
end
|
|
|
|
it 'renders flash saying conference not ready' do
|
|
get :show, id: conference.short_title
|
|
expect(flash[:alert]).to eq('You are not authorized to access this page.')
|
|
end
|
|
end
|
|
context 'gallery photos for splash' do
|
|
it 'return conference photos' do
|
|
xhr :get, :gallery_photos, id: conference.short_title
|
|
expect(assigns(:photos)).to eq conference.photos
|
|
end
|
|
|
|
it 'renders photos template' do
|
|
xhr :get, :gallery_photos, id: conference.short_title
|
|
expect(response).to render_template :photos
|
|
end
|
|
end
|
|
end
|
|
end
|