Sha256: c28ba444a434b3edf218fd3e69f98483a3cc025dd8d0e63601d832d34bd1e23c

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

Contents

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

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

describe Deltacloud::Collections::StorageSnapshots do

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

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

  it 'has show operation' do
    @collection.operation(:show).must_equal Deltacloud::Rabbit::StorageSnapshotsCollection::ShowOperation
  end

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

  it 'returns details about storage_volume in various formats with show operation' do
    formats.each do |format|
      header 'Accept', format
      get root_url + '/storage_snapshots/snap1'
      status.must_equal 200
    end
  end

  it 'reports 404 when querying non-existing key' do
    get root_url + '/storage_snapshots/unknown'
    status.must_equal 404
  end

  it 'properly serialize attributes in JSON' do
    check_json_serialization_for :storage_snapshot, 'snap1', [:name, :description]
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

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