aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2013-09-17 17:09:11 +0100
committerLouise Crow <louise.crow@gmail.com>2013-09-17 17:09:11 +0100
commit1accd9f2f86022f90f848b39182570d1613eb6be (patch)
treee6580848375b9e7938292cfb2177af44c3838825 /spec/models
parent9483790d6cb0d3a1abc1b9d2ec50dc51e3f95bf6 (diff)
parent3ad489e49c0dc4b55bd5e980fd8f8020232e6c9f (diff)
Merge branch 'feature/issue-555-fix' into rails-3-develop
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/xapian_spec.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/spec/models/xapian_spec.rb b/spec/models/xapian_spec.rb
index 7aab9cdc6..c7c21e3a0 100644
--- a/spec/models/xapian_spec.rb
+++ b/spec/models/xapian_spec.rb
@@ -400,3 +400,34 @@ describe ActsAsXapian::Search, "#words_to_highlight" do
end
end
+
+describe InfoRequestEvent, " when faced with a race condition during xapian_mark_needs_index" do
+
+ before(:each) do
+ load_raw_emails_data
+ get_fixtures_xapian_index
+ # Use the before create job hook to simulate a race condition with another process
+ # by creating an acts_as_xapian_job record for the same model
+ class InfoRequestEvent
+ def xapian_before_create_job_hook(action, model, model_id)
+ ActsAsXapian::ActsAsXapianJob.create!(:model => model,
+ :model_id => model_id,
+ :action => action)
+ end
+ end
+ end
+
+ after(:each) do
+ # Reset the before create job hook
+ class InfoRequestEvent
+ def xapian_before_create_job_hook(action, model, model_id)
+ end
+ end
+ end
+
+ it 'should not raise an error but should fail silently' do
+ ir = info_requests(:naughty_chicken_request)
+ ir.reindex_request_events
+ end
+
+end