# encoding: utf-8 # require 'spec_helper' describe Picky::Indexes::Index do let(:some_source) { stub :source, :harvest => nil, :inspect => 'some_source' } context 'initializer' do it 'works' do the_source = some_source expect { described_class.new :some_index_name do source the_source end }.to_not raise_error end it 'fails correctly' do expect { described_class.new 0, some_source }.to raise_error end it 'fails correctly' do expect { described_class.new :some_index_name, some_source }.to raise_error end it 'does not fail' do expect { described_class.new :some_index_name do source [] end }.to_not raise_error end it 'registers with the indexes' do @api = described_class.allocate Picky::Indexes.should_receive(:register).once.with @api the_source = some_source @api.send :initialize, :some_index_name do source the_source end end end context 'unit' do let(:api) do the_source = some_source described_class.new :some_index_name do source the_source end end describe 'geo_categories' do it 'delegates correctly' do api.should_receive(:ranged_category).once.with :some_lat, 0.00898312, from: :some_lat_from api.should_receive(:ranged_category).once.with :some_lng, 0.01796624, from: :some_lng_from api.geo_categories :some_lat, :some_lng, 1, :lat_from => :some_lat_from, :lng_from => :some_lng_from end end describe 'define_category' do context 'with block' do it 'returns the category' do expected = nil api.define_category(:some_name){ |category| expected = category }.should == expected end it 'takes a string' do lambda { api.define_category('some_name'){ |indexing, indexed| } }.should_not raise_error end it 'yields both the indexing category and the indexed category' do api.define_category(:some_name) do |category| category.should be_kind_of(Picky::Category) end end it 'yields the category which has the given name' do api.define_category(:some_name) do |category| category.name.should == :some_name end end end context 'without block' do it 'works' do lambda { api.define_category(:some_name) }.should_not raise_error end it 'takes a string' do lambda { api.define_category('some_name') }.should_not raise_error end it 'returns itself' do api.define_category(:some_name).should be_kind_of(Picky::Category) end end end end end