Sha256: 9afb2e0ca5e347a566f06307a98c98b40df9171b0bf76351dc73a7de05978aca

Contents?: true

Size: 1.72 KB

Versions: 12

Compression:

Stored size: 1.72 KB

Contents

require 'spec_helper'
require 'riak/bucket_properties'

describe Riak::BucketProperties, test_client: true, integration: true do
  describe 'Bucket Properties objects' do
    let(:bucket){ random_bucket 'props' }
    subject{ described_class.new bucket }

    let(:other_bucket) do
      random_bucket('props-other').tap do |b|
        p = described_class.new b
        p['r'] = 1
        p.store
      end
    end
    let(:other_props){ described_class.new other_bucket }

    before(:example) do
      bucket.clear_props
      subject.reload
    end

    it 'is initializable with a bucket' do
      expect{ described_class.new bucket }.to_not raise_error
    end

    it 'works like a hash' do
      expect(subject['r']).to eq 'quorum'
      expect{ subject['r'] = 1 }.to_not raise_error
      subject.store
      subject.reload

      expect(subject['r']).to eq 1
    end

    it 'can be merged from a hash' do
      bulk_props = { r: 1, w: 1, dw: 1 }
      expect{ subject.merge! bulk_props }.to_not raise_error
      subject.store
      subject.reload

      expect(subject['r']).to eq 1
      expect(subject['w']).to eq 1
      expect(subject['dw']).to eq 1
    end

    it 'can be merged from a bucket properties object' do
      expect(other_props['r']).to eq 1
      expect(subject['r']).to eq 'quorum'

      expect{ subject.merge! other_props }.to_not raise_error
      subject.store
      subject.reload

      expect(subject['r']).to eq 1
    end

    let(:modfun){ { 'mod' => 'validate_json', 'fun' => 'validate' } }

    it 'works with composite/modfun properties' do
      expect{ subject['precommit'] = modfun }.to_not raise_error

      subject.store
      subject.reload

      expect(subject['precommit']).to eq [modfun]
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
riak-client-2.5.0 spec/integration/riak/properties_spec.rb
riak-client-2.4.1 spec/integration/riak/properties_spec.rb
riak-client-2.4.0 spec/integration/riak/properties_spec.rb
riak-client-2.4.0.pre1 spec/integration/riak/properties_spec.rb
riak-client-2.3.2 spec/integration/riak/properties_spec.rb
riak-client-2.3.1 spec/integration/riak/properties_spec.rb
riak-client-2.3.0 spec/integration/riak/properties_spec.rb
riak-client-2.2.2 spec/integration/riak/properties_spec.rb
riak-client-2.2.1 spec/integration/riak/properties_spec.rb
riak-client-noenc-1.0.0 spec/integration/riak/properties_spec.rb
riak-client-2.2.0 spec/integration/riak/properties_spec.rb
riak-client-2.2.0.pre1 spec/integration/riak/properties_spec.rb