diaspora/spec/workers/receive_private_spec.rb
2022-07-20 23:06:18 +02:00

40 lines
1.4 KiB
Ruby

# frozen_string_literal: true
describe Workers::ReceivePrivate do
let(:data) { "<xml></xml>" }
it "calls receive_private of federation gem" do
rsa_key = double
expect(OpenSSL::PKey::RSA).to receive(:new).with(alice.serialized_private_key).and_return(rsa_key)
expect(DiasporaFederation::Federation::Receiver).to receive(:receive_private).with(data, rsa_key, alice.id)
Workers::ReceivePrivate.new.perform(alice.id, data)
end
it "filters errors that would also fail on second try" do
rsa_key = double
expect(OpenSSL::PKey::RSA).to receive(:new).with(alice.serialized_private_key).and_return(rsa_key)
expect(DiasporaFederation::Federation::Receiver).to receive(:receive_private).with(
data, rsa_key, alice.id
).and_raise(DiasporaFederation::Salmon::InvalidSignature)
expect {
Workers::ReceivePrivate.new.perform(alice.id, data)
}.not_to raise_error
end
it "does not filter errors that would succeed on second try" do
rsa_key = double
expect(OpenSSL::PKey::RSA).to receive(:new).with(alice.serialized_private_key).and_return(rsa_key)
expect(DiasporaFederation::Federation::Receiver).to receive(:receive_private).with(
data, rsa_key, alice.id
).and_raise(DiasporaFederation::Federation::Fetcher::NotFetchable)
expect {
Workers::ReceivePrivate.new.perform(alice.id, data)
}.to raise_error DiasporaFederation::Federation::Fetcher::NotFetchable
end
end