Sha256: 8293d9781be1bf6c30204f675f67fa91a82da5ceae374175a6c322813e7516e4

Contents?: true

Size: 1.25 KB

Versions: 13

Compression:

Stored size: 1.25 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos::PubSubHubbub, '#subscribe' do
  let(:topic)  { "https://github.com/peter-murach/github/events/push"}
  let(:callback) { "github://campfire?subdomain=github&room=Commits&token=abc123" }
  let(:hub_inputs) {
    {
       "hub.mode" => 'subscribe',
       "hub.topic" => topic,
       "hub.callback" => callback,
       "hub.verify"   => 'sync',
       "hub.secret"   => ''
    }
  }

  let(:request_path) { "/hub?access_token=#{OAUTH_TOKEN}" }

  before {
    subject.oauth_token = OAUTH_TOKEN
    stub_post(request_path).with(hub_inputs).
      to_return(:body => '[]', :status => status,
        :headers => {:content_type => "application/json; charset=utf-8"})

  }

  after { reset_authentication_for subject }

  context "success" do
    let(:status) { 200 }

    it { expect { subject.subscribe }.to raise_error(ArgumentError) }

    it { expect { subject.subscribe topic, nil}.to raise_error(ArgumentError) }

    it "subscribes to hub" do
      subject.subscribe topic, callback
      a_post("/hub?access_token=#{OAUTH_TOKEN}").with(hub_inputs).should have_been_made
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.subscribe topic, callback }
  end

end # subscribe

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.11.2 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.11.1 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.11.0 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.10.2 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.10.1 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.10.0 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.9.7 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.9.6 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.9.5 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.9.4 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.9.3 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb
github_api-0.9.2 spec/github/repos/pub_sub_hubbub/subscribe_spec.rb