gitlabhq/spec/features/security/profile_access_spec.rb
2013-02-21 10:41:37 +02:00

50 lines
1.2 KiB
Ruby

require 'spec_helper'
describe "Users Security" do
describe "Project" do
before do
@u1 = create(:user)
end
describe "GET /login" do
it { new_user_session_path.should_not be_404_for :visitor }
end
describe "GET /keys" do
subject { keys_path }
it { should be_allowed_for @u1 }
it { should be_allowed_for :admin }
it { should be_allowed_for :user }
it { should be_denied_for :visitor }
end
describe "GET /profile" do
subject { profile_path }
it { should be_allowed_for @u1 }
it { should be_allowed_for :admin }
it { should be_allowed_for :user }
it { should be_denied_for :visitor }
end
describe "GET /profile/account" do
subject { account_profile_path }
it { should be_allowed_for @u1 }
it { should be_allowed_for :admin }
it { should be_allowed_for :user }
it { should be_denied_for :visitor }
end
describe "GET /profile/design" do
subject { design_profile_path }
it { should be_allowed_for @u1 }
it { should be_allowed_for :admin }
it { should be_allowed_for :user }
it { should be_denied_for :visitor }
end
end
end