2012-05-29 13:40:25 +01:00
|
|
|
# -*- encoding : utf-8 -*-
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
shared_examples_for 'guest user' do
|
2012-08-31 23:00:39 +01:00
|
|
|
|
2012-09-06 19:48:36 +01:00
|
|
|
it "should be able to view maintainers list(index)" do
|
|
|
|
get :index, :platform_id => @platform.id
|
|
|
|
response.should be_success
|
2012-05-29 13:40:25 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe Platforms::MaintainersController do
|
2012-05-31 12:43:40 +01:00
|
|
|
before(:each) do
|
2012-05-29 13:40:25 +01:00
|
|
|
stub_symlink_methods
|
|
|
|
|
|
|
|
@platform = FactoryGirl.create(:platform)
|
2012-09-06 19:48:36 +01:00
|
|
|
@user = FactoryGirl.create(:user)
|
|
|
|
set_session_for(@user)
|
2012-05-31 12:43:40 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for guest' do
|
2012-09-06 19:48:36 +01:00
|
|
|
before {set_session_for(User.new)}
|
|
|
|
|
|
|
|
# it_should_behave_like 'guest user'
|
|
|
|
# it "should be able to view maintainers list(index)", :anonymous_access => true do
|
|
|
|
# get :index, :platform_id => @platform.id
|
|
|
|
# response.should be_success
|
|
|
|
# end
|
|
|
|
|
|
|
|
it "should not be able to view maintainers list(index)" do
|
|
|
|
get :index, :platform_id => @platform.id
|
|
|
|
response.should redirect_to(forbidden_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for global admin' do
|
|
|
|
before(:each) do
|
|
|
|
@user.role = "admin"
|
|
|
|
@user.save
|
|
|
|
end
|
|
|
|
|
|
|
|
it_should_behave_like 'guest user'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for registrated user' do
|
|
|
|
|
|
|
|
it_should_behave_like 'guest user'
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
context 'for platform owner' do
|
|
|
|
before(:each) do
|
|
|
|
@user = @platform.owner
|
|
|
|
set_session_for(@user)
|
|
|
|
end
|
|
|
|
|
2012-05-29 13:40:25 +01:00
|
|
|
it_should_behave_like 'guest user'
|
|
|
|
end
|
2012-05-31 12:43:40 +01:00
|
|
|
|
2012-09-06 19:48:36 +01:00
|
|
|
context 'for platform member' do
|
|
|
|
before(:each) do
|
|
|
|
@platform.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
|
2012-05-31 12:43:40 +01:00
|
|
|
end
|
2012-09-06 19:48:36 +01:00
|
|
|
|
|
|
|
it_should_behave_like 'guest user'
|
2012-05-29 13:40:25 +01:00
|
|
|
end
|
2012-09-06 19:48:36 +01:00
|
|
|
|
2012-05-29 13:40:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|