Sha256: 403755c164a570908b15eab93d4747d0e386093c11d92608d3140f6fed547995

Contents?: true

Size: 1.07 KB

Versions: 3

Compression:

Stored size: 1.07 KB

Contents

require 'spec_helper'

describe Indexing::Bundle do

  before(:each) do
    @category         = stub :category, :name => :some_category
    @type             = stub :type, :name => :some_type
    @partial_strategy = Cacher::Partial::Substring.new :from => 1
    @exact            = Indexing::Bundle.new :some_name, @category, @type, nil, @partial_strategy, nil
  end

  def generate_random_keys amount
    alphabet = ('a'..'z').to_a
    (1..amount).to_a.collect! do |n|
      Array.new(20).collect! { alphabet[rand(26)] }.join.to_sym
    end
  end
  def generate_random_ids amount
    (1..amount).to_a.collect! do |_|
      Array.new(rand(100)+5).collect! do |_|
        rand(5_000_000)
      end
    end
  end

  describe 'speed' do
    context 'medium arrays' do
      before(:each) do
        random_keys  = generate_random_keys 500
        random_ids   = generate_random_ids  500
        @exact.index = Hash[random_keys.zip(random_ids)]
      end
      it 'should be fast' do
        performance_of do
          @exact.generate_partial
        end.should < 0.2
      end
    end
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
picky-0.11.2 spec/lib/indexing/bundle_partial_generation_speed_spec.rb
picky-0.11.1 spec/lib/indexing/bundle_partial_generation_speed_spec.rb
picky-0.11.0 spec/lib/indexing/bundle_partial_generation_speed_spec.rb