queue-bus 0.6.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/.rubocop.yml +35 -0
- data/CHANGELOG.md +38 -0
- data/Gemfile +4 -2
- data/README.mdown +16 -0
- data/Rakefile +2 -0
- data/lib/queue-bus.rb +15 -13
- 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/config.rb +64 -66
- 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 +27 -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 -17
- 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/config_spec.rb +116 -40
- 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 +12 -7
- 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 +21 -6
data/lib/queue_bus/tasks.rb
CHANGED
@@ -1,27 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# require 'queue_bus/tasks'
|
2
|
-
#
|
4
|
+
# A useful set of rake tasks for managing your bus
|
3
5
|
|
6
|
+
# rubocop:disable Metrics/BlockLength
|
4
7
|
namespace :queuebus do
|
5
|
-
|
6
|
-
|
7
|
-
task :subscribe => [ :preload ] do
|
8
|
+
desc 'Subscribes this application to QueueBus events'
|
9
|
+
task subscribe: [:preload] do
|
8
10
|
manager = ::QueueBus::TaskManager.new(true)
|
9
11
|
count = manager.subscribe!
|
10
|
-
raise
|
12
|
+
raise 'No subscriptions created' if count == 0
|
11
13
|
end
|
12
14
|
|
13
|
-
desc
|
14
|
-
task :
|
15
|
+
desc 'Unsubscribes this application from QueueBus events'
|
16
|
+
task unsubscribe: [:preload] do
|
15
17
|
manager = ::QueueBus::TaskManager.new(true)
|
16
18
|
count = manager.unsubscribe!
|
17
|
-
puts
|
19
|
+
puts 'No subscriptions unsubscribed' if count == 0
|
18
20
|
end
|
19
21
|
|
20
|
-
desc
|
21
|
-
task :
|
22
|
+
desc 'List QueueBus queues that need worked'
|
23
|
+
task queues: [:preload] do
|
22
24
|
manager = ::QueueBus::TaskManager.new(false)
|
23
25
|
queues = manager.queue_names + ['bus_incoming']
|
24
|
-
puts queues.join(
|
26
|
+
puts queues.join(', ')
|
27
|
+
end
|
28
|
+
|
29
|
+
desc 'list time based subscriptions'
|
30
|
+
task list_scheduled: [:preload] do
|
31
|
+
scheduled_list = QueueBus::Application.all.flat_map do |app|
|
32
|
+
app.send(:subscriptions).all
|
33
|
+
.select { |s| s.matcher.filters['bus_event_type'] == 'heartbeat_minutes' }
|
34
|
+
end
|
35
|
+
scheduled_text_list = scheduled_list.collect do |e|
|
36
|
+
[e.key, e.matcher.filters['hour'] || '*', e.matcher.filters['minute'] || '*']
|
37
|
+
end
|
38
|
+
puts 'key, hour, minute'
|
39
|
+
puts scheduled_text_list.sort_by { |(_, hour, minute)| [hour.to_i, minute.to_i] }.map(&:to_csv)
|
25
40
|
end
|
26
41
|
|
27
42
|
# Preload app files if this is Rails
|
@@ -30,3 +45,4 @@ namespace :queuebus do
|
|
30
45
|
require 'queue-bus'
|
31
46
|
end
|
32
47
|
end
|
48
|
+
# rubocop:enable Metrics/BlockLength
|
data/lib/queue_bus/util.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'multi_json'
|
2
4
|
|
3
5
|
module QueueBus
|
@@ -30,14 +32,14 @@ module QueueBus
|
|
30
32
|
raise DecodeException, e.message, e.backtrace
|
31
33
|
end
|
32
34
|
end
|
33
|
-
|
35
|
+
|
34
36
|
def underscore(camel_cased_word)
|
35
37
|
word = camel_cased_word.to_s.dup
|
36
38
|
word.gsub!('::', '/')
|
37
39
|
# word.gsub!(/(?:([A-Za-z\d])|^)(#{inflections.acronym_regex})(?=\b|[^a-z])/) { "#{$1}#{$1 && '_'}#{$2.downcase}" }
|
38
|
-
word.gsub!(/([A-Z\d]+)([A-Z][a-z])/,'\1_\2')
|
39
|
-
word.gsub!(/([a-z\d])([A-Z])/,'\1_\2')
|
40
|
-
word.tr!(
|
40
|
+
word.gsub!(/([A-Z\d]+)([A-Z][a-z])/, '\1_\2')
|
41
|
+
word.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
|
42
|
+
word.tr!('-', '_')
|
41
43
|
word.downcase!
|
42
44
|
word
|
43
45
|
end
|
@@ -53,11 +55,11 @@ module QueueBus
|
|
53
55
|
# string = string.sub(/^[a-z\d]*/) { inflections.acronyms[$&] || $&.capitalize }
|
54
56
|
string = string.sub(/^[a-z\d]*/) { $&.capitalize }
|
55
57
|
# string.gsub!(/(?:_|(\/))([a-z\d]*)/i) { "#{$1}#{inflections.acronyms[$2] || $2.capitalize}" }
|
56
|
-
string.gsub!(
|
57
|
-
string.gsub!(
|
58
|
+
string.gsub!(%r{(?:_|(/))([a-z\d]*)}i) { "#{Regexp.last_match(1)}#{Regexp.last_match(2).capitalize}" }
|
59
|
+
string.gsub!(%r{/}, '::')
|
58
60
|
string
|
59
61
|
end
|
60
|
-
|
62
|
+
|
61
63
|
def constantize(camel_cased_word)
|
62
64
|
names = camel_cased_word.split('::')
|
63
65
|
names.shift if names.empty? || names.first.empty?
|
@@ -75,6 +77,7 @@ module QueueBus
|
|
75
77
|
constant = constant.ancestors.inject do |const, ancestor|
|
76
78
|
break const if ancestor == Object
|
77
79
|
break ancestor if ancestor.const_defined?(name, false)
|
80
|
+
|
78
81
|
const
|
79
82
|
end
|
80
83
|
|
@@ -84,4 +87,4 @@ module QueueBus
|
|
84
87
|
end
|
85
88
|
end
|
86
89
|
end
|
87
|
-
end
|
90
|
+
end
|
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,32 +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(
|
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')
|
32
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,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
|