profile_access_spec.rb
961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
require 'spec_helper'
describe "Users Security" do
  describe "Project" do
    before do
      @u1 = Factory :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/password" do
      subject { profile_password_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