Sha256: aee28a1a5a3c48020843e0b3485260ad1580a71653bada6a1aa3b6385e76d0c1

Contents?: true

Size: 1.29 KB

Versions: 25

Compression:

Stored size: 1.29 KB

Contents

require File.dirname(__FILE__) + '/../../../spec_helper'

describe 'SimpleDB.get_attributes' do
  describe 'success' do

    before(:each) do
      @domain_name = "fog_domain_#{Time.now.to_i}"
      sdb.create_domain(@domain_name)
    end

    after(:each) do
      sdb.delete_domain(@domain_name)
    end

    it 'should have no attributes for foo before put_attributes' do
      eventually do
        actual = sdb.get_attributes(@domain_name, 'foo')
        actual.body['Attributes'].should be_empty
      end
    end

    it 'should have attributes for foo after put_attributes' do
      sdb.put_attributes(@domain_name, 'foo', { :bar => :baz })
      eventually do
        actual = sdb.get_attributes(@domain_name, 'foo')
        actual.body['Attributes'].should == { 'bar' => ['baz'] }
      end
    end

  end
  describe 'failure' do

    it 'should raise a BadRequest error if the domain does not exist' do
      lambda {
        sdb.get_attributes('notadomain', 'notanattribute')
      }.should raise_error(Fog::Errors::BadRequest)
    end

    it 'should not raise an error if the attribute does not exist' do
      @domain_name = "fog_domain_#{Time.now.to_i}"
      sdb.create_domain(@domain_name)
      sdb.get_attributes(@domain_name, 'notanattribute')
      sdb.delete_domain(@domain_name)
    end

  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
fog-0.0.29 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.28 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.27 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.26 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.25 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.24 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.23 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.22 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.21 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.20 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.19 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.18 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.17 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.16 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.15 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.14 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.13 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.12 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.11 spec/aws/requests/simpledb/get_attributes_spec.rb
fog-0.0.10 spec/aws/requests/simpledb/get_attributes_spec.rb