40 lines
1.5 KiB
Ruby
40 lines
1.5 KiB
Ruby
require "spec_helper"
|
|
|
|
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, true)
|
|
|
|
Workers::ReceivePrivate.new.perform(alice.id, data, true)
|
|
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, false
|
|
).and_raise(DiasporaFederation::Salmon::InvalidSignature)
|
|
|
|
expect {
|
|
Workers::ReceivePrivate.new.perform(alice.id, data, false)
|
|
}.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, false
|
|
).and_raise(DiasporaFederation::Federation::Fetcher::NotFetchable)
|
|
|
|
expect {
|
|
Workers::ReceivePrivate.new.perform(alice.id, data, false)
|
|
}.to raise_error DiasporaFederation::Federation::Fetcher::NotFetchable
|
|
end
|
|
end
|