164 lines
5.0 KiB
Ruby
164 lines
5.0 KiB
Ruby
|
# -*- encoding : utf-8 -*-
|
||
|
require 'spec_helper'
|
||
|
|
||
|
shared_examples_for 'mass_build platform owner' do
|
||
|
it 'should be able to perform index action' do
|
||
|
get :index, :platform_id => @platform
|
||
|
response.should render_template(:index)
|
||
|
end
|
||
|
|
||
|
it 'should be able to perform create action' do
|
||
|
post :create, @create_params
|
||
|
response.should redirect_to(platform_mass_builds_path(@platform))
|
||
|
end
|
||
|
|
||
|
it 'should be able to perform cancel action' do
|
||
|
post :cancel, :platform_id => @platform, :id => @mass_build
|
||
|
response.should redirect_to(platform_mass_builds_path(@platform))
|
||
|
end
|
||
|
|
||
|
it 'should change stop_build on cancel' do
|
||
|
post :cancel, :platform_id => @platform, :id => @mass_build
|
||
|
@mass_build.reload.stop_build.should == true
|
||
|
end
|
||
|
|
||
|
it 'should not be able to perform cancel action if stop_build is true' do
|
||
|
@mass_build.update_attribute(:stop_build, true)
|
||
|
post :cancel, :platform_id => @platform, :id => @mass_build
|
||
|
response.should redirect_to(forbidden_path)
|
||
|
end
|
||
|
|
||
|
it 'should change objects count on create success' do
|
||
|
lambda { post :create, @create_params }.should change{ MassBuild.count }.by(1)
|
||
|
end
|
||
|
|
||
|
context 'for personal platform' do
|
||
|
before(:each) do
|
||
|
Platform.update_all("platform_type = 'personal'")
|
||
|
end
|
||
|
|
||
|
[:cancel, :failed_builds_list, :create].each do |action|
|
||
|
it "should not be able to perform #{ action } action" do
|
||
|
get action, :platform_id => @platform, :id => @mass_build.id
|
||
|
response.should redirect_to(forbidden_path)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
shared_examples_for 'mass_build platform reader' do
|
||
|
[:index, :create].each do |action|
|
||
|
it "should not be able to perform #{ action } action" do
|
||
|
get action, :platform_id => @platform
|
||
|
response.should redirect_to(forbidden_path)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
[:cancel, :failed_builds_list].each do |action|
|
||
|
it "should not be able to perform #{ action } action" do
|
||
|
get action, :platform_id => @platform, :id => @mass_build.id
|
||
|
response.should redirect_to(forbidden_path)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
it 'should not change objects count on create success' do
|
||
|
lambda { post :create, @create_params }.should change{ MassBuild.count }.by(0)
|
||
|
end
|
||
|
|
||
|
it 'should not change stop_build on cancel' do
|
||
|
post :cancel, :platform_id => @platform, :id => @mass_build
|
||
|
@mass_build.reload.stop_build.should == false
|
||
|
end
|
||
|
end
|
||
|
|
||
|
|
||
|
describe Platforms::MassBuildsController do
|
||
|
before(:each) do
|
||
|
stub_symlink_methods
|
||
|
|
||
|
@platform = FactoryGirl.create(:platform)
|
||
|
@repository = FactoryGirl.create(:repository, :platform => @platform)
|
||
|
@personal_platform = FactoryGirl.create(:platform, :platform_type => 'personal')
|
||
|
@user = FactoryGirl.create(:user)
|
||
|
@create_params = {
|
||
|
:platform_id => @platform,
|
||
|
:repositories => [@platform.repositories.first.id],
|
||
|
:arches => [Arch.first.id],
|
||
|
:auto_publish => true
|
||
|
}
|
||
|
|
||
|
#@mass_build = FactoryGirl.build(:mass_build, :platform => @platform, :user => @user, :name => "fuck")
|
||
|
@mass_build = MassBuild.new(
|
||
|
:platform => @platform,
|
||
|
:user => @user,
|
||
|
:repositories => [@repository.id],
|
||
|
:arches => [Arch.first.id],
|
||
|
:auto_publish => false
|
||
|
)
|
||
|
@mass_build.save
|
||
|
end
|
||
|
|
||
|
context 'for guest' do
|
||
|
[:index, :create, :cancel, :failed_builds_list].each do |action|
|
||
|
it "should not be able to perform #{ action } action" do
|
||
|
get action, :platform_id => @platform
|
||
|
response.should redirect_to(new_user_session_path)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
it 'should not change objects count on create success' do
|
||
|
lambda { post :create, @create_params }.should change{ MassBuild.count }.by(0)
|
||
|
end
|
||
|
|
||
|
it 'should not change stop_build on cancel' do
|
||
|
post :cancel, :platform_id => @platform, :id => @mass_build
|
||
|
@mass_build.reload.stop_build.should == false
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'for global admin' do
|
||
|
before(:each) do
|
||
|
@admin = FactoryGirl.create(:admin)
|
||
|
@user = FactoryGirl.create(:user)
|
||
|
set_session_for(@admin)
|
||
|
end
|
||
|
|
||
|
# Can global create and view??
|
||
|
#it_should_behave_like 'mass_build platform owner'
|
||
|
it_should_behave_like 'mass_build platform owner'
|
||
|
end
|
||
|
|
||
|
context 'for owner user' do
|
||
|
before(:each) do
|
||
|
@user = FactoryGirl.create(:user)
|
||
|
set_session_for(@user)
|
||
|
@platform.update_attribute(:owner, @user)
|
||
|
#@platform.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
|
||
|
end
|
||
|
|
||
|
it_should_behave_like 'mass_build platform owner'
|
||
|
end
|
||
|
|
||
|
context 'for admin user' do
|
||
|
before(:each) do
|
||
|
@user = FactoryGirl.create(:user)
|
||
|
set_session_for(@user)
|
||
|
#@platform.update_attribute(:owner, @user)
|
||
|
@platform.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
|
||
|
end
|
||
|
|
||
|
it_should_behave_like 'mass_build platform owner'
|
||
|
end
|
||
|
|
||
|
context 'for reader user' do
|
||
|
before(:each) do
|
||
|
@user = FactoryGirl.create(:user)
|
||
|
set_session_for(@user)
|
||
|
@platform.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'reader')
|
||
|
end
|
||
|
|
||
|
it_should_behave_like 'mass_build platform reader'
|
||
|
end
|
||
|
end
|
||
|
|