Sha256: be59e3ee54ccb7e23aa1d6d95e4d41c4c135da38c5ee8c600a094e180df8e749

Contents?: true

Size: 1.72 KB

Versions: 1

Compression:

Stored size: 1.72 KB

Contents

require 'acceptance/spec_helper'

describe 'Hiding deleted records from search results', :live => true do
  it "does not return deleted records" do
    pancakes = Article.create! :title => 'Pancakes'
    index

    Article.search('pancakes').should_not be_empty
    pancakes.destroy

    Article.search('pancakes').should be_empty
  end

  it "will catch stale records deleted without callbacks being fired" do
    pancakes = Article.create! :title => 'Pancakes'
    index

    Article.search('pancakes').should_not be_empty
    Article.connection.execute "DELETE FROM articles WHERE id = #{pancakes.id}"

    Article.search('pancakes').should be_empty
  end

  it "removes records from real-time index results" do
    product = Product.create! :name => 'Shiny'

    Product.search('Shiny', :indices => ['product_core']).to_a.
      should == [product]

    product.destroy

    Product.search_for_ids('Shiny', :indices => ['product_core']).
      should be_empty
  end

  it "does not remove real-time results when callbacks are disabled" do
    original = ThinkingSphinx::Configuration.instance.
      settings['real_time_callbacks']
    product = Product.create! :name => 'Shiny'
    Product.search('Shiny', :indices => ['product_core']).to_a.
      should == [product]

    ThinkingSphinx::Configuration.instance.
      settings['real_time_callbacks'] = false

    product.destroy
    Product.search_for_ids('Shiny', :indices => ['product_core']).
      should_not be_empty

    ThinkingSphinx::Configuration.instance.
      settings['real_time_callbacks'] = original
  end

  it "deletes STI child classes from parent indices" do
    duck = Bird.create :name => 'Duck'
    index
    duck.destroy

    expect(Bird.search_for_ids('duck')).to be_empty
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thinking-sphinx-3.2.0 spec/acceptance/remove_deleted_records_spec.rb