Sha256: e5ed94a2d02df5fa89987227214d59f3ffa045f1ed17c3c056df7b9466b56360

Contents?: true

Size: 1.15 KB

Versions: 137

Compression:

Stored size: 1.15 KB

Contents

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

describe 'SimpleDB.delete_attributes' do
  describe 'success' do

    before(:each) do
      @domain_name = "fog_domain_#{Time.now.to_i}"
      AWS[:sdb].create_domain(@domain_name)
      AWS[:sdb].put_attributes(@domain_name, 'foo', { :bar => :baz })
    end

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

    it 'should return proper attributes from delete_attributes' do
      actual = AWS[:sdb].delete_attributes(@domain_name, 'foo')
      actual.body['RequestId'].should be_a(String)
      actual.body['BoxUsage'].should be_a(Float)
    end

  end
  describe 'failure' do

    it 'shouild raise a BadRequest error if the domain does not exist' do
      lambda {
        AWS[:sdb].delete_attributes('notadomain', 'notanattribute')
      }.should raise_error(Excon::Errors::BadRequest)
    end

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

  end
end

Version data entries

137 entries across 137 versions & 2 rubygems

Version Path
fog-0.3.34 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.33 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.32 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.31 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.30 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.29 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.28 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.27 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.26 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.25 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.24 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.23 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.22 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.21 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.20 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.19 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.18 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.17 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.16 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.3.15 spec/aws/requests/simpledb/delete_attributes_spec.rb