2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2012-06-12 22:13:42 +02:00
|
|
|
describe "Projects Security" do
|
|
|
|
describe "GET /" do
|
|
|
|
it { root_path.should be_allowed_for :admin }
|
|
|
|
it { root_path.should be_allowed_for :user }
|
|
|
|
it { root_path.should be_denied_for :visitor }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /projects/new" do
|
2012-06-12 22:13:42 +02:00
|
|
|
it { new_project_path.should be_allowed_for :admin }
|
|
|
|
it { new_project_path.should be_allowed_for :user }
|
|
|
|
it { new_project_path.should be_denied_for :visitor }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Project" do
|
2011-10-26 15:46:25 +02:00
|
|
|
before do
|
2011-10-08 23:36:38 +02:00
|
|
|
@project = Factory :project
|
|
|
|
@u1 = Factory :user
|
|
|
|
@u2 = Factory :user
|
|
|
|
@u3 = Factory :user
|
|
|
|
# full access
|
2012-02-16 08:03:55 +01:00
|
|
|
@project.users_projects.create(:user => @u1, :project_access => UsersProject::MASTER)
|
2011-10-08 23:36:38 +02:00
|
|
|
# readonly
|
2012-02-16 08:03:55 +01:00
|
|
|
@project.users_projects.create(:user => @u3, :project_access => UsersProject::REPORTER)
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code" do
|
2011-10-08 23:36:38 +02:00
|
|
|
it { project_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { project_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { project_path(@project).should be_denied_for :admin }
|
|
|
|
it { project_path(@project).should be_denied_for @u2 }
|
|
|
|
it { project_path(@project).should be_denied_for :user }
|
|
|
|
it { project_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
2011-11-16 06:58:53 +01:00
|
|
|
describe "GET /project_code/master/tree" do
|
|
|
|
it { tree_project_ref_path(@project, @project.root_ref).should be_allowed_for @u1 }
|
|
|
|
it { tree_project_ref_path(@project, @project.root_ref).should be_allowed_for @u3 }
|
|
|
|
it { tree_project_ref_path(@project, @project.root_ref).should be_denied_for :admin }
|
|
|
|
it { tree_project_ref_path(@project, @project.root_ref).should be_denied_for @u2 }
|
|
|
|
it { tree_project_ref_path(@project, @project.root_ref).should be_denied_for :user }
|
|
|
|
it { tree_project_ref_path(@project, @project.root_ref).should be_denied_for :visitor }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code/commits" do
|
2011-10-08 23:36:38 +02:00
|
|
|
it { project_commits_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { project_commits_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { project_commits_path(@project).should be_denied_for :admin }
|
|
|
|
it { project_commits_path(@project).should be_denied_for @u2 }
|
|
|
|
it { project_commits_path(@project).should be_denied_for :user }
|
|
|
|
it { project_commits_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code/commit" do
|
2011-11-27 16:35:49 +01:00
|
|
|
it { project_commit_path(@project, @project.commit.id).should be_allowed_for @u1 }
|
|
|
|
it { project_commit_path(@project, @project.commit.id).should be_allowed_for @u3 }
|
|
|
|
it { project_commit_path(@project, @project.commit.id).should be_denied_for :admin }
|
|
|
|
it { project_commit_path(@project, @project.commit.id).should be_denied_for @u2 }
|
|
|
|
it { project_commit_path(@project, @project.commit.id).should be_denied_for :user }
|
|
|
|
it { project_commit_path(@project, @project.commit.id).should be_denied_for :visitor }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code/team" do
|
2011-10-08 23:36:38 +02:00
|
|
|
it { team_project_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { team_project_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { team_project_path(@project).should be_denied_for :admin }
|
|
|
|
it { team_project_path(@project).should be_denied_for @u2 }
|
|
|
|
it { team_project_path(@project).should be_denied_for :user }
|
|
|
|
it { team_project_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code/wall" do
|
2011-10-08 23:36:38 +02:00
|
|
|
it { wall_project_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { wall_project_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { wall_project_path(@project).should be_denied_for :admin }
|
|
|
|
it { wall_project_path(@project).should be_denied_for @u2 }
|
|
|
|
it { wall_project_path(@project).should be_denied_for :user }
|
|
|
|
it { wall_project_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code/blob" do
|
|
|
|
before do
|
2011-10-17 12:39:03 +02:00
|
|
|
@commit = @project.commit
|
|
|
|
@path = @commit.tree.contents.select { |i| i.is_a?(Grit::Blob)}.first.name
|
2011-11-16 06:58:53 +01:00
|
|
|
@blob_path = blob_project_ref_path(@project, @commit.id, :path => @path)
|
2011-10-17 12:39:03 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it { @blob_path.should be_allowed_for @u1 }
|
|
|
|
it { @blob_path.should be_allowed_for @u3 }
|
|
|
|
it { @blob_path.should be_denied_for :admin }
|
|
|
|
it { @blob_path.should be_denied_for @u2 }
|
|
|
|
it { @blob_path.should be_denied_for :user }
|
|
|
|
it { @blob_path.should be_denied_for :visitor }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code/edit" do
|
2011-10-08 23:36:38 +02:00
|
|
|
it { edit_project_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { edit_project_path(@project).should be_denied_for @u3 }
|
|
|
|
it { edit_project_path(@project).should be_denied_for :admin }
|
|
|
|
it { edit_project_path(@project).should be_denied_for @u2 }
|
|
|
|
it { edit_project_path(@project).should be_denied_for :user }
|
|
|
|
it { edit_project_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
2011-12-29 23:33:26 +01:00
|
|
|
describe "GET /project_code/deploy_keys" do
|
|
|
|
it { project_deploy_keys_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { project_deploy_keys_path(@project).should be_denied_for @u3 }
|
|
|
|
it { project_deploy_keys_path(@project).should be_denied_for :admin }
|
|
|
|
it { project_deploy_keys_path(@project).should be_denied_for @u2 }
|
|
|
|
it { project_deploy_keys_path(@project).should be_denied_for :user }
|
|
|
|
it { project_deploy_keys_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code/issues" do
|
2011-10-08 23:36:38 +02:00
|
|
|
it { project_issues_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { project_issues_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { project_issues_path(@project).should be_denied_for :admin }
|
|
|
|
it { project_issues_path(@project).should be_denied_for @u2 }
|
|
|
|
it { project_issues_path(@project).should be_denied_for :user }
|
|
|
|
it { project_issues_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
2011-10-16 23:07:10 +02:00
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /project_code/snippets" do
|
2011-10-16 23:07:10 +02:00
|
|
|
it { project_snippets_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { project_snippets_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { project_snippets_path(@project).should be_denied_for :admin }
|
|
|
|
it { project_snippets_path(@project).should be_denied_for @u2 }
|
|
|
|
it { project_snippets_path(@project).should be_denied_for :user }
|
|
|
|
it { project_snippets_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
2011-11-28 19:42:32 +01:00
|
|
|
|
|
|
|
describe "GET /project_code/merge_requests" do
|
|
|
|
it { project_merge_requests_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { project_merge_requests_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { project_merge_requests_path(@project).should be_denied_for :admin }
|
|
|
|
it { project_merge_requests_path(@project).should be_denied_for @u2 }
|
|
|
|
it { project_merge_requests_path(@project).should be_denied_for :user }
|
|
|
|
it { project_merge_requests_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
2012-01-19 08:27:23 +01:00
|
|
|
|
|
|
|
describe "GET /project_code/repository" do
|
|
|
|
it { project_repository_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { project_repository_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { project_repository_path(@project).should be_denied_for :admin }
|
|
|
|
it { project_repository_path(@project).should be_denied_for @u2 }
|
|
|
|
it { project_repository_path(@project).should be_denied_for :user }
|
|
|
|
it { project_repository_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /project_code/repository/branches" do
|
|
|
|
it { branches_project_repository_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { branches_project_repository_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { branches_project_repository_path(@project).should be_denied_for :admin }
|
|
|
|
it { branches_project_repository_path(@project).should be_denied_for @u2 }
|
|
|
|
it { branches_project_repository_path(@project).should be_denied_for :user }
|
|
|
|
it { branches_project_repository_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /project_code/repository/tags" do
|
|
|
|
it { tags_project_repository_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { tags_project_repository_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { tags_project_repository_path(@project).should be_denied_for :admin }
|
|
|
|
it { tags_project_repository_path(@project).should be_denied_for @u2 }
|
|
|
|
it { tags_project_repository_path(@project).should be_denied_for :user }
|
|
|
|
it { tags_project_repository_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /project_code/hooks" do
|
|
|
|
it { project_hooks_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { project_hooks_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { project_hooks_path(@project).should be_denied_for :admin }
|
|
|
|
it { project_hooks_path(@project).should be_denied_for @u2 }
|
|
|
|
it { project_hooks_path(@project).should be_denied_for :user }
|
|
|
|
it { project_hooks_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /project_code/files" do
|
|
|
|
it { files_project_path(@project).should be_allowed_for @u1 }
|
|
|
|
it { files_project_path(@project).should be_allowed_for @u3 }
|
|
|
|
it { files_project_path(@project).should be_denied_for :admin }
|
|
|
|
it { files_project_path(@project).should be_denied_for @u2 }
|
|
|
|
it { files_project_path(@project).should be_denied_for :user }
|
|
|
|
it { files_project_path(@project).should be_denied_for :visitor }
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|