2011-03-10 11:35:46 +00:00
|
|
|
require 'spec_helper'
|
2011-11-29 14:36:51 +00:00
|
|
|
require 'shared_examples/projects_controller'
|
2011-03-10 11:35:46 +00:00
|
|
|
|
|
|
|
describe ProjectsController do
|
2011-11-24 19:22:37 +00:00
|
|
|
before(:each) do
|
|
|
|
@project = Factory(:project)
|
|
|
|
@another_user = Factory(:user)
|
|
|
|
@create_params = {:project => {:name => 'pro', :unixname => 'pro2'}}
|
|
|
|
@update_params = {:project => {:name => 'pro2', :unixname => 'pro2'}}
|
2011-11-25 16:23:10 +00:00
|
|
|
|
|
|
|
platform = Factory(:platform)
|
|
|
|
any_instance_of(Project, :collected_project_versions => ['v1.0', 'v2.0'])
|
|
|
|
@process_build_params = {:build => {
|
|
|
|
:arches => {Factory(:arch).id => '1'},
|
|
|
|
:project_version => 'v1.0',
|
|
|
|
:bpl => {platform.id => '1'},
|
|
|
|
:pl => platform.id,
|
|
|
|
:update_type => 'security'
|
|
|
|
}}
|
2011-11-24 19:22:37 +00:00
|
|
|
end
|
2011-03-10 11:35:46 +00:00
|
|
|
|
2011-11-24 19:22:37 +00:00
|
|
|
context 'for guest' do
|
|
|
|
it 'should not be able to perform index action' do
|
2011-11-26 00:54:40 +00:00
|
|
|
get :index
|
|
|
|
response.should redirect_to(new_user_session_path)
|
2011-11-24 19:22:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not be able to perform update action' do
|
2011-11-26 00:54:40 +00:00
|
|
|
put :update, {:id => @project.id}.merge(@update_params)
|
|
|
|
response.should redirect_to(new_user_session_path)
|
2011-11-24 19:22:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for admin' do
|
|
|
|
before(:each) do
|
|
|
|
@admin = Factory(:admin)
|
|
|
|
set_session_for(@admin)
|
|
|
|
end
|
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it_should_behave_like 'be_able_to_perform_index_action'
|
|
|
|
it_should_behave_like 'be_able_to_perform_update_action'
|
|
|
|
it_should_behave_like 'update_collaborator_relation'
|
2011-11-24 19:22:37 +00:00
|
|
|
|
|
|
|
it 'should be able to perform create action' do
|
|
|
|
post :create, @create_params
|
|
|
|
response.should redirect_to(project_path( Project.last.id ))
|
|
|
|
end
|
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it 'should change objects count on create' do
|
|
|
|
lambda { post :create, @create_params }.should change{ Project.count }.by(1)
|
2011-11-24 19:22:37 +00:00
|
|
|
end
|
2011-11-25 16:23:10 +00:00
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it_should_behave_like 'be_able_to_fork_project'
|
2011-11-24 19:22:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for owner user' do
|
|
|
|
before(:each) do
|
|
|
|
@user = Factory(:user)
|
|
|
|
set_session_for(@user)
|
|
|
|
@project.update_attribute(:owner, @user)
|
|
|
|
r = @project.relations.build(:object_type => 'User', :object_id => @user.id, :role => 'admin')
|
|
|
|
r.save!
|
|
|
|
end
|
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it_should_behave_like 'be_able_to_perform_update_action'
|
|
|
|
it_should_behave_like 'update_collaborator_relation'
|
|
|
|
it_should_behave_like 'be_able_to_perform_build_action'
|
|
|
|
it_should_behave_like 'be_able_to_perform_process_build_action'
|
2011-11-25 16:23:10 +00:00
|
|
|
|
|
|
|
it 'should be able to perform destroy action' do
|
|
|
|
delete :destroy, {:id => @project.id}
|
|
|
|
response.should redirect_to(@project.owner)
|
|
|
|
end
|
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it 'should change objects count on destroy' do
|
|
|
|
lambda { post :create, @create_params }.should change{ Project.count }.by(-1)
|
|
|
|
end
|
|
|
|
|
2011-11-25 16:23:10 +00:00
|
|
|
it 'should not be able to fork project' do
|
|
|
|
post :fork, :id => @project.id
|
|
|
|
response.should redirect_to(forbidden_path)
|
|
|
|
end
|
2011-11-24 19:22:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for reader user' do
|
|
|
|
before(:each) do
|
|
|
|
@user = Factory(:user)
|
|
|
|
set_session_for(@user)
|
|
|
|
r = @project.relations.build(:object_type => 'User', :object_id => @user.id, :role => 'reader')
|
|
|
|
r.save!
|
|
|
|
end
|
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it_should_behave_like 'be_able_to_perform_index_action'
|
2011-11-24 19:22:37 +00:00
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it 'should be able to perform show action' do
|
2011-11-24 19:22:37 +00:00
|
|
|
get :show, :id => @project.id
|
|
|
|
response.should render_template(:show)
|
|
|
|
end
|
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it_should_behave_like 'be_able_to_fork_project'
|
2011-11-24 19:22:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for writer user' do
|
|
|
|
before(:each) do
|
|
|
|
@user = Factory(:user)
|
|
|
|
set_session_for(@user)
|
|
|
|
r = @project.relations.build(:object_type => 'User', :object_id => @user.id, :role => 'writer')
|
|
|
|
r.save!
|
|
|
|
end
|
|
|
|
|
2011-11-29 14:36:51 +00:00
|
|
|
it_should_behave_like 'be_able_to_perform_update_action'
|
|
|
|
it_should_behave_like 'update_collaborator_relation'
|
|
|
|
it_should_behave_like 'be_able_to_perform_build_action'
|
|
|
|
it_should_behave_like 'be_able_to_perform_process_build_action'
|
|
|
|
it_should_behave_like 'be_able_to_fork_project'
|
2011-11-24 19:22:37 +00:00
|
|
|
end
|
2011-03-10 11:35:46 +00:00
|
|
|
end
|