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.0.77 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.76 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.75 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.74 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.73 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.72 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.71 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.70 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.69 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.68 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.67 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.66 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.65 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.64 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.63 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.62 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.61 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.60 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.59 spec/aws/requests/simpledb/delete_attributes_spec.rb
fog-0.0.58 spec/aws/requests/simpledb/delete_attributes_spec.rb