Sha256: be2b1b95e58c1ee241623e72e0216d9a3ac6eaa16cde7161dae217f99fde9888

Contents?: true

Size: 1.72 KB

Versions: 25

Compression:

Stored size: 1.72 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::GitData::References, '#update' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:ref) { "heads/master" }
  let(:request_path) { "/repos/#{user}/#{repo}/git/refs/#{ref}" }
  let(:inputs) {
    {
      "sha" => "827efc6d56897b048c772eb4087f854f46256132",
      "force" => true,
      "unrelated" => 'giberrish'
    }
  }

  before {
    stub_patch(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 updated" do
    let(:body) { fixture('git_data/reference.json') }
    let(:status) { 201 }

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

    it "should fail to update resource if 'ref' is wrong" do
      expect {
        subject.update user, repo, nil, inputs
      }.to raise_error(ArgumentError)
    end

    it "should update resource successfully" do
      subject.update user, repo, ref, inputs
      a_patch(request_path).with(inputs).should have_been_made
    end

    it "should return the resource" do
      reference = subject.update user, repo, ref, inputs
      reference.first.should be_a Hashie::Mash
    end

    it "should get the reference information" do
      reference = subject.update user, repo, ref, inputs
      reference.first.ref.should eql 'refs/heads/sc/featureA'
    end
  end

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

end # update

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/git_data/references/update_spec.rb
github_api-0.11.2 spec/github/git_data/references/update_spec.rb
github_api-0.11.1 spec/github/git_data/references/update_spec.rb
github_api-0.11.0 spec/github/git_data/references/update_spec.rb
github_api-0.10.2 spec/github/git_data/references/update_spec.rb
github_api-0.10.1 spec/github/git_data/references/update_spec.rb
github_api-0.10.0 spec/github/git_data/references/update_spec.rb
github_api-0.9.7 spec/github/git_data/references/update_spec.rb
github_api-0.9.6 spec/github/git_data/references/update_spec.rb
github_api-0.9.5 spec/github/git_data/references/update_spec.rb
github_api-0.9.4 spec/github/git_data/references/update_spec.rb
github_api-0.9.3 spec/github/git_data/references/update_spec.rb
github_api-0.9.2 spec/github/git_data/references/update_spec.rb
github_api-0.9.1 spec/github/git_data/references/update_spec.rb
github_api-0.9.0 spec/github/git_data/references/update_spec.rb
github_api-0.8.11 spec/github/git_data/references/update_spec.rb
github_api-0.8.10 spec/github/git_data/references/update_spec.rb
github_api-0.8.9 spec/github/git_data/references/update_spec.rb
github_api-0.8.8 spec/github/git_data/references/update_spec.rb
github_api-0.8.7 spec/github/git_data/references/update_spec.rb