Files
nairobi/spec/features/admin_spec.rb
Juanjo Bazán 29f4976a07 fix specs
2015-08-29 14:17:41 +02:00

120 lines
2.6 KiB
Ruby

require 'rails_helper'
feature 'Admin' do
let(:user) { create(:user) }
let(:administrator) do
create(:administrator, user: user)
user
end
let(:moderator) do
create(:moderator, user: user)
user
end
scenario 'Access as regular user is not authorized' do
login_as(user)
visit admin_root_path
expect(current_path).to eq(root_path)
expect(page).to have_content "not authorized"
end
scenario 'Access as a moderator is not authorized' do
login_as(moderator)
visit admin_root_path
expect(current_path).to eq(root_path)
expect(page).to have_content "not authorized"
end
scenario 'Access as an administrator is authorized' do
login_as(administrator)
visit admin_root_path
expect(current_path).to eq(admin_root_path)
expect(page).to_not have_content "not authorized"
end
scenario "Admin access links" do
login_as(administrator)
visit root_path
expect(page).to have_link('Administration')
expect(page).to_not have_link('Moderator')
end
scenario "Moderation access links" do
login_as(moderator)
visit root_path
expect(page).to have_link('Moderation')
expect(page).to_not have_link('Administration')
end
scenario 'Admin dashboard' do
login_as(administrator)
visit root_path
click_link 'Administration'
expect(current_path).to eq(admin_root_path)
expect(page).to have_css('#admin_menu')
expect(page).to_not have_css('#moderation_menu')
end
scenario 'Moderation dashboard' do
login_as(moderator)
visit root_path
click_link 'Moderation'
expect(current_path).to eq(moderation_root_path)
expect(page).to have_css('#moderation_menu')
expect(page).to_not have_css('#admin_menu')
end
context 'Tags' do
let(:unfeatured_tag) { create :tag, :unfeatured, name: 'Mi barrio' }
background do
login_as(administrator)
end
scenario 'adding a new tag' do
visit admin_tags_path
fill_in 'tag_name', with: 'Papeleras'
click_on 'Create Topic'
expect(page).to have_content 'Papeleras'
end
scenario 'deleting tag' do
unfeatured_tag
visit admin_tags_path
expect(page).to have_content 'Mi barrio'
click_link 'Delete Topic'
expect(page).not_to have_content 'Mi barrio'
end
scenario 'marking tags as featured / unfeatured' do
expect(unfeatured_tag).not_to be_featured
visit admin_tags_path
expect(page).to have_content 'Mi barrio'
check "tag_featured_#{unfeatured_tag.id}"
click_button 'Update Topic'
expect(page).to have_checked_field("tag_featured_#{unfeatured_tag.id}")
end
end
end