Sha256: 4770cbe10e3aeef7a24c35720bf3e8cd805437271733ed898cc666d90be26c7c

Contents?: true

Size: 1.79 KB

Versions: 14

Compression:

Stored size: 1.79 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos::Downloads, '#create' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/downloads" }
  let(:inputs) { {
    :name => 'new_file.jpg',
    :size => 114034,
    :description => "Latest release",
    :content_type => 'text/plain'}
  }

  after { reset_authentication_for(subject) }

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

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

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

    it { expect { subject.create user }.to raise_error(ArgumentError) }

    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 'size' input is missing" do
      expect {
        subject.create user, repo, inputs.except(:size)
      }.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
      download = subject.create user, repo, inputs
      download.should be_a Github::ResponseWrapper
    end

    it "should get the download information" do
      download = subject.create user, repo, inputs
      download.name.should == 'new_file.jpg'
    end
  end

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

end # create

Version data entries

14 entries across 14 versions & 1 rubygems

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