2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-03-09 19:27:51 +00:00
|
|
|
require 'spec_helper'
|
2011-12-15 09:38:40 +00:00
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
shared_examples_for 'platform user with reader rights' do
|
|
|
|
include_examples 'platform user with show rights'
|
|
|
|
|
|
|
|
[:members, :advisories].each do |action|
|
|
|
|
it 'should be able to perform advisories action' do
|
|
|
|
get action, :id => @platform.id
|
|
|
|
response.should render_template(action)
|
|
|
|
response.should be_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'platform user with owner rights' do
|
|
|
|
|
|
|
|
context 'platform user with update rights' do
|
|
|
|
before do
|
|
|
|
put :update, {:platform => {:description => 'new description'}, :id => @platform.id}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform update action' do
|
|
|
|
response.should redirect_to(platform_path(@platform))
|
|
|
|
end
|
|
|
|
it 'ensures that platform has been updated' do
|
|
|
|
@platform.reload
|
|
|
|
@platform.description.should == 'new description'
|
|
|
|
end
|
|
|
|
end
|
2011-12-15 09:38:40 +00:00
|
|
|
|
2013-06-26 10:00:51 +01:00
|
|
|
context 'perform change_visibility action' do
|
|
|
|
before do
|
|
|
|
@visibility = @platform.visibility
|
|
|
|
post :change_visibility, :id => @platform.id
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform action' do
|
|
|
|
response.should redirect_to(platform_path(@platform))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'ensures that visibility of platform has been changed' do
|
|
|
|
@platform.reload
|
|
|
|
@platform.visibility.should_not == @visibility
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
context 'platform user with destroy rights for main platforms only' do
|
|
|
|
it 'should be able to perform destroy action for main platform' do
|
|
|
|
delete :destroy, :id => @platform.id
|
|
|
|
response.should redirect_to(platforms_path)
|
|
|
|
end
|
|
|
|
it 'ensures that main platform has been destroyed' do
|
|
|
|
lambda { delete :destroy, :id => @platform.id }.should change{ Platform.count }.by(-1)
|
|
|
|
end
|
|
|
|
it 'should not be able to perform destroy action for personal platform' do
|
|
|
|
delete :destroy, :id => @personal_platform.id
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'ensures that personal platform has not been destroyed' do
|
|
|
|
lambda { delete :destroy, :id => @personal_platform.id }.should_not change{ Platform.count }
|
|
|
|
end
|
2011-12-15 09:38:40 +00:00
|
|
|
end
|
2013-03-06 12:17:42 +00:00
|
|
|
end
|
2011-12-15 09:38:40 +00:00
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
shared_examples_for 'platform user without owner rights' do
|
|
|
|
context 'platform user without update rights' do
|
|
|
|
before do
|
|
|
|
put :update, {:platform => {:description => 'new description'}, :id => @platform.id}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not be able to perform update action' do
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'ensures that platform has not been updated' do
|
|
|
|
@platform.reload
|
|
|
|
@platform.description.should_not == 'new description'
|
|
|
|
end
|
2011-12-15 09:38:40 +00:00
|
|
|
end
|
|
|
|
|
2013-06-26 10:00:51 +01:00
|
|
|
context 'perform change_visibility action' do
|
|
|
|
before do
|
|
|
|
@visibility = @platform.visibility
|
|
|
|
post :change_visibility, :id => @platform.id
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not be able to perform action' do
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'ensures that visibility of platform has not been changed' do
|
|
|
|
@platform.reload
|
|
|
|
@platform.visibility.should == @visibility
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
context 'platform user without destroy rights' do
|
|
|
|
it 'should not be able to perform destroy action for main platform' do
|
|
|
|
delete :destroy, :id => @platform.id
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'ensures that main platform has not been destroyed' do
|
|
|
|
lambda { delete :destroy, :id => @platform.id }.should_not change{ Platform.count }
|
|
|
|
end
|
|
|
|
it 'should not be able to perform destroy action for personal platform' do
|
|
|
|
delete :destroy, :id => @personal_platform.id
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'ensures that personal platform has not been destroyed' do
|
|
|
|
lambda { delete :destroy, :id => @personal_platform.id }.should_not change{ Platform.count }
|
|
|
|
end
|
2011-12-15 09:38:40 +00:00
|
|
|
end
|
2013-03-06 12:17:42 +00:00
|
|
|
|
2011-12-15 09:38:40 +00:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
shared_examples_for 'platform user with member rights' do
|
|
|
|
|
|
|
|
context 'platform user with add_member rights' do
|
|
|
|
let(:member) { FactoryGirl.create(:user) }
|
|
|
|
before do
|
|
|
|
put :add_member, {:member_id => member.id, :id => @platform.id}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform add_member action' do
|
|
|
|
response.should redirect_to(members_platform_path(@platform))
|
|
|
|
end
|
|
|
|
it 'ensures that new member has been added to platform' do
|
|
|
|
@platform.members.should include(member)
|
|
|
|
end
|
2011-12-15 09:38:40 +00:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
context 'platform user with remove_member rights' do
|
|
|
|
let(:member) { FactoryGirl.create(:user) }
|
|
|
|
before do
|
|
|
|
@platform.add_member(member)
|
|
|
|
delete :remove_member, {:member_id => member.id, :id => @platform.id}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform remove_member action' do
|
|
|
|
response.should redirect_to(members_platform_path(@platform))
|
|
|
|
end
|
|
|
|
it 'ensures that member has been removed from platform' do
|
|
|
|
@platform.members.should_not include(member)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'platform user with remove_members rights' do
|
|
|
|
let(:member) { FactoryGirl.create(:user) }
|
|
|
|
before do
|
|
|
|
@platform.add_member(member)
|
|
|
|
post :remove_members, {:user_remove => {member.id => [1]}, :id => @platform.id}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform remove_members action' do
|
|
|
|
response.should redirect_to(members_platform_path(@platform))
|
|
|
|
end
|
|
|
|
it 'ensures that member has been removed from platform' do
|
|
|
|
@platform.members.should_not include(member)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'platform user without member rights' do |guest = false|
|
|
|
|
|
|
|
|
context 'platform user without add_member rights' do
|
|
|
|
let(:member) { FactoryGirl.create(:user) }
|
|
|
|
before do
|
|
|
|
put :add_member, {:member_id => member.id, :id => @platform.id}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not be able to perform add_member action' do
|
|
|
|
response.should redirect_to(guest ? new_user_session_path : forbidden_path)
|
|
|
|
end
|
|
|
|
it 'ensures that new member has not been added to platform' do
|
|
|
|
@platform.members.should_not include(member)
|
|
|
|
end
|
2012-09-07 10:41:49 +01:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
context 'platform user without remove_member rights' do
|
|
|
|
let(:member) { FactoryGirl.create(:user) }
|
|
|
|
before do
|
|
|
|
@platform.add_member(member)
|
|
|
|
delete :remove_member, {:member_id => member.id, :id => @platform.id}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not be able to perform remove_member action' do
|
|
|
|
response.should redirect_to(guest ? new_user_session_path : forbidden_path)
|
|
|
|
end
|
|
|
|
it 'ensures that member has not been removed from platform' do
|
|
|
|
@platform.members.should include(member)
|
|
|
|
end
|
2012-09-07 10:41:49 +01:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
context 'platform user without remove_members rights' do
|
|
|
|
let(:member) { FactoryGirl.create(:user) }
|
|
|
|
before do
|
|
|
|
@platform.add_member(member)
|
|
|
|
post :remove_members, {:user_remove => {member.id => [1]}, :id => @platform.id}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not be able to perform remove_members action' do
|
|
|
|
response.should redirect_to(guest ? new_user_session_path : forbidden_path)
|
|
|
|
end
|
|
|
|
it 'ensures that member has not been removed from platform' do
|
|
|
|
@platform.members.should include(member)
|
|
|
|
end
|
2012-09-07 10:41:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2013-03-06 12:17:42 +00:00
|
|
|
|
|
|
|
shared_examples_for 'platform user without global admin rights' do
|
|
|
|
context 'should not be able to perform clear action' do
|
|
|
|
it 'for personal platform' do
|
|
|
|
put :clear, :id => @personal_platform.id
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'for main platform' do
|
|
|
|
put :clear, :id => @platform.id
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'should not be able to perform clone action' do
|
|
|
|
it 'for personal platform' do
|
|
|
|
get :clone, :id => @personal_platform.id
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'for main platform' do
|
|
|
|
get :clone, :id => @platform.id
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
end
|
2012-09-07 10:41:49 +01:00
|
|
|
|
|
|
|
it 'should not be able to perform new action' do
|
|
|
|
get :new
|
2013-03-06 12:17:42 +00:00
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
[:create, :make_clone].each do |action|
|
|
|
|
context "platform user without #{action} rights" do
|
|
|
|
before { any_instance_of(Platform, :create_directory => true) }
|
|
|
|
it "should not be able to perform #{action} action" do
|
|
|
|
post action, clone_or_create_params
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it "ensures that platform has not been #{action}d" do
|
|
|
|
lambda { post action, clone_or_create_params }.should_not change{ Platform.count }
|
|
|
|
end
|
|
|
|
end
|
2012-09-07 10:41:49 +01:00
|
|
|
end
|
2013-03-06 12:17:42 +00:00
|
|
|
end
|
2012-09-07 10:41:49 +01:00
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
shared_examples_for 'platform user with reader rights for hidden platform' do
|
|
|
|
before(:each) do
|
|
|
|
@platform.update_column(:visibility, 'hidden')
|
2011-12-15 09:38:40 +00:00
|
|
|
end
|
2013-03-06 12:17:42 +00:00
|
|
|
|
|
|
|
it_should_behave_like 'platform user with show rights'
|
2011-12-15 09:38:40 +00:00
|
|
|
end
|
2011-03-09 19:27:51 +00:00
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
shared_examples_for 'platform user without reader rights for hidden platform' do
|
2011-11-28 13:28:29 +00:00
|
|
|
before(:each) do
|
2013-03-06 12:17:42 +00:00
|
|
|
@platform.update_column(:visibility, 'hidden')
|
|
|
|
end
|
|
|
|
|
|
|
|
[:show, :members].each do |action|
|
|
|
|
it "should not be able to perform #{ action } action" do
|
|
|
|
get action, :id => @platform.id
|
|
|
|
response.should redirect_to(forbidden_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'platform user with show rights' do
|
|
|
|
it 'should be able to perform show action' do
|
|
|
|
get :show, :id => @platform.id
|
|
|
|
response.should render_template(:show)
|
|
|
|
assigns(:platform).should eq @platform
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe Platforms::PlatformsController do
|
|
|
|
let(:clone_or_create_params) { {:id => @platform.id, :platform => {:description => 'new description', :name => 'new_name', :owner_id => @user.id, :distrib_type => APP_CONFIG['distr_types'].first}} }
|
|
|
|
before do
|
2012-05-16 16:29:28 +01:00
|
|
|
stub_symlink_methods
|
2011-12-12 07:51:39 +00:00
|
|
|
|
2012-03-29 21:34:22 +01:00
|
|
|
@platform = FactoryGirl.create(:platform)
|
|
|
|
@personal_platform = FactoryGirl.create(:platform, :platform_type => 'personal')
|
2012-09-07 10:41:49 +01:00
|
|
|
|
2012-03-29 21:34:22 +01:00
|
|
|
@user = FactoryGirl.create(:user)
|
2012-08-31 19:48:06 +01:00
|
|
|
end
|
2011-03-09 19:27:51 +00:00
|
|
|
|
2011-11-28 13:28:29 +00:00
|
|
|
context 'for guest' do
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
it "should not be able to perform index action" do
|
|
|
|
get :index
|
|
|
|
response.should redirect_to(new_user_session_path)
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
2012-08-31 23:00:39 +01:00
|
|
|
|
2012-09-07 10:41:49 +01:00
|
|
|
[:show, :members, :advisories].each do |action|
|
|
|
|
it "should not be able to perform #{ action } action", :anonymous_access => false do
|
|
|
|
get action, :id => @platform
|
2012-08-31 23:00:39 +01:00
|
|
|
response.should redirect_to(new_user_session_path)
|
|
|
|
end
|
|
|
|
end
|
2012-09-07 10:41:49 +01:00
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
it_should_behave_like 'platform user with show rights' if APP_CONFIG['anonymous_access']
|
|
|
|
it_should_behave_like 'platform user without reader rights for hidden platform' if APP_CONFIG['anonymous_access']
|
|
|
|
it_should_behave_like 'platform user without member rights', true
|
|
|
|
it_should_behave_like 'platform user without owner rights'
|
|
|
|
it_should_behave_like 'platform user without global admin rights'
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for global admin' do
|
2013-03-06 12:17:42 +00:00
|
|
|
before do
|
|
|
|
@admin = FactoryGirl.create(:admin)
|
|
|
|
http_login(@admin)
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
it_should_behave_like 'platform user with reader rights'
|
|
|
|
it_should_behave_like 'platform user with reader rights for hidden platform'
|
|
|
|
it_should_behave_like 'platform user with member rights'
|
|
|
|
it_should_behave_like 'platform user with owner rights'
|
2012-09-07 10:41:49 +01:00
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
it "should be able to perform new action" do
|
|
|
|
get :new, :id => @platform
|
2011-11-28 13:28:29 +00:00
|
|
|
response.should render_template(:new)
|
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
it "should be able to perform clone action" do
|
|
|
|
get :clone, :id => @platform
|
|
|
|
response.should render_template(:clone)
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
[:make_clone, :create].each do |action|
|
|
|
|
context "with #{action} rights" do
|
|
|
|
before do
|
|
|
|
any_instance_of(Platform, :create_directory => true)
|
|
|
|
clone_or_create_params[:platform][:owner_id] = @admin.id
|
|
|
|
end
|
|
|
|
it "should be able to perform #{action} action" do
|
|
|
|
post action, clone_or_create_params
|
|
|
|
response.should redirect_to(platform_path(Platform.last))
|
|
|
|
end
|
|
|
|
it "ensures that platform has been #{action}d" do
|
|
|
|
lambda { post action, clone_or_create_params }.should change{ Platform.count }.by(1)
|
|
|
|
end
|
|
|
|
end
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
2013-03-06 12:17:42 +00:00
|
|
|
end
|
2011-11-28 13:28:29 +00:00
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
context 'for owner user' do
|
|
|
|
before do
|
|
|
|
http_login(@user)
|
|
|
|
@platform.owner = @user; @platform.save
|
|
|
|
@platform.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
|
2011-12-11 16:00:50 +00:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
it_should_behave_like 'platform user with reader rights'
|
|
|
|
it_should_behave_like 'platform user with reader rights for hidden platform'
|
|
|
|
it_should_behave_like 'platform user with member rights'
|
|
|
|
it_should_behave_like 'platform user with owner rights'
|
|
|
|
it_should_behave_like 'platform user without global admin rights'
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
context 'for member of platform' do
|
|
|
|
before do
|
|
|
|
http_login(@user)
|
|
|
|
@platform.add_member(@user)
|
|
|
|
@personal_platform.add_member(@user)
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
it_should_behave_like 'platform user with reader rights'
|
|
|
|
it_should_behave_like 'platform user with reader rights for hidden platform'
|
|
|
|
it_should_behave_like 'platform user with member rights'
|
|
|
|
it_should_behave_like 'platform user without owner rights'
|
|
|
|
it_should_behave_like 'platform user without global admin rights'
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
|
|
|
|
2013-07-17 16:33:58 +01:00
|
|
|
context 'for member of repository' do
|
|
|
|
before do
|
|
|
|
http_login(@user)
|
|
|
|
repository = FactoryGirl.create(:repository, :platform => @platform)
|
|
|
|
repository.add_member(@user)
|
|
|
|
personal_repository = FactoryGirl.create(:repository, :platform => @personal_platform)
|
|
|
|
personal_repository.add_member(@user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_should_behave_like 'platform user with reader rights'
|
|
|
|
it_should_behave_like 'platform user with reader rights for hidden platform'
|
|
|
|
it_should_behave_like 'platform user without member rights'
|
|
|
|
it_should_behave_like 'platform user without owner rights'
|
|
|
|
it_should_behave_like 'platform user without global admin rights'
|
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
context 'for simple user' do
|
|
|
|
before do
|
|
|
|
http_login(@user)
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
|
|
|
|
2013-03-06 12:17:42 +00:00
|
|
|
it "should be able to perform index action" do
|
|
|
|
get :index
|
|
|
|
response.should render_template(:index)
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
2013-03-06 12:17:42 +00:00
|
|
|
|
|
|
|
it_should_behave_like 'platform user with reader rights'
|
|
|
|
it_should_behave_like 'platform user without reader rights for hidden platform'
|
|
|
|
it_should_behave_like 'platform user without member rights'
|
|
|
|
it_should_behave_like 'platform user without owner rights'
|
|
|
|
it_should_behave_like 'platform user without global admin rights'
|
2011-11-28 13:28:29 +00:00
|
|
|
end
|
2013-03-06 12:17:42 +00:00
|
|
|
|
2011-03-09 19:27:51 +00:00
|
|
|
end
|