Sha256: 86680db40d34464597628b3b5d46593be9259b6f7ad53595cae5d17f1c909595

Contents?: true

Size: 1.99 KB

Versions: 2

Compression:

Stored size: 1.99 KB

Contents

require 'rubygems'
require 'require_relative' if RUBY_VERSION < '1.9'

require_relative File.join('..', 'common.rb')

describe Deltacloud::Collections::Buckets do

  before do
    def app; run_frontend; end
    authorize 'mockuser', 'mockpassword'
    @collection = Deltacloud::Collections.collection(:buckets)
  end

  it 'has index operation' do
    @collection.operation(:index).must_equal Deltacloud::Rabbit::BucketsCollection::IndexOperation
  end

  it 'provides URL to specify new bucket' do
    header 'Accept', 'text/html'
    get root_url + '/buckets/new/' + Deltacloud::Helpers::Application::NEW_BLOB_FORM_ID
    status.must_equal 200
  end

  it 'returns list of buckets in various formats with index operation' do
    formats.each do |format|
      header 'Accept', format
      get root_url + '/buckets'
      status.must_equal 200
    end
  end

  it 'must support creating a new bucket and destroying it' do
    post root_url + '/buckets', { :name => 'test-bucket1' }
    status.must_equal 201
    xml.root.name.must_equal 'bucket'
    delete root_url + '/buckets/' + xml.root[:id]
    status.must_equal 204
  end

  it 'returns blob metadata' do
    head root_url + '/buckets/bucket1/blob1'
    headers['X-Deltacloud-Blobmeta-SOMENEWKEY'].must_equal 'NEWVALUE'
    status.must_equal 204
    head root_url + '/buckets/bucket1/non-existing-blob'
    status.must_equal 404
  end

  it 'returns blob details on show operation in various formats' do
    formats.each do |format|
      header 'Accept', format
      get root_url + '/buckets/bucket1/blob1'
      last_response
      status.must_equal 200
    end
  end

  it 'creates a new blob and then destroy it' do
    post root_url + '/buckets/bucket1', { :blob_id => 'test-blob', :blob_data => 'test', :meta_params => '1', :meta_name1 => 'test-meta1' }
    status.must_equal 201
    delete root_url + '/buckets/bucket1/test-blob'
    status.must_equal 204
  end

  it 'properly serialize attributes in JSON' do
    check_json_serialization_for :bucket, 'bucket1'
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
deltacloud-core-1.1.3 tests/deltacloud/collections/buckets_collection_test.rb
deltacloud-core-1.1.2 tests/deltacloud/collections/buckets_collection_test.rb