Sha256: 6c97ec5e77a4213b0bf510560257d419632307a698e964d9ca741578cd5c54e1

Contents?: true

Size: 1.79 KB

Versions: 10

Compression:

Stored size: 1.79 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos::Hooks, '#create' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/hooks" }
  let(:inputs) {
    {
      'name' => 'web',
      'config' => {
        'url' => "http://something.com/webhook",
        'address' => "test@example.com",
        'subdomain' => "github",
        'room' => "Commits",
        'token' => "abc123"
      },
      'active' => true,
      'unrelated' => true
    }
  }

  before {
    stub_post(request_path).with(inputs.except('unrelated')).
      to_return(:body => body, :status => status,
        :headers => {:content_type => "application/json; charset=utf-8"})
  }

  after { reset_authentication_for(subject) }

  context "resouce created" do
    let(:body) { fixture('repos/hook.json') }
    let(:status) { 201 }

    it "should fail to create resource if 'name' input is missing" do
      expect {
        subject.create user, repo, inputs.except('name')
      }.to raise_error(Github::Error::RequiredParams)
    end

    it "should failt to create resource if 'config' input is missing" do
      expect {
        subject.create user, repo, inputs.except('config')
      }.to raise_error(Github::Error::RequiredParams)
    end

    it "should create resource successfully" do
      subject.create user, repo, inputs
      a_post(request_path).with(inputs).should have_been_made
    end

    it "should return the resource" do
      hook = subject.create user, repo, inputs
      hook.should be_a Hashie::Mash
    end

    it "should get the hook information" do
      hook = subject.create user, repo, inputs
      hook.name.should == 'web'
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.create user, repo, inputs }
  end

end # create

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
github_api-0.8.11 spec/github/repos/hooks/create_spec.rb
github_api-0.8.10 spec/github/repos/hooks/create_spec.rb
github_api-0.8.9 spec/github/repos/hooks/create_spec.rb
github_api-0.8.8 spec/github/repos/hooks/create_spec.rb
github_api-0.8.7 spec/github/repos/hooks/create_spec.rb
github_api-0.8.6 spec/github/repos/hooks/create_spec.rb
github_api-0.8.5 spec/github/repos/hooks/create_spec.rb
github_api-0.8.4 spec/github/repos/hooks/create_spec.rb
github_api-0.8.3 spec/github/repos/hooks/create_spec.rb
github_api-0.8.2 spec/github/repos/hooks/create_spec.rb