inst-jobs 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/bin/inst_job +4 -0
- data/db/migrate/20101216224513_create_delayed_jobs.rb +40 -0
- data/db/migrate/20110208031356_add_delayed_jobs_tag.rb +14 -0
- data/db/migrate/20110426161613_add_delayed_jobs_max_attempts.rb +13 -0
- data/db/migrate/20110516225834_add_delayed_jobs_strand.rb +14 -0
- data/db/migrate/20110531144916_cleanup_delayed_jobs_indexes.rb +26 -0
- data/db/migrate/20110610213249_optimize_delayed_jobs.rb +40 -0
- data/db/migrate/20110831210257_add_delayed_jobs_next_in_strand.rb +52 -0
- data/db/migrate/20120510004759_delayed_jobs_delete_trigger_lock_for_update.rb +31 -0
- data/db/migrate/20120531150712_drop_psql_jobs_pop_fn.rb +15 -0
- data/db/migrate/20120607164022_delayed_jobs_use_advisory_locks.rb +80 -0
- data/db/migrate/20120607181141_index_jobs_on_locked_by.rb +15 -0
- data/db/migrate/20120608191051_add_jobs_run_at_index.rb +15 -0
- data/db/migrate/20120927184213_change_delayed_jobs_handler_to_text.rb +13 -0
- data/db/migrate/20140505215131_add_failed_jobs_original_job_id.rb +13 -0
- data/db/migrate/20140505215510_copy_failed_jobs_original_id.rb +13 -0
- data/db/migrate/20140505223637_drop_failed_jobs_original_id.rb +13 -0
- data/db/migrate/20140512213941_add_source_to_jobs.rb +15 -0
- data/db/migrate/20150807133223_add_max_concurrent_to_jobs.rb +70 -0
- data/db/migrate/20151123210429_add_expires_at_to_jobs.rb +15 -0
- data/db/migrate/20151210162949_improve_max_concurrent.rb +50 -0
- data/lib/delayed/backend/active_record.rb +340 -0
- data/lib/delayed/backend/base.rb +335 -0
- data/lib/delayed/backend/redis/bulk_update.lua +50 -0
- data/lib/delayed/backend/redis/destroy_job.lua +2 -0
- data/lib/delayed/backend/redis/enqueue.lua +29 -0
- data/lib/delayed/backend/redis/fail_job.lua +5 -0
- data/lib/delayed/backend/redis/find_available.lua +3 -0
- data/lib/delayed/backend/redis/functions.rb +57 -0
- data/lib/delayed/backend/redis/get_and_lock_next_available.lua +17 -0
- data/lib/delayed/backend/redis/includes/jobs_common.lua +203 -0
- data/lib/delayed/backend/redis/job.rb +497 -0
- data/lib/delayed/backend/redis/set_running.lua +5 -0
- data/lib/delayed/backend/redis/tickle_strand.lua +2 -0
- data/lib/delayed/batch.rb +56 -0
- data/lib/delayed/cli.rb +101 -0
- data/lib/delayed/daemon.rb +103 -0
- data/lib/delayed/engine.rb +4 -0
- data/lib/delayed/job_tracking.rb +31 -0
- data/lib/delayed/lifecycle.rb +90 -0
- data/lib/delayed/log_tailer.rb +22 -0
- data/lib/delayed/message_sending.rb +134 -0
- data/lib/delayed/performable_method.rb +52 -0
- data/lib/delayed/periodic.rb +85 -0
- data/lib/delayed/plugin.rb +22 -0
- data/lib/delayed/pool.rb +161 -0
- data/lib/delayed/server/helpers.rb +28 -0
- data/lib/delayed/server/public/css/app.css +12 -0
- data/lib/delayed/server/public/js/app.js +132 -0
- data/lib/delayed/server/views/index.erb +90 -0
- data/lib/delayed/server/views/layout.erb +47 -0
- data/lib/delayed/server.rb +120 -0
- data/lib/delayed/settings.rb +90 -0
- data/lib/delayed/testing.rb +32 -0
- data/lib/delayed/version.rb +3 -0
- data/lib/delayed/work_queue/in_process.rb +13 -0
- data/lib/delayed/work_queue/parent_process.rb +180 -0
- data/lib/delayed/worker.rb +234 -0
- data/lib/delayed/yaml_extensions.rb +109 -0
- data/lib/delayed_job.rb +46 -0
- data/lib/inst-jobs.rb +1 -0
- data/spec/active_record_job_spec.rb +246 -0
- data/spec/delayed/cli_spec.rb +23 -0
- data/spec/delayed/daemon_spec.rb +35 -0
- data/spec/delayed/server_spec.rb +63 -0
- data/spec/delayed/settings_spec.rb +32 -0
- data/spec/delayed/work_queue/in_process_spec.rb +31 -0
- data/spec/delayed/work_queue/parent_process_spec.rb +159 -0
- data/spec/delayed/worker_spec.rb +16 -0
- data/spec/gemfiles/32.gemfile +6 -0
- data/spec/gemfiles/40.gemfile +5 -0
- data/spec/gemfiles/41.gemfile +5 -0
- data/spec/gemfiles/42.gemfile +5 -0
- data/spec/migrate/20140924140513_add_story_table.rb +7 -0
- data/spec/redis_job_spec.rb +140 -0
- data/spec/sample_jobs.rb +28 -0
- data/spec/shared/delayed_batch.rb +85 -0
- data/spec/shared/delayed_method.rb +419 -0
- data/spec/shared/performable_method.rb +66 -0
- data/spec/shared/shared_backend.rb +819 -0
- data/spec/shared/testing.rb +48 -0
- data/spec/shared/worker.rb +378 -0
- data/spec/shared_jobs_specs.rb +15 -0
- data/spec/spec_helper.rb +97 -0
- metadata +390 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
shared_examples_for 'Delayed::PerformableMethod' do
|
2
|
+
|
3
|
+
it "should not ignore ActiveRecord::RecordNotFound errors because they are not always permanent" do
|
4
|
+
story = Story.create :text => 'Once upon...'
|
5
|
+
p = Delayed::PerformableMethod.new(story, :tell, [])
|
6
|
+
story.destroy
|
7
|
+
lambda { YAML.load(p.to_yaml) }.should raise_error(Delayed::Backend::RecordNotFound)
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should store the object using native YAML even if its an active record" do
|
11
|
+
story = Story.create :text => 'Once upon...'
|
12
|
+
p = Delayed::PerformableMethod.new(story, :tell, [])
|
13
|
+
p.class.should == Delayed::PerformableMethod
|
14
|
+
p.object.should == story
|
15
|
+
p.method.should == :tell
|
16
|
+
p.args.should == []
|
17
|
+
p.perform.should == 'Once upon...'
|
18
|
+
end
|
19
|
+
|
20
|
+
it "should allow class methods to be called on ActiveRecord models" do
|
21
|
+
Story.create!(:text => 'Once upon a...')
|
22
|
+
p = Delayed::PerformableMethod.new(Story, :count, [])
|
23
|
+
lambda { expect(p.send(:perform)).to eql 1 }.should_not raise_error
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should allow class methods to be called" do
|
27
|
+
p = Delayed::PerformableMethod.new(StoryReader, :reverse, ["ohai"])
|
28
|
+
lambda { p.send(:perform).should == "iaho" }.should_not raise_error
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should allow module methods to be called" do
|
32
|
+
p = Delayed::PerformableMethod.new(MyReverser, :reverse, ["ohai"])
|
33
|
+
lambda { p.send(:perform).should == "iaho" }.should_not raise_error
|
34
|
+
end
|
35
|
+
|
36
|
+
it "should store arguments as native YAML if they are active record objects" do
|
37
|
+
story = Story.create :text => 'Once upon...'
|
38
|
+
reader = StoryReader.new
|
39
|
+
p = Delayed::PerformableMethod.new(reader, :read, [story])
|
40
|
+
p.class.should == Delayed::PerformableMethod
|
41
|
+
p.method.should == :read
|
42
|
+
p.args.should == [story]
|
43
|
+
p.perform.should == 'Epilog: Once upon...'
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should deeply de-AR-ize arguments in full name" do
|
47
|
+
story = Story.create :text => 'Once upon...'
|
48
|
+
reader = StoryReader.new
|
49
|
+
p = Delayed::PerformableMethod.new(reader, :read, [['arg1', story, { [:key, 1] => story }]])
|
50
|
+
p.full_name.should == "StoryReader#read([\"arg1\", Story.find(#{story.id}), {[:key, 1] => Story.find(#{story.id})}])"
|
51
|
+
end
|
52
|
+
|
53
|
+
it "should call the on_failure callback" do
|
54
|
+
story = Story.create :text => 'wat'
|
55
|
+
p = Delayed::PerformableMethod.new(story, :tell, [], :text=)
|
56
|
+
p.send(:on_failure, 'fail')
|
57
|
+
story.text.should == 'fail'
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should call the on_permanent_failure callback" do
|
61
|
+
story = Story.create :text => 'wat'
|
62
|
+
p = Delayed::PerformableMethod.new(story, :tell, [], nil, :text=)
|
63
|
+
p.send(:on_permanent_failure, 'fail_frd')
|
64
|
+
story.text.should == 'fail_frd'
|
65
|
+
end
|
66
|
+
end
|