Browse Source

Add test to disallow remote users from fetching local-only toots

closed-social-glitch-2
Thibaut Girka 6 years ago
committed by ThibG
parent
commit
9f2945ef80
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      spec/policies/status_policy_spec.rb

+ 6
- 0
spec/policies/status_policy_spec.rb View File

@ -77,6 +77,12 @@ RSpec.describe StatusPolicy, type: :model do
expect(subject).to_not permit(nil, status) expect(subject).to_not permit(nil, status)
end end
it 'denies access when local-only and the viewer is from another domain' do
viewer = Fabricate(:account, domain: 'remote-domain')
allow(status).to receive(:local_only?) { true }
expect(subject).to_not permit(viewer, status)
end
end end
permissions :reblog? do permissions :reblog? do

Loading…
Cancel
Save