2012-08-21 18:15:28 +01:00
|
|
|
# -*- encoding : utf-8 -*-
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2012-08-22 14:44:01 +01:00
|
|
|
shared_examples_for 'api platform user with reader rights' do
|
|
|
|
include_examples "api platform user with show rights"
|
|
|
|
|
2012-08-21 18:15:28 +01:00
|
|
|
it 'should be able to perform index action' do
|
|
|
|
get :index, :format => :json
|
|
|
|
response.should render_template(:index)
|
|
|
|
end
|
2012-10-09 17:23:48 +01:00
|
|
|
|
2012-10-09 17:51:41 +01:00
|
|
|
it 'should be able to perform members action' do
|
|
|
|
get :members, :id => @platform.id, :format => :json
|
|
|
|
response.should render_template(:members)
|
2012-10-09 17:23:48 +01:00
|
|
|
end
|
2012-10-09 17:51:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'api platform user with writer rights' do
|
2012-10-04 16:20:10 +01:00
|
|
|
|
2012-10-09 17:51:41 +01:00
|
|
|
context 'api platform user with update rights' do
|
|
|
|
before do
|
|
|
|
put :update, {:platform => {:description => 'new description'}, :id => @platform.id}, :format => :json
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform update action' do
|
|
|
|
response.should be_success
|
|
|
|
end
|
|
|
|
it 'ensures that platform has been updated' do
|
|
|
|
@platform.reload
|
|
|
|
@platform.description.should == 'new description'
|
|
|
|
end
|
2012-10-09 17:23:48 +01:00
|
|
|
end
|
2012-10-09 17:51:41 +01:00
|
|
|
|
|
|
|
context 'api platform user with add_member rights' do
|
|
|
|
let(:member) { FactoryGirl.create(:user) }
|
|
|
|
before do
|
|
|
|
put :add_member, {:member_id => member.id, :type => 'User', :id => @platform.id}, :format => :json
|
|
|
|
end
|
|
|
|
|
2012-10-09 18:07:10 +01:00
|
|
|
it 'should be able to perform add_member action' do
|
2012-10-09 17:51:41 +01:00
|
|
|
response.should be_success
|
|
|
|
end
|
|
|
|
it 'ensures that new member has been added to platform' do
|
|
|
|
@platform.members.should include(member)
|
|
|
|
end
|
2012-10-09 17:23:48 +01:00
|
|
|
end
|
2012-10-09 17:51:41 +01:00
|
|
|
|
2012-10-09 18:07:10 +01:00
|
|
|
context 'api 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, :type => 'User', :id => @platform.id}, :format => :json
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform update action' do
|
|
|
|
response.should be_success
|
|
|
|
end
|
|
|
|
it 'ensures that member has been removed from platform' do
|
|
|
|
@platform.members.should_not include(member)
|
|
|
|
end
|
|
|
|
end
|
2012-10-09 17:23:48 +01:00
|
|
|
end
|
|
|
|
|
2012-10-09 17:51:41 +01:00
|
|
|
shared_examples_for 'api platform user without writer rights' do
|
2012-10-09 17:23:48 +01:00
|
|
|
|
2012-10-09 17:51:41 +01:00
|
|
|
context 'api platform user without update rights' do
|
|
|
|
before do
|
|
|
|
put :update, {:platform => {:description => 'new description'}, :id => @platform.id}, :format => :json
|
|
|
|
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
|
2012-10-09 17:23:48 +01:00
|
|
|
end
|
2012-10-09 17:51:41 +01:00
|
|
|
|
|
|
|
context 'api platform user without add_member rights' do
|
|
|
|
let(:member) { FactoryGirl.create(:user) }
|
|
|
|
before do
|
|
|
|
put :add_member, {:member_id => member.id, :type => 'User', :id => @platform.id}, :format => :json
|
|
|
|
end
|
|
|
|
|
2012-10-09 18:07:10 +01:00
|
|
|
it 'should not be able to perform add_member action' do
|
2012-10-09 17:51:41 +01:00
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'ensures that new member has not been added to platform' do
|
|
|
|
@platform.members.should_not include(member)
|
|
|
|
end
|
2012-10-09 17:23:48 +01:00
|
|
|
end
|
2012-10-09 18:07:10 +01:00
|
|
|
|
|
|
|
context 'api 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, :type => 'User', :id => @platform.id}, :format => :json
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform update action' do
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'ensures that member has not been removed from platform' do
|
|
|
|
@platform.members.should include(member)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 16:13:14 +01:00
|
|
|
it_should_behave_like 'api platform user without clone rights'
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'api platform user with clone rights' do
|
|
|
|
before { any_instance_of(Platform, :create_directory => true) }
|
|
|
|
let(:params) { {:id => @platform.id, :platform => {:description => 'new description', :name => 'new_name'}} }
|
|
|
|
it 'should be able to perform clone action' do
|
|
|
|
post :clone, params, :format => :json
|
|
|
|
response.should be_success
|
|
|
|
end
|
|
|
|
it 'ensures that platform has been cloned' do
|
|
|
|
lambda { post :clone, params, :format => :json }.should change{ Platform.count }.by(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'api platform user without clone rights' do
|
|
|
|
before { any_instance_of(Platform, :create_directory => true) }
|
|
|
|
let(:params) { {:id => @platform.id, :platform => {:description => 'new description', :name => 'new_name'}} }
|
|
|
|
it 'should not be able to perform clone action' do
|
|
|
|
post :clone, params, :format => :json
|
|
|
|
response.should_not be_success
|
|
|
|
end
|
|
|
|
it 'ensures that platform has not been cloned' do
|
|
|
|
lambda { post :clone, params, :format => :json }.should_not change{ Platform.count }
|
|
|
|
end
|
2012-08-22 14:44:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'api platform user with reader rights for hidden platform' do
|
|
|
|
before(:each) do
|
|
|
|
@platform.update_column(:visibility, 'hidden')
|
|
|
|
end
|
|
|
|
|
|
|
|
it_should_behave_like 'api platform user with show rights'
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'api platform user without reader rights for hidden platform' do
|
|
|
|
before(:each) do
|
|
|
|
@platform.update_column(:visibility, 'hidden')
|
|
|
|
end
|
|
|
|
|
|
|
|
it_should_behave_like 'api platform user without show rights'
|
|
|
|
end
|
2012-08-21 18:15:28 +01:00
|
|
|
|
2012-08-22 14:44:01 +01:00
|
|
|
shared_examples_for "api platform user with show rights" do
|
2012-08-21 18:15:28 +01:00
|
|
|
it 'should be able to perform show action' do
|
|
|
|
get :show, :id => @platform.id, :format => :json
|
|
|
|
response.should render_template(:show)
|
|
|
|
end
|
2012-10-09 17:23:48 +01:00
|
|
|
|
|
|
|
it 'should be able to perform platforms_for_build action' do
|
|
|
|
get :platforms_for_build, :format => :json
|
|
|
|
response.should render_template(:index)
|
|
|
|
end
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
|
|
|
|
2012-08-22 14:44:01 +01:00
|
|
|
shared_examples_for "api platform user without show rights" do
|
2012-10-09 17:23:48 +01:00
|
|
|
[:show, :members].each do |action|
|
|
|
|
it "should not be able to perform #{ action } action" do
|
|
|
|
get action, :id => @platform.id, :format => :json
|
|
|
|
response.body.should == {"message" => "Access violation to this page!"}.to_json
|
|
|
|
end
|
2012-08-22 14:44:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-21 18:15:28 +01:00
|
|
|
describe Api::V1::PlatformsController do
|
2012-10-04 16:20:10 +01:00
|
|
|
before do
|
2012-08-21 18:15:28 +01:00
|
|
|
stub_symlink_methods
|
|
|
|
|
2012-10-09 17:23:48 +01:00
|
|
|
@platform = FactoryGirl.create(:platform, :visibility => 'open')
|
2012-08-21 18:15:28 +01:00
|
|
|
@personal_platform = FactoryGirl.create(:platform, :platform_type => 'personal')
|
|
|
|
@user = FactoryGirl.create(:user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for guest' do
|
2012-09-26 18:15:11 +01:00
|
|
|
|
2012-08-21 18:15:28 +01:00
|
|
|
it "should not be able to perform index action" do
|
|
|
|
get :index, :format => :json
|
2012-08-22 14:44:01 +01:00
|
|
|
response.status.should == 401
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
|
|
|
|
2012-10-09 17:23:48 +01:00
|
|
|
[:show, :platforms_for_build].each do |action|
|
|
|
|
it "should not be able to perform #{ action } action", :anonymous_access => false do
|
|
|
|
get action, :format => :json
|
|
|
|
response.status.should == 401
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-09 17:51:41 +01:00
|
|
|
it 'should be able to perform members action' do
|
2012-10-09 17:23:48 +01:00
|
|
|
get :members, :id => @platform.id, :format => :json
|
|
|
|
response.should render_template(:members)
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
2012-09-26 18:15:11 +01:00
|
|
|
|
|
|
|
it_should_behave_like 'api platform user with show rights' if APP_CONFIG['anonymous_access']
|
|
|
|
it_should_behave_like 'api platform user without reader rights for hidden platform' if APP_CONFIG['anonymous_access']
|
2012-10-09 17:51:41 +01:00
|
|
|
it_should_behave_like 'api platform user without writer rights'
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for global admin' do
|
2012-10-04 16:20:10 +01:00
|
|
|
before do
|
2012-08-21 18:15:28 +01:00
|
|
|
@admin = FactoryGirl.create(:admin)
|
|
|
|
@user = FactoryGirl.create(:user)
|
2012-09-21 20:48:30 +01:00
|
|
|
http_login(@admin)
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
|
|
|
|
2012-08-22 14:44:01 +01:00
|
|
|
it_should_behave_like 'api platform user with reader rights'
|
|
|
|
it_should_behave_like 'api platform user with reader rights for hidden platform'
|
2012-10-09 17:51:41 +01:00
|
|
|
it_should_behave_like 'api platform user with writer rights'
|
2012-10-10 16:13:14 +01:00
|
|
|
it_should_behave_like 'api platform user with clone rights'
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for owner user' do
|
2012-10-04 16:20:10 +01:00
|
|
|
before do
|
2012-08-21 18:15:28 +01:00
|
|
|
@user = FactoryGirl.create(:user)
|
2012-09-21 20:48:30 +01:00
|
|
|
http_login(@user)
|
2012-08-21 18:15:28 +01:00
|
|
|
@platform.owner = @user; @platform.save
|
|
|
|
@platform.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
|
|
|
|
end
|
|
|
|
|
2012-08-22 14:44:01 +01:00
|
|
|
it_should_behave_like 'api platform user with reader rights'
|
|
|
|
it_should_behave_like 'api platform user with reader rights for hidden platform'
|
2012-10-09 17:51:41 +01:00
|
|
|
it_should_behave_like 'api platform user with writer rights'
|
2012-10-10 16:13:14 +01:00
|
|
|
it_should_behave_like 'api platform user without clone rights'
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for reader user' do
|
2012-10-04 16:20:10 +01:00
|
|
|
before do
|
2012-08-21 18:15:28 +01:00
|
|
|
@user = FactoryGirl.create(:user)
|
2012-09-21 20:48:30 +01:00
|
|
|
http_login(@user)
|
2012-08-21 18:15:28 +01:00
|
|
|
@platform.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'reader')
|
2012-10-04 16:20:10 +01:00
|
|
|
@personal_platform.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'reader')
|
|
|
|
end
|
|
|
|
|
2012-10-04 16:50:20 +01:00
|
|
|
context 'perform index action with type param' do
|
2012-10-04 16:20:10 +01:00
|
|
|
render_views
|
|
|
|
%w(main personal).each do |type|
|
|
|
|
it "ensures that filter by type = #{type} returns true result" do
|
|
|
|
get :index, :format => :json, :type => "#{type}"
|
|
|
|
JSON.parse(response.body)['platforms'].map{ |p| p['platform_type'] }.
|
|
|
|
uniq.should == ["#{type}"]
|
|
|
|
end
|
|
|
|
end
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
|
|
|
|
2012-08-22 14:44:01 +01:00
|
|
|
it_should_behave_like 'api platform user with reader rights'
|
|
|
|
it_should_behave_like 'api platform user with reader rights for hidden platform'
|
2012-10-09 17:51:41 +01:00
|
|
|
it_should_behave_like 'api platform user without writer rights'
|
2012-08-22 14:44:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for simple user' do
|
2012-10-04 16:20:10 +01:00
|
|
|
before do
|
2012-08-22 14:44:01 +01:00
|
|
|
@user = FactoryGirl.create(:user)
|
2012-09-21 20:48:30 +01:00
|
|
|
http_login(@user)
|
2012-08-22 14:44:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it_should_behave_like 'api platform user with reader rights'
|
|
|
|
it_should_behave_like 'api platform user without reader rights for hidden platform'
|
2012-10-09 17:51:41 +01:00
|
|
|
it_should_behave_like 'api platform user without writer rights'
|
2012-08-21 18:15:28 +01:00
|
|
|
end
|
|
|
|
end
|