Skip to content
Extraits de code Groupes Projets
http_multi_spec.rb 3,32 ko
Newer Older
maxwell's avatar
maxwell a validé
require 'spec_helper'

  before :all do
    enable_typhoeus
  end
  after :all do
    disable_typhoeus
  end
maxwell's avatar
maxwell a validé
  before do
    @people = [Factory(:person), Factory(:person)]
    @post_xml = Base64.encode64("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH")
maxwell's avatar
maxwell a validé

    @hydra = Typhoeus::Hydra.new
    @response = Typhoeus::Response.new(:code => 200, :headers => "", :body => "", :time => 0.2, :effective_url => 'http://foobar.com')
    @failed_response = Typhoeus::Response.new(:code => 504, :headers => "", :body => "", :time => 0.2, :effective_url => 'http://foobar.com')
maxwell's avatar
maxwell a validé
  end

  it 'POSTs to more than one person' do
    @people.each do |person|
      @hydra.stub(:post, person.receive_url).and_return(@response)
maxwell's avatar
maxwell a validé
    end

    @hydra.should_receive(:queue).twice
    @hydra.should_receive(:run).once
    Typhoeus::Hydra.stub!(:new).and_return(@hydra)

    Jobs::HttpMulti.perform(bob.id, @post_xml, people_ids, "Postzord::Dispatcher::Private")
  end

  it 'retries' do
    person = @people[0]
    @hydra.stub(:post, person.receive_url).and_return(@failed_response)
    Typhoeus::Hydra.stub!(:new).and_return(@hydra)

    Resque.should_receive(:enqueue).with(Jobs::HttpMulti, bob.id, @post_xml, [person.id], anything, 1).once
    Jobs::HttpMulti.perform(bob.id, @post_xml, [person.id], "Postzord::Dispatcher::Private")
  end

  it 'max retries' do
    person = @people[0]

    @hydra.stub(:post, person.receive_url).and_return(@failed_response)

    Typhoeus::Hydra.stub!(:new).and_return(@hydra)

    Resque.should_not_receive(:enqueue)
    Jobs::HttpMulti.perform(bob.id, @post_xml, [person.id], "Postzord::Dispatcher::Private", 3)
maxwell's avatar
maxwell a validé
  end

  it 'generates encrypted xml for people' do
    person = @people[0]

    @hydra.stub(:post, person.receive_url).and_return(@response)

    Typhoeus::Hydra.stub!(:new).and_return(@hydra)

    salmon = Salmon::EncryptedSlap.create_by_user_and_activity(bob, Base64.decode64(@post_xml))
    Salmon::EncryptedSlap.stub(:create_by_user_and_activity).and_return(salmon)
    salmon.should_receive(:xml_for).and_return("encrypted things")
    Jobs::HttpMulti.perform(bob.id, @post_xml, [person.id], "Postzord::Dispatcher::Private")
maxwell's avatar
maxwell a validé
  end

  it 'updates http users who have moved to https' do
    person = @people.first
    person.url = 'http://remote.net/'
    person.save
    response = Typhoeus::Response.new(:code => 301,:effective_url => 'https://foobar.com', :headers_hash => {"Location" => person.receive_url.sub('http://', 'https://')}, :body => "", :time => 0.2)
    @hydra.stub(:post, person.receive_url).and_return(response)

    Typhoeus::Hydra.stub!(:new).and_return(@hydra)

    Jobs::HttpMulti.perform(bob.id, @post_xml, [person.id], "Postzord::Dispatcher::Private")
    person.url.should == "https://remote.net/"

  it 'only sends to users with valid RSA keys' do
    person = @people[0]
    person.serialized_public_key = "-----BEGIN RSA PUBLIC KEY-----\nPsych!\n-----END RSA PUBLIC KEY-----"
    person.save

    @hydra.stub(:post, @people[0].receive_url).and_return(@response)
    @hydra.stub(:post, @people[1].receive_url).and_return(@response)
    Typhoeus::Hydra.stub!(:new).and_return(@hydra)

    @hydra.should_receive(:queue).once
    Jobs::HttpMulti.perform(bob.id, @post_xml, [@people[0].id, @people[1].id], "Postzord::Dispatcher::Private")
maxwell's avatar
maxwell a validé
end