about summary refs log tree commit diff
path: root/spec/policies
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2017-11-17 09:07:21 -0600
committerDavid Yip <yipdw@member.fsf.org>2017-11-17 09:07:21 -0600
commitf6355f6ffb124ffe3a9e7339543a4f7ac7c0905a (patch)
treeee53a7b24f6d42459858eda6473a8a31d42fe461 /spec/policies
parent2a386ad88dad4a076f19dbd1b085ea561868deec (diff)
Update StatusPolicy to check current_account for local_only? toots.
StatusPolicy#account was renamed to StatusPolicy#current_account in
upstream.  This commit renames the local-only changes to match and
augments the #show? policy spec with what we expect for local-only
toots.
Diffstat (limited to 'spec/policies')
-rw-r--r--spec/policies/status_policy_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/policies/status_policy_spec.rb b/spec/policies/status_policy_spec.rb
index bacb8fd9e..a90e22aad 100644
--- a/spec/policies/status_policy_spec.rb
+++ b/spec/policies/status_policy_spec.rb
@@ -71,6 +71,12 @@ RSpec.describe StatusPolicy, type: :model do
 
       expect(subject).to_not permit(viewer, status)
     end
+
+    it 'denies access when local-only and the viewer is not logged in' do
+      allow(status).to receive(:local_only?) { true }
+
+      expect(subject).to_not permit(nil, status)
+    end
   end
 
   permissions :reblog? do