Sha256: 8fb1da0c042d1401130a3586163c130eba44d8e7454917ea73af843a4b23ea53

Contents?: true

Size: 1.42 KB

Versions: 9

Compression:

Stored size: 1.42 KB

Contents

require 'spec_helper'

describe NightcrawlerSwift::Delete do

  let(:connection) { NightcrawlerSwift::Connection.new }
  let(:token) { "token" }
  let(:expires_at) { (DateTime.now + 60).to_time }
  let(:upload_url) { "server-url" }

  subject do
    NightcrawlerSwift::Delete.new
  end

  before do
    allow(NightcrawlerSwift).to receive(:connection).and_return(connection)
    allow(connection).to receive(:token_id).and_return(token)
    allow(connection).to receive(:expires_at).and_return(expires_at)
    allow(connection).to receive(:upload_url).and_return(upload_url)
  end

  describe "#execute" do
    let :execute do
      subject.execute "file_path"
    end

    context "success" do
      let :response do
        double(:response, code: 200)
      end

      before do
        allow(subject).to receive(:delete).and_return(response)
      end

      it "deletes using upload url" do
        execute
        expect(subject).to have_received(:delete).with("server-url/file_path", headers: {accept: :json})
      end

      it "returns true" do
        expect(execute).to eql true
      end
    end

    context "when the path was not informed" do
      it "raises NightcrawlerSwift::Exceptions::ValidationError" do
        expect { subject.execute nil }.to raise_error NightcrawlerSwift::Exceptions::ValidationError
        expect { subject.execute "" }.to raise_error NightcrawlerSwift::Exceptions::ValidationError
      end
    end
  end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
nightcrawler_swift-0.11.1 spec/lib/nightcrawler_swift/commands/delete_spec.rb
nightcrawler_swift-0.11.0 spec/lib/nightcrawler_swift/commands/delete_spec.rb
nightcrawler_swift-0.10.0 spec/lib/nightcrawler_swift/commands/delete_spec.rb
nightcrawler_swift-0.9.0 spec/lib/nightcrawler_swift/commands/delete_spec.rb
nightcrawler_swift-0.8.1 spec/lib/nightcrawler_swift/commands/delete_spec.rb
nightcrawler_swift-0.8.0 spec/lib/nightcrawler_swift/commands/delete_spec.rb
nightcrawler_swift-0.7.0 spec/lib/nightcrawler_swift/commands/delete_spec.rb
nightcrawler_swift-0.6.0 spec/lib/nightcrawler_swift/commands/delete_spec.rb
nightcrawler_swift-0.5.0 spec/lib/nightcrawler_swift/commands/delete_spec.rb