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

th-downstream
Thibaut Girka 6 years ago committed by ThibG
parent 52165d0824
commit 517b7a028d

@ -77,6 +77,12 @@ RSpec.describe StatusPolicy, type: :model do
expect(subject).to_not permit(nil, status)
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
permissions :reblog? do

Loading…
Cancel
Save