queue-bus 0.8.0 → 0.11.0
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 +31 -0
- data/Gemfile +4 -2
- data/README.mdown +15 -3
- data/Rakefile +2 -0
- data/lib/queue-bus.rb +16 -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 +24 -16
- data/lib/queue_bus/config.rb +23 -2
- 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 +32 -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 +25 -16
- data/lib/queue_bus/tasks.rb +35 -11
- 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 +138 -96
- data/spec/config_spec.rb +36 -0
- 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 +68 -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 +57 -31
- data/spec/subscription_spec.rb +37 -36
- data/spec/worker_spec.rb +17 -15
- metadata +12 -10
data/lib/queue_bus/version.rb
CHANGED
data/lib/queue_bus/worker.rb
CHANGED
@@ -1,11 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module QueueBus
|
2
4
|
class Worker
|
3
|
-
|
4
5
|
def self.perform(json)
|
5
6
|
klass = nil
|
6
7
|
attributes = ::QueueBus::Util.decode(json)
|
7
8
|
begin
|
8
|
-
class_name = attributes[
|
9
|
+
class_name = attributes['bus_class_proxy']
|
9
10
|
klass = ::QueueBus::Util.constantize(class_name)
|
10
11
|
rescue NameError
|
11
12
|
# not there anymore
|
data/queue-bus.gemspec
CHANGED
@@ -1,33 +1,34 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
$:.push File.expand_path('lib', __dir__)
|
4
|
+
require 'queue_bus/version'
|
4
5
|
|
5
6
|
Gem::Specification.new do |s|
|
6
|
-
s.name =
|
7
|
+
s.name = 'queue-bus'
|
7
8
|
s.version = QueueBus::VERSION
|
8
|
-
s.authors = [
|
9
|
-
s.email = [
|
10
|
-
s.homepage =
|
11
|
-
s.summary =
|
12
|
-
s.description =
|
9
|
+
s.authors = ['Brian Leonard']
|
10
|
+
s.email = ['brian@bleonard.com']
|
11
|
+
s.homepage = ''
|
12
|
+
s.summary = 'A simple event bus on top of background queues'
|
13
|
+
s.description = 'A simple event bus on top of common background queues. Publish and subscribe to events as they occur using what you already have.'
|
13
14
|
|
14
|
-
s.rubyforge_project =
|
15
|
+
s.rubyforge_project = 'queue-bus'
|
15
16
|
|
16
17
|
s.files = `git ls-files`.split("\n")
|
17
18
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
-
s.require_paths = [
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
20
|
+
s.require_paths = ['lib']
|
20
21
|
|
21
|
-
s.add_dependency(
|
22
|
-
s.add_dependency(
|
22
|
+
s.add_dependency('multi_json')
|
23
|
+
s.add_dependency('redis')
|
23
24
|
|
24
25
|
# if using resque
|
25
26
|
# s.add_development_dependency('resque', ['>= 1.10.0', '< 2.0'])
|
26
27
|
# s.add_development_dependency('resque-scheduler', '>= 2.0.1')
|
27
28
|
# s.add_development_dependency('resque-retry')
|
28
29
|
|
29
|
-
s.add_development_dependency(
|
30
|
-
s.add_development_dependency(
|
31
|
-
s.add_development_dependency(
|
32
|
-
s.add_development_dependency(
|
30
|
+
s.add_development_dependency('json_pure')
|
31
|
+
s.add_development_dependency('rspec')
|
32
|
+
s.add_development_dependency('rubocop')
|
33
|
+
s.add_development_dependency('timecop')
|
33
34
|
end
|
@@ -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,193 @@
|
|
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
|
+
it 'should do nothing if nil or empty' do
|
89
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
88
90
|
|
89
|
-
|
91
|
+
Application.new('myapp').subscribe(nil)
|
92
|
+
expect(QueueBus.redis { |redis| redis.get('bus_app:myapp') }).to be_nil
|
90
93
|
|
91
|
-
Application.new(
|
92
|
-
expect(QueueBus.redis { |redis| redis.get(
|
93
|
-
|
94
|
-
Application.new("myapp").subscribe([])
|
95
|
-
expect(QueueBus.redis { |redis| redis.get("bus_app:myapp") }).to be_nil
|
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
105
|
describe "#unsubscribe" do
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
106
|
+
context "when a queue is not specified" do
|
107
|
+
it "removes all subscriptions" do
|
108
|
+
myapp_list = SubscriptionList.new
|
109
|
+
other_list = SubscriptionList.new
|
110
|
+
|
111
|
+
subscription_1 = Subscription.new("myapp_default", "key1", "MyClass1", {"bus_event_type" => "event_one"})
|
112
|
+
subscription_2 = Subscription.new("myapp_default", "key2", "MyClass2", {"bus_event_type" => "event_two"})
|
113
|
+
subscription_3 = Subscription.new("myapp_other_queue", "key1", "MyClass1", {"bus_event_type" => "event_one"})
|
114
|
+
|
115
|
+
myapp_list.add(subscription_1)
|
116
|
+
myapp_list.add(subscription_2)
|
117
|
+
other_list.add(subscription_3)
|
118
|
+
|
119
|
+
Application.new("myapp").subscribe(myapp_list)
|
120
|
+
Application.new("other").subscribe(other_list)
|
121
|
+
|
122
|
+
expect(QueueBus.redis { |redis| redis.hgetall("bus_app:myapp") }).to eq({
|
123
|
+
"key1" => "{\"queue_name\":\"myapp_default\",\"key\":\"key1\",\"class\":\"MyClass1\",\"matcher\":{\"bus_event_type\":\"event_one\"}}",
|
124
|
+
"key2" => "{\"queue_name\":\"myapp_default\",\"key\":\"key2\",\"class\":\"MyClass2\",\"matcher\":{\"bus_event_type\":\"event_two\"}}"
|
125
|
+
})
|
126
|
+
|
127
|
+
Application.new("myapp").unsubscribe
|
128
|
+
|
129
|
+
expect(QueueBus.redis { |redis| redis.smembers("bus_apps") }).to eq(["other"])
|
130
|
+
expect(QueueBus.redis { |redis| redis.hlen("bus_app:myapp") }).to eq(0)
|
131
|
+
expect(QueueBus.redis { |redis| redis.hlen("bus_app:other") }).to eq(1)
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
context "when a queue is specified" do
|
136
|
+
it "removes only that key" do
|
137
|
+
list = SubscriptionList.new
|
138
|
+
|
139
|
+
subscription_1 = Subscription.new("myapp_default", "key1", "MyClass1", {"bus_event_type" => "event_one"})
|
140
|
+
subscription_2 = Subscription.new("myapp_other_queue", "key2", "MyClass2", {"bus_event_type" => "event_two"})
|
141
|
+
|
142
|
+
list.add(subscription_1)
|
143
|
+
list.add(subscription_2)
|
144
|
+
|
145
|
+
Application.new("myapp").subscribe(list)
|
146
|
+
|
147
|
+
expect(QueueBus.redis { |redis| redis.hgetall("bus_app:myapp") }).to eq({
|
148
|
+
"key1" => "{\"queue_name\":\"myapp_default\",\"key\":\"key1\",\"class\":\"MyClass1\",\"matcher\":{\"bus_event_type\":\"event_one\"}}",
|
149
|
+
"key2" => "{\"queue_name\":\"myapp_other_queue\",\"key\":\"key2\",\"class\":\"MyClass2\",\"matcher\":{\"bus_event_type\":\"event_two\"}}"
|
150
|
+
})
|
110
151
|
|
111
|
-
|
152
|
+
Application.new("myapp").unsubscribe_queue("myapp_default")
|
112
153
|
|
113
|
-
|
114
|
-
|
154
|
+
expect(QueueBus.redis { |redis| redis.smembers("bus_apps") }).to eq(["myapp"])
|
155
|
+
expect(QueueBus.redis { |redis| redis.hgetall("bus_app:myapp") }).to eq({"key2" => "{\"queue_name\":\"myapp_other_queue\",\"key\":\"key2\",\"class\":\"MyClass2\",\"matcher\":{\"bus_event_type\":\"event_two\"}}"})
|
156
|
+
end
|
115
157
|
end
|
116
158
|
end
|
117
159
|
|
118
|
-
describe
|
119
|
-
it
|
120
|
-
expect(Application.new(
|
160
|
+
describe '#subscription_matches' do
|
161
|
+
it 'should return if it is there' do
|
162
|
+
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
163
|
|
122
|
-
subs = test_list(test_sub(
|
123
|
-
Application.new(
|
124
|
-
expect(Application.new(
|
164
|
+
subs = test_list(test_sub('one_x'), test_sub('one_y'), test_sub('one'), test_sub('two'))
|
165
|
+
Application.new('myapp').subscribe(subs)
|
166
|
+
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
167
|
|
126
|
-
expect(Application.new(
|
127
|
-
expect(Application.new(
|
168
|
+
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']])
|
169
|
+
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
170
|
end
|
129
171
|
|
130
|
-
it
|
131
|
-
subs = test_list(test_sub(
|
132
|
-
Application.new(
|
133
|
-
expect(Application.new(
|
172
|
+
it 'should handle * wildcards' do
|
173
|
+
subs = test_list(test_sub('one.+'), test_sub('one'), test_sub('one_.*'), test_sub('two'))
|
174
|
+
Application.new('myapp').subscribe(subs)
|
175
|
+
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
176
|
|
135
|
-
expect(Application.new(
|
136
|
-
expect(Application.new(
|
137
|
-
expect(Application.new(
|
177
|
+
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']])
|
178
|
+
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']])
|
179
|
+
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
180
|
end
|
139
181
|
|
140
|
-
it
|
141
|
-
subs = test_list(test_sub(/one.+/), test_sub(
|
142
|
-
Application.new(
|
143
|
-
expect(Application.new(
|
182
|
+
it 'should handle actual regular expressions' do
|
183
|
+
subs = test_list(test_sub(/one.+/), test_sub('one'), test_sub(/one_.*/), test_sub('two'))
|
184
|
+
Application.new('myapp').subscribe(subs)
|
185
|
+
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
186
|
|
145
|
-
expect(Application.new(
|
146
|
-
expect(Application.new(
|
147
|
-
expect(Application.new(
|
148
|
-
expect(Application.new(
|
187
|
+
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']])
|
188
|
+
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']])
|
189
|
+
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']])
|
190
|
+
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
191
|
end
|
150
192
|
end
|
151
193
|
end
|