queue-bus 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +21 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +4 -2
- data/Rakefile +2 -0
- data/lib/queue-bus.rb +15 -12
- data/lib/queue_bus/adapters/base.rb +4 -2
- data/lib/queue_bus/adapters/data.rb +12 -11
- data/lib/queue_bus/application.rb +13 -15
- data/lib/queue_bus/dispatch.rb +14 -12
- data/lib/queue_bus/dispatchers.rb +12 -5
- data/lib/queue_bus/driver.rb +15 -10
- data/lib/queue_bus/heartbeat.rb +32 -30
- data/lib/queue_bus/local.rb +9 -9
- data/lib/queue_bus/matcher.rb +36 -27
- data/lib/queue_bus/publisher.rb +7 -5
- data/lib/queue_bus/publishing.rb +31 -24
- data/lib/queue_bus/rider.rb +26 -22
- data/lib/queue_bus/subscriber.rb +20 -14
- data/lib/queue_bus/subscription.rb +25 -15
- data/lib/queue_bus/subscription_list.rb +30 -12
- data/lib/queue_bus/task_manager.rb +18 -16
- data/lib/queue_bus/tasks.rb +20 -15
- data/lib/queue_bus/util.rb +11 -8
- data/lib/queue_bus/version.rb +3 -1
- data/lib/queue_bus/worker.rb +3 -2
- data/queue-bus.gemspec +19 -18
- data/spec/adapter/publish_at_spec.rb +28 -25
- data/spec/adapter/support.rb +7 -1
- data/spec/adapter_spec.rb +4 -2
- data/spec/application_spec.rb +97 -97
- data/spec/dispatch_spec.rb +48 -51
- data/spec/driver_spec.rb +60 -58
- data/spec/heartbeat_spec.rb +26 -24
- data/spec/integration_spec.rb +41 -40
- data/spec/matcher_spec.rb +104 -102
- data/spec/publish_spec.rb +46 -46
- data/spec/publisher_spec.rb +3 -1
- data/spec/rider_spec.rb +16 -14
- data/spec/spec_helper.rb +2 -2
- data/spec/subscriber_spec.rb +227 -227
- data/spec/subscription_list_spec.rb +31 -31
- data/spec/subscription_spec.rb +37 -36
- data/spec/worker_spec.rb +17 -15
- metadata +7 -6
@@ -1,51 +1,54 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
require 'spec_helper'
|
4
4
|
|
5
|
+
describe 'Publishing an event in the future' do
|
5
6
|
before(:each) do
|
6
7
|
Timecop.freeze(now)
|
7
|
-
allow(QueueBus).to receive(:generate_uuid).and_return(
|
8
|
+
allow(QueueBus).to receive(:generate_uuid).and_return('idfhlkj')
|
8
9
|
end
|
9
10
|
after(:each) do
|
10
11
|
Timecop.return
|
11
12
|
end
|
12
|
-
let(:delayed_attrs)
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
let(:delayed_attrs) do
|
14
|
+
{
|
15
|
+
'bus_delayed_until' => future.to_i,
|
16
|
+
'bus_id' => "#{now.to_i}-idfhlkj",
|
17
|
+
'bus_app_hostname' => `hostname 2>&1`.strip.sub(/.local/, '')
|
18
|
+
}
|
19
|
+
end
|
16
20
|
|
17
|
-
let(:bus_attrs) { delayed_attrs.merge(
|
18
|
-
let(:now) { Time.parse(
|
21
|
+
let(:bus_attrs) { delayed_attrs.merge('bus_published_at' => worktime.to_i) }
|
22
|
+
let(:now) { Time.parse('01/01/2013 5:00') }
|
19
23
|
let(:future) { Time.at(now.to_i + 60) }
|
20
|
-
let(:worktime) {Time.at(future.to_i + 1)}
|
24
|
+
let(:worktime) { Time.at(future.to_i + 1) }
|
21
25
|
|
22
|
-
it
|
23
|
-
hash = {:one => 1,
|
24
|
-
event_name =
|
26
|
+
it 'should add it to Redis then to the real queue' do
|
27
|
+
hash = { :one => 1, 'two' => 'here', 'id' => 12 }
|
28
|
+
event_name = 'event_name'
|
25
29
|
QueueBus.publish_at(future, event_name, hash)
|
26
30
|
|
27
|
-
schedule = QueueBus.redis { |redis| redis.zrange(
|
31
|
+
schedule = QueueBus.redis { |redis| redis.zrange('delayed_queue_schedule', 0, 1) }
|
28
32
|
expect(schedule).to eq([future.to_i.to_s])
|
29
33
|
|
30
34
|
val = QueueBus.redis { |redis| redis.lpop("delayed:#{future.to_i}") }
|
31
35
|
hash = JSON.parse(val)
|
32
36
|
|
33
|
-
expect(hash[
|
34
|
-
expect(hash[
|
35
|
-
expect(JSON.parse(hash[
|
36
|
-
expect(hash[
|
37
|
+
expect(hash['class']).to eq('QueueBus::Worker')
|
38
|
+
expect(hash['args'].size).to eq(1)
|
39
|
+
expect(JSON.parse(hash['args'].first)).to eq({ 'bus_class_proxy' => 'QueueBus::Publisher', 'bus_event_type' => 'event_name', 'two' => 'here', 'one' => 1, 'id' => 12 }.merge(delayed_attrs))
|
40
|
+
expect(hash['queue']).to eq('bus_incoming')
|
37
41
|
|
38
|
-
val = QueueBus.redis { |redis| redis.lpop(
|
42
|
+
val = QueueBus.redis { |redis| redis.lpop('queue:bus_incoming') }
|
39
43
|
expect(val).to eq(nil) # nothing really added
|
40
44
|
|
41
45
|
Timecop.freeze(worktime)
|
42
|
-
QueueBus::Publisher.perform(JSON.parse(hash[
|
46
|
+
QueueBus::Publisher.perform(JSON.parse(hash['args'].first))
|
43
47
|
|
44
|
-
val = QueueBus.redis { |redis| redis.lpop(
|
48
|
+
val = QueueBus.redis { |redis| redis.lpop('queue:bus_incoming') }
|
45
49
|
hash = JSON.parse(val)
|
46
|
-
expect(hash[
|
47
|
-
expect(hash[
|
48
|
-
expect(JSON.parse(hash[
|
50
|
+
expect(hash['class']).to eq('QueueBus::Worker')
|
51
|
+
expect(hash['args'].size).to eq(1)
|
52
|
+
expect(JSON.parse(hash['args'].first)).to eq({ 'bus_class_proxy' => 'QueueBus::Driver', 'bus_event_type' => 'event_name', 'two' => 'here', 'one' => 1, 'id' => 12 }.merge(bus_attrs))
|
49
53
|
end
|
50
|
-
|
51
54
|
end
|
data/spec/adapter/support.rb
CHANGED
@@ -1,9 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'redis'
|
2
4
|
|
3
5
|
def reset_test_adapter
|
4
6
|
QueueBus.send(:reset)
|
5
7
|
QueueBus.adapter = :data
|
6
|
-
QueueBus.adapter.redis =
|
8
|
+
QueueBus.adapter.redis = if ENV['REDIS_URL']
|
9
|
+
Redis.new(url: ENV['REDIS_URL'])
|
10
|
+
else
|
11
|
+
Redis.new
|
12
|
+
end
|
7
13
|
end
|
8
14
|
|
9
15
|
def adapter_under_test_class
|
data/spec/adapter_spec.rb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
|
-
describe
|
5
|
+
describe 'adapter is set' do
|
4
6
|
it "should call it's enabled! method on init" do
|
5
7
|
QueueBus.send(:reset)
|
6
8
|
expect_any_instance_of(adapter_under_test_class).to receive(:enabled!)
|
@@ -8,7 +10,7 @@ describe "adapter is set" do
|
|
8
10
|
QueueBus.send(:reset)
|
9
11
|
end
|
10
12
|
|
11
|
-
it
|
13
|
+
it 'should be defaulting to Data from spec_helper' do
|
12
14
|
expect(QueueBus.adapter.is_a?(adapter_under_test_class)).to eq(true)
|
13
15
|
end
|
14
16
|
end
|
data/spec/application_spec.rb
CHANGED
@@ -1,151 +1,151 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
module QueueBus
|
4
6
|
describe Application do
|
5
|
-
describe
|
6
|
-
it
|
7
|
+
describe '.all' do
|
8
|
+
it 'should return empty array when none' do
|
7
9
|
expect(Application.all).to eq([])
|
8
10
|
end
|
9
|
-
it
|
10
|
-
Application.new(
|
11
|
-
Application.new(
|
12
|
-
Application.new(
|
11
|
+
it 'should return registered applications when there are some' do
|
12
|
+
Application.new('One').subscribe(test_list(test_sub('fdksjh')))
|
13
|
+
Application.new('Two').subscribe(test_list(test_sub('fdklhf')))
|
14
|
+
Application.new('Three').subscribe(test_list(test_sub('fkld')))
|
13
15
|
|
14
|
-
expect(Application.all.collect(&:app_key)).to match_array([
|
16
|
+
expect(Application.all.collect(&:app_key)).to match_array(%w[one two three])
|
15
17
|
|
16
|
-
Application.new(
|
17
|
-
expect(Application.all.collect(&:app_key)).to match_array([
|
18
|
+
Application.new('two').unsubscribe
|
19
|
+
expect(Application.all.collect(&:app_key)).to match_array(%w[one three])
|
18
20
|
end
|
19
21
|
end
|
20
22
|
|
21
|
-
describe
|
22
|
-
it
|
23
|
-
expect(Application.new(
|
23
|
+
describe '.new' do
|
24
|
+
it 'should have a key' do
|
25
|
+
expect(Application.new('something').app_key).to eq('something')
|
24
26
|
|
25
|
-
expect(Application.new(
|
26
|
-
expect(Application.new(
|
27
|
-
expect(Application.new(
|
28
|
-
expect(Application.new(
|
27
|
+
expect(Application.new('some thing').app_key).to eq('some_thing')
|
28
|
+
expect(Application.new('some-thing').app_key).to eq('some_thing')
|
29
|
+
expect(Application.new('some_thing').app_key).to eq('some_thing')
|
30
|
+
expect(Application.new('Some Thing').app_key).to eq('some_thing')
|
29
31
|
end
|
30
32
|
|
31
|
-
it
|
32
|
-
expect
|
33
|
-
Application.new(
|
34
|
-
|
33
|
+
it 'should raise an error if not valid' do
|
34
|
+
expect do
|
35
|
+
Application.new('')
|
36
|
+
end.to raise_error(RuntimeError, 'Invalid application name')
|
35
37
|
|
36
|
-
expect
|
38
|
+
expect do
|
37
39
|
Application.new(nil)
|
38
|
-
|
40
|
+
end.to raise_error(RuntimeError, 'Invalid application name')
|
39
41
|
|
40
|
-
expect
|
41
|
-
Application.new(
|
42
|
-
|
42
|
+
expect do
|
43
|
+
Application.new('/')
|
44
|
+
end.to raise_error(RuntimeError, 'Invalid application name')
|
43
45
|
end
|
44
46
|
end
|
45
47
|
|
46
|
-
describe
|
47
|
-
it
|
48
|
-
|
49
|
-
QueueBus.redis { |redis| redis.hset(
|
50
|
-
|
51
|
-
app = Application.new("myapp")
|
48
|
+
describe '#read_redis_hash' do
|
49
|
+
it 'should handle old and new values' do
|
50
|
+
QueueBus.redis { |redis| redis.hset('bus_app:myapp', 'new_one', QueueBus::Util.encode('queue_name' => 'x', 'bus_event_type' => 'event_name')) }
|
51
|
+
QueueBus.redis { |redis| redis.hset('bus_app:myapp', 'old_one', 'oldqueue_name') }
|
52
|
+
app = Application.new('myapp')
|
52
53
|
val = app.send(:read_redis_hash)
|
53
|
-
expect(val).to eq(
|
54
|
+
expect(val).to eq('new_one' => { 'queue_name' => 'x', 'bus_event_type' => 'event_name' }, 'old_one' => 'oldqueue_name')
|
54
55
|
end
|
55
56
|
end
|
56
57
|
|
57
|
-
describe
|
58
|
-
let(:sub1) { test_sub(
|
59
|
-
let(:sub2) { test_sub(
|
60
|
-
let(:sub3) { test_sub(
|
61
|
-
it
|
62
|
-
expect(QueueBus.redis { |redis| redis.get(
|
63
|
-
Application.new(
|
64
|
-
|
65
|
-
expect(QueueBus.redis { |redis| redis.hgetall(
|
66
|
-
|
67
|
-
expect(QueueBus.redis { |redis| redis.hkeys(
|
68
|
-
expect(QueueBus.redis { |redis| redis.smembers(
|
58
|
+
describe '#subscribe' do
|
59
|
+
let(:sub1) { test_sub('event_one', 'default') }
|
60
|
+
let(:sub2) { test_sub('event_two', 'default') }
|
61
|
+
let(:sub3) { test_sub('event_three', 'other') }
|
62
|
+
it 'should add array to redis' do
|
63
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
64
|
+
Application.new('myapp').subscribe(test_list(sub1, sub2))
|
65
|
+
|
66
|
+
expect(QueueBus.redis { |redis| redis.hgetall('bus_app:myapp') }).to eq('event_two' => '{"queue_name":"default","key":"event_two","class":"::QueueBus::Rider","matcher":{"bus_event_type":"event_two"}}',
|
67
|
+
'event_one' => '{"queue_name":"default","key":"event_one","class":"::QueueBus::Rider","matcher":{"bus_event_type":"event_one"}}')
|
68
|
+
expect(QueueBus.redis { |redis| redis.hkeys('bus_app:myapp') }).to match_array(%w[event_one event_two])
|
69
|
+
expect(QueueBus.redis { |redis| redis.smembers('bus_apps') }).to match_array(['myapp'])
|
69
70
|
end
|
70
|
-
it
|
71
|
-
expect(QueueBus.redis { |redis| redis.get(
|
72
|
-
Application.new(
|
71
|
+
it 'should add string to redis' do
|
72
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
73
|
+
Application.new('myapp').subscribe(test_list(sub1))
|
73
74
|
|
74
|
-
expect(QueueBus.redis { |redis| redis.hgetall(
|
75
|
-
expect(QueueBus.redis { |redis| redis.hkeys(
|
76
|
-
expect(QueueBus.redis { |redis| redis.smembers(
|
75
|
+
expect(QueueBus.redis { |redis| redis.hgetall('bus_app:myapp') }).to eq('event_one' => '{"queue_name":"default","key":"event_one","class":"::QueueBus::Rider","matcher":{"bus_event_type":"event_one"}}')
|
76
|
+
expect(QueueBus.redis { |redis| redis.hkeys('bus_app:myapp') }).to match_array(['event_one'])
|
77
|
+
expect(QueueBus.redis { |redis| redis.smembers('bus_apps') }).to match_array(['myapp'])
|
77
78
|
end
|
78
|
-
it
|
79
|
-
expect(QueueBus.redis { |redis| redis.get(
|
80
|
-
Application.new(
|
81
|
-
expect(QueueBus.redis { |redis| redis.hgetall(
|
82
|
-
|
83
|
-
expect(QueueBus.redis { |redis| redis.hkeys(
|
84
|
-
expect(QueueBus.redis { |redis| redis.smembers(
|
79
|
+
it 'should multiple queues to redis' do
|
80
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
81
|
+
Application.new('myapp').subscribe(test_list(sub1, sub2, sub3))
|
82
|
+
expect(QueueBus.redis { |redis| redis.hgetall('bus_app:myapp') }).to eq('event_two' => '{"queue_name":"default","key":"event_two","class":"::QueueBus::Rider","matcher":{"bus_event_type":"event_two"}}', 'event_one' => '{"queue_name":"default","key":"event_one","class":"::QueueBus::Rider","matcher":{"bus_event_type":"event_one"}}',
|
83
|
+
'event_three' => '{"queue_name":"other","key":"event_three","class":"::QueueBus::Rider","matcher":{"bus_event_type":"event_three"}}')
|
84
|
+
expect(QueueBus.redis { |redis| redis.hkeys('bus_app:myapp') }).to match_array(%w[event_three event_two event_one])
|
85
|
+
expect(QueueBus.redis { |redis| redis.smembers('bus_apps') }).to match_array(['myapp'])
|
85
86
|
end
|
86
87
|
|
87
|
-
it
|
88
|
-
|
89
|
-
expect(QueueBus.redis { |redis| redis.get("bus_app:myapp") }).to be_nil
|
88
|
+
it 'should do nothing if nil or empty' do
|
89
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
90
90
|
|
91
|
-
Application.new(
|
92
|
-
expect(QueueBus.redis { |redis| redis.get(
|
91
|
+
Application.new('myapp').subscribe(nil)
|
92
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
93
93
|
|
94
|
-
Application.new(
|
95
|
-
expect(QueueBus.redis { |redis| redis.get(
|
94
|
+
Application.new('myapp').subscribe([])
|
95
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
96
96
|
end
|
97
97
|
|
98
|
-
it
|
99
|
-
app = Application.new(
|
98
|
+
it 'should call unsubscribe' do
|
99
|
+
app = Application.new('myapp')
|
100
100
|
expect(app).to receive(:unsubscribe)
|
101
101
|
app.subscribe([])
|
102
102
|
end
|
103
103
|
end
|
104
104
|
|
105
|
-
describe
|
106
|
-
it
|
107
|
-
QueueBus.redis { |redis| redis.sadd(
|
108
|
-
QueueBus.redis { |redis| redis.sadd(
|
109
|
-
QueueBus.redis { |redis| redis.hset(
|
105
|
+
describe '#unsubscribe' do
|
106
|
+
it 'should remove items' do
|
107
|
+
QueueBus.redis { |redis| redis.sadd('bus_apps', 'myapp') }
|
108
|
+
QueueBus.redis { |redis| redis.sadd('bus_apps', 'other') }
|
109
|
+
QueueBus.redis { |redis| redis.hset('bus_app:myapp', 'event_one', 'myapp_default') }
|
110
110
|
|
111
|
-
Application.new(
|
111
|
+
Application.new('myapp').unsubscribe
|
112
112
|
|
113
|
-
expect(QueueBus.redis { |redis| redis.smembers(
|
114
|
-
expect(QueueBus.redis { |redis| redis.get(
|
113
|
+
expect(QueueBus.redis { |redis| redis.smembers('bus_apps') }).to eq(['other'])
|
114
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
115
115
|
end
|
116
116
|
end
|
117
117
|
|
118
|
-
describe
|
119
|
-
it
|
120
|
-
expect(Application.new(
|
118
|
+
describe '#subscription_matches' do
|
119
|
+
it 'should return if it is there' do
|
120
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'three').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to eq([])
|
121
121
|
|
122
|
-
subs = test_list(test_sub(
|
123
|
-
Application.new(
|
124
|
-
expect(Application.new(
|
122
|
+
subs = test_list(test_sub('one_x'), test_sub('one_y'), test_sub('one'), test_sub('two'))
|
123
|
+
Application.new('myapp').subscribe(subs)
|
124
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'three').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to eq([])
|
125
125
|
|
126
|
-
expect(Application.new(
|
127
|
-
expect(Application.new(
|
126
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'two').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', 'two', 'default', '::QueueBus::Rider']])
|
127
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'one').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', 'one', 'default', '::QueueBus::Rider']])
|
128
128
|
end
|
129
129
|
|
130
|
-
it
|
131
|
-
subs = test_list(test_sub(
|
132
|
-
Application.new(
|
133
|
-
expect(Application.new(
|
130
|
+
it 'should handle * wildcards' do
|
131
|
+
subs = test_list(test_sub('one.+'), test_sub('one'), test_sub('one_.*'), test_sub('two'))
|
132
|
+
Application.new('myapp').subscribe(subs)
|
133
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'three').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to eq([])
|
134
134
|
|
135
|
-
expect(Application.new(
|
136
|
-
expect(Application.new(
|
137
|
-
expect(Application.new(
|
135
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'onex').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', 'one.+', 'default', '::QueueBus::Rider']])
|
136
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'one').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', 'one', 'default', '::QueueBus::Rider']])
|
137
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'one_x').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', 'one.+', 'default', '::QueueBus::Rider'], ['myapp', 'one_.*', 'default', '::QueueBus::Rider']])
|
138
138
|
end
|
139
139
|
|
140
|
-
it
|
141
|
-
subs = test_list(test_sub(/one.+/), test_sub(
|
142
|
-
Application.new(
|
143
|
-
expect(Application.new(
|
140
|
+
it 'should handle actual regular expressions' do
|
141
|
+
subs = test_list(test_sub(/one.+/), test_sub('one'), test_sub(/one_.*/), test_sub('two'))
|
142
|
+
Application.new('myapp').subscribe(subs)
|
143
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'three').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to eq([])
|
144
144
|
|
145
|
-
expect(Application.new(
|
146
|
-
expect(Application.new(
|
147
|
-
expect(Application.new(
|
148
|
-
expect(Application.new(
|
145
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'onex').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', '(?-mix:one.+)', 'default', '::QueueBus::Rider']])
|
146
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'donex').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', '(?-mix:one.+)', 'default', '::QueueBus::Rider']])
|
147
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'one').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', 'one', 'default', '::QueueBus::Rider']])
|
148
|
+
expect(Application.new('myapp').subscription_matches('bus_event_type' => 'one_x').collect { |s| [s.app_key, s.key, s.queue_name, s.class_name] }).to match_array([['myapp', '(?-mix:one.+)', 'default', '::QueueBus::Rider'], ['myapp', '(?-mix:one_.*)', 'default', '::QueueBus::Rider']])
|
149
149
|
end
|
150
150
|
end
|
151
151
|
end
|
data/spec/dispatch_spec.rb
CHANGED
@@ -1,76 +1,73 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
2
4
|
|
3
5
|
module QueueBus
|
4
6
|
describe Dispatch do
|
5
|
-
it
|
6
|
-
expect(Dispatch.new(
|
7
|
+
it 'should not start with any applications' do
|
8
|
+
expect(Dispatch.new('d').subscriptions.size).to eq(0)
|
7
9
|
end
|
8
|
-
|
9
|
-
it
|
10
|
-
dispatch = Dispatch.new(
|
11
|
-
dispatch.subscribe(
|
10
|
+
|
11
|
+
it 'should register code to run and execute it' do
|
12
|
+
dispatch = Dispatch.new('d')
|
13
|
+
dispatch.subscribe('my_event') do |attrs|
|
12
14
|
Runner1.run(attrs)
|
13
15
|
end
|
14
|
-
sub = dispatch.subscriptions.key(
|
16
|
+
sub = dispatch.subscriptions.key('my_event')
|
15
17
|
expect(sub.send(:executor).is_a?(Proc)).to eq(true)
|
16
18
|
|
17
19
|
expect(Runner.value).to eq(0)
|
18
|
-
dispatch.execute(
|
20
|
+
dispatch.execute('my_event', 'bus_event_type' => 'my_event', 'ok' => true)
|
19
21
|
expect(Runner1.value).to eq(1)
|
20
|
-
expect(Runner1.attributes).to eq(
|
21
|
-
|
22
|
+
expect(Runner1.attributes).to eq('bus_event_type' => 'my_event', 'ok' => true)
|
22
23
|
end
|
23
|
-
|
24
|
-
it
|
25
|
-
expect
|
26
|
-
Dispatch.new(
|
27
|
-
|
24
|
+
|
25
|
+
it 'should not crash if not there' do
|
26
|
+
expect do
|
27
|
+
Dispatch.new('d').execute('fdkjh', 'bus_event_type' => 'fdkjh')
|
28
|
+
end.not_to raise_error
|
28
29
|
end
|
29
|
-
|
30
|
-
describe
|
30
|
+
|
31
|
+
describe 'Top Level' do
|
31
32
|
before(:each) do
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
33
|
+
QueueBus.dispatch('testit') do
|
34
|
+
subscribe 'event1' do |attributes|
|
35
|
+
Runner2.run(attributes)
|
36
|
+
end
|
37
|
+
|
38
|
+
subscribe 'event2' do
|
39
|
+
Runner2.run({})
|
40
|
+
end
|
36
41
|
|
37
|
-
|
38
|
-
|
39
|
-
|
42
|
+
high 'event3' do
|
43
|
+
Runner2.run({})
|
44
|
+
end
|
40
45
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
it "should register and run" do
|
46
|
+
low /^patt.+ern/ do
|
47
|
+
Runner.run({})
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'should register and run' do
|
52
53
|
expect(Runner2.value).to eq(0)
|
53
|
-
QueueBus.dispatcher_execute(
|
54
|
+
QueueBus.dispatcher_execute('testit', 'event2', 'bus_event_type' => 'event2')
|
54
55
|
expect(Runner2.value).to eq(1)
|
55
|
-
QueueBus.dispatcher_execute(
|
56
|
+
QueueBus.dispatcher_execute('testit', 'event1', 'bus_event_type' => 'event1')
|
56
57
|
expect(Runner2.value).to eq(2)
|
57
|
-
QueueBus.dispatcher_execute(
|
58
|
+
QueueBus.dispatcher_execute('testit', 'event1', 'bus_event_type' => 'event1')
|
58
59
|
expect(Runner2.value).to eq(3)
|
59
60
|
end
|
60
|
-
|
61
|
-
it
|
62
|
-
dispatcher = QueueBus.dispatcher_by_key(
|
61
|
+
|
62
|
+
it 'should return the subscriptions' do
|
63
|
+
dispatcher = QueueBus.dispatcher_by_key('testit')
|
63
64
|
subs = dispatcher.subscriptions.all
|
64
|
-
tuples = subs.collect{ |sub| [sub.key, sub.queue_name]}
|
65
|
-
expect(tuples).to match_array([
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
])
|
65
|
+
tuples = subs.collect { |sub| [sub.key, sub.queue_name] }
|
66
|
+
expect(tuples).to match_array([%w[event1 testit_default],
|
67
|
+
%w[event2 testit_default],
|
68
|
+
%w[event3 testit_high],
|
69
|
+
['(?-mix:^patt.+ern)', 'testit_low']])
|
70
70
|
end
|
71
|
-
|
72
71
|
end
|
73
72
|
end
|
74
|
-
|
75
73
|
end
|
76
|
-
|