diff options
author | Starfall <root@starfall.blue> | 2020-02-13 17:55:53 -0600 |
---|---|---|
committer | Starfall <root@starfall.blue> | 2020-02-13 17:55:53 -0600 |
commit | 5902299384d15249fe4b84b8761d4a49f3c7f6fd (patch) | |
tree | 66f1db08a2f6f9ae2254ba7a81b71835039d671e /spec/controllers/concerns/signature_verification_spec.rb | |
parent | 6d24d3bcb84abd04f31da95f97f6d60ef0afdc00 (diff) | |
parent | 0cbd6d696b8937066cde297ad2eae4b558353b7c (diff) |
Merge branch 'glitch'
Diffstat (limited to 'spec/controllers/concerns/signature_verification_spec.rb')
-rw-r--r-- | spec/controllers/concerns/signature_verification_spec.rb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/spec/controllers/concerns/signature_verification_spec.rb b/spec/controllers/concerns/signature_verification_spec.rb index 1fa19f54d..05fb1445b 100644 --- a/spec/controllers/concerns/signature_verification_spec.rb +++ b/spec/controllers/concerns/signature_verification_spec.rb @@ -97,6 +97,33 @@ describe ApplicationController, type: :controller do end end + context 'with inaccessible key' do + before do + get :success + + author = Fabricate(:account, domain: 'localhost:5000', uri: 'http://localhost:5000/actor') + fake_request = Request.new(:get, request.url) + fake_request.on_behalf_of(author) + author.destroy + + request.headers.merge!(fake_request.headers) + + stub_request(:get, 'http://localhost:5000/actor#main-key').to_raise(Mastodon::HostValidationError) + end + + describe '#signed_request?' do + it 'returns true' do + expect(controller.signed_request?).to be true + end + end + + describe '#signed_request_account' do + it 'returns nil' do + expect(controller.signed_request_account).to be_nil + end + end + end + context 'with body' do before do post :success, body: 'Hello world' |