Browse Source

Fix failing keybase-related test

closed-social-glitch-2
Thibaut Girka 5 years ago
parent
commit
b72950fbd3
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      spec/services/activitypub/process_account_service_spec.rb

+ 4
- 0
spec/services/activitypub/process_account_service_spec.rb View File

@ -42,6 +42,8 @@ RSpec.describe ActivityPub::ProcessAccountService, type: :service do
end end
it 'parses out of attachment' do it 'parses out of attachment' do
allow(ProofProvider::Keybase::Worker).to receive(:perform_async)
account = subject.call('alice', 'example.com', payload) account = subject.call('alice', 'example.com', payload)
expect(account.identity_proofs.count).to eq 1 expect(account.identity_proofs.count).to eq 1
@ -54,6 +56,8 @@ RSpec.describe ActivityPub::ProcessAccountService, type: :service do
end end
it 'removes no longer present proofs' do it 'removes no longer present proofs' do
allow(ProofProvider::Keybase::Worker).to receive(:perform_async)
account = Fabricate(:account, username: 'alice', domain: 'example.com') account = Fabricate(:account, username: 'alice', domain: 'example.com')
old_proof = Fabricate(:account_identity_proof, account: account, provider: 'keybase', provider_username: 'Bob', token: 'b' * 66) old_proof = Fabricate(:account_identity_proof, account: account, provider: 'keybase', provider_username: 'Bob', token: 'b' * 66)

Loading…
Cancel
Save