ruby_rabbitmq_janus 4.0.0.pre.949167646 → 4.0.0.pre.1001345090

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +196 -11
  3. data/lib/rrj/errors/rabbit/rabbit.rb +34 -32
  4. data/lib/rrj/janus/responses/admin.rb +1 -1
  5. data/lib/rrj/janus/responses/response.rb +1 -1
  6. data/lib/rrj/process/thread_runner_concern.rb +1 -1
  7. data/lib/rrj/rabbit/publisher/admin.rb +1 -2
  8. data/lib/rrj/tools/bin/config.rb +4 -3
  9. data/lib/rrj/tools/gem/config/janus.rb +1 -1
  10. data/lib/rrj/tools/gem/config/queues.rb +4 -4
  11. data/lib/rrj/tools/gem/config/rabbit.rb +1 -1
  12. data/spec/config/database.rb +13 -1
  13. data/spec/config/initializer.rb +2 -4
  14. data/spec/ruby_rabbitmq_janus/janus/messages/message_spec.rb +0 -2
  15. data/spec/ruby_rabbitmq_janus/rabbit/{publisher/base_spec.rb → base_event_spec.rb} +2 -2
  16. data/spec/ruby_rabbitmq_janus/rabbit/listener/from_spec.rb +0 -1
  17. data/spec/ruby_rabbitmq_janus/rabbit/publisher/admin_spec.rb +0 -1
  18. data/spec/ruby_rabbitmq_janus/rabbit/publisher/exclusive_spec.rb +0 -1
  19. data/spec/ruby_rabbitmq_janus/rabbit/publisher/non_exclusive_spec.rb +0 -1
  20. data/spec/ruby_rabbitmq_janus/rrj_admin_add_token_spec.rb +0 -1
  21. data/spec/ruby_rabbitmq_janus/rrj_admin_allow_token_spec.rb +0 -1
  22. data/spec/ruby_rabbitmq_janus/rrj_admin_disallow_token_spec.rb +0 -1
  23. data/spec/ruby_rabbitmq_janus/rrj_admin_handle_info_spec.rb +0 -10
  24. data/spec/ruby_rabbitmq_janus/rrj_admin_list_handles_spec.rb +0 -10
  25. data/spec/ruby_rabbitmq_janus/rrj_admin_list_tokens_spec.rb +0 -1
  26. data/spec/ruby_rabbitmq_janus/rrj_admin_remove_token_spec.rb +0 -1
  27. data/spec/ruby_rabbitmq_janus/rrj_admin_set_libnice_debug_spec.rb +0 -1
  28. data/spec/ruby_rabbitmq_janus/rrj_admin_set_locking_debug_spec.rb +0 -1
  29. data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_colors_spec.rb +0 -1
  30. data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_level_spec.rb +0 -1
  31. data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_timestamps_spec.rb +0 -1
  32. data/spec/ruby_rabbitmq_janus/rrj_admin_set_no_media_timer_spec.rb +0 -1
  33. data/spec/ruby_rabbitmq_janus/rrj_admin_set_session_timeout_spec.rb +0 -1
  34. data/spec/ruby_rabbitmq_janus/rrj_admin_start_pcap_spec.rb +0 -10
  35. data/spec/ruby_rabbitmq_janus/rrj_admin_start_text2pcap_spec.rb +0 -10
  36. data/spec/ruby_rabbitmq_janus/rrj_admin_stop_pcap_spec.rb +0 -21
  37. data/spec/ruby_rabbitmq_janus/rrj_admin_stop_text2pcap_spec.rb +0 -21
  38. data/spec/spec_helper.rb +5 -2
  39. data/spec/support/actions.rb +26 -0
  40. data/spec/support/admin_actions.rb +26 -0
  41. data/tmp/coverage/index.html +21519 -0
  42. metadata +10 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '098099c6cac2131542add45f11a94ac0f3b40cdf9cbcd74ecd1128e110229df2'
4
- data.tar.gz: cbcb3d6e886adf01a204c7dd1df4bf9cea16296569a8085068ae995e523eb380
3
+ metadata.gz: 5210b75f77a8ba1740c4d1214226aa7cbbf4649b9dee74a43f49cf3e579813bd
4
+ data.tar.gz: 01604f74eb2a0fae1374f25439cb08279cbf2addbe1bdb61d032a7fa668614e0
5
5
  SHA512:
6
- metadata.gz: c6555c95fd15cffcd09f0e4ea63c2173786566d85194d576c32986f2258b6788f6157541523e640d63939246efa7f4b898c0d1636b151b7c2a07e5efa6ead641
7
- data.tar.gz: f45c6ab17d9e4138bcf55dcebe7f235639d2b607ffb70d5b404ce768d23492ef7b2699101a0f228d685730db3c65f7b1bd4bf7e72ae947a2851f12b389f7fcd7
6
+ metadata.gz: cd9bebe544f63f5c2c86a9f24bee316a3abd9e9dad088edeec0261f8b4bfadf42265fd53dbd16fd9b247804382bf54c29e905a194aff0d0439f5a1b6abf3271c
7
+ data.tar.gz: ceb76af8e220d8e3c11833b61841b2811d345b5a4d46bdd9d34a66eb65840ed3022d30a2cb7d817d02c80085c4aaa522f3217e5c6a6ba12d1e7f24d11c015cb1
data/Rakefile CHANGED
@@ -3,19 +3,204 @@
3
3
  require 'bundler/gem_tasks'
4
4
  require 'rspec/core/rake_task'
5
5
 
6
- # Exclude all spec with type :thread
7
- RSpec::Core::RakeTask.new(:spec)
8
-
9
- # Exclude all spec with type :thread
10
- RSpec::Core::RakeTask.new(:classic) do |t|
11
- t.rspec_opts = '--tag ~type:thread'
6
+ RSpec::Core::RakeTask.new(:config) do |t|
7
+ t.rspec_opts = '--tag name:config'
12
8
  end
13
9
 
14
- # Include just spec with type :thread
15
- RSpec::Core::RakeTask.new(:concurrency) do |t|
10
+ RSpec::Core::RakeTask.new(:thread) do |t|
16
11
  t.rspec_opts = '--tag type:thread'
17
12
  end
18
13
 
19
- task default: :spec
20
- task request: :classic
21
- task thread: :concurrency
14
+ RSpec::Core::RakeTask.new(:set_session_timeout) do |t|
15
+ t.rspec_opts = '--tag name:set_session_timeout'
16
+ end
17
+
18
+ RSpec::Core::RakeTask.new(:disallow_token) do |t|
19
+ t.rspec_opts = '--tag name:disallow_token'
20
+ end
21
+
22
+ RSpec::Core::RakeTask.new(:admin) do |t|
23
+ t.rspec_opts = '--tag name:admin'
24
+ end
25
+
26
+ RSpec::Core::RakeTask.new(:set_log_timestamps) do |t|
27
+ t.rspec_opts = '--tag name:set_log_timestamps'
28
+ end
29
+
30
+ RSpec::Core::RakeTask.new(:start_text2pcap) do |t|
31
+ t.rspec_opts = '--tag name:start_text2pcap'
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:set_log_colors) do |t|
35
+ t.rspec_opts = '--tag name:set_log_colors'
36
+ end
37
+
38
+ RSpec::Core::RakeTask.new(:stop_pcap) do |t|
39
+ t.rspec_opts = '--tag name:stop_pcap'
40
+ end
41
+
42
+ RSpec::Core::RakeTask.new(:set_no_media_timer) do |t|
43
+ t.rspec_opts = '--tag name:set_no_media_timer'
44
+ end
45
+
46
+ RSpec::Core::RakeTask.new(:pcap) do |t|
47
+ t.rspec_opts = '--tag name:pcap'
48
+ end
49
+
50
+ RSpec::Core::RakeTask.new(:attach) do |t|
51
+ t.rspec_opts = '--tag name:attach'
52
+ end
53
+
54
+ RSpec::Core::RakeTask.new(:list_sessions) do |t|
55
+ t.rspec_opts = '--tag name:list_sessions'
56
+ end
57
+
58
+ RSpec::Core::RakeTask.new(:create) do |t|
59
+ t.rspec_opts = '--tag name:create'
60
+ end
61
+
62
+ RSpec::Core::RakeTask.new(:event_admin) do |t|
63
+ t.rspec_opts = '--tag name:event_admin'
64
+ end
65
+
66
+ RSpec::Core::RakeTask.new(:info) do |t|
67
+ t.rspec_opts = '--tag name:info'
68
+ end
69
+
70
+ RSpec::Core::RakeTask.new(:add_token) do |t|
71
+ t.rspec_opts = '--tag name:add_token'
72
+ end
73
+
74
+ RSpec::Core::RakeTask.new(:set_log_level) do |t|
75
+ t.rspec_opts = '--tag name:set_log_level'
76
+ end
77
+
78
+ RSpec::Core::RakeTask.new(:set_locking_debug) do |t|
79
+ t.rspec_opts = '--tag name:set_locking_debug'
80
+ end
81
+
82
+ RSpec::Core::RakeTask.new(:remove_token) do |t|
83
+ t.rspec_opts = '--tag name:remove_token'
84
+ end
85
+
86
+ RSpec::Core::RakeTask.new(:answer) do |t|
87
+ t.rspec_opts = '--tag name:answer'
88
+ end
89
+
90
+ RSpec::Core::RakeTask.new(:offer) do |t|
91
+ t.rspec_opts = '--tag name:offer'
92
+ end
93
+
94
+ RSpec::Core::RakeTask.new(:set_libnice_debug) do |t|
95
+ t.rspec_opts = '--tag name:set_libnice_debug'
96
+ end
97
+
98
+ RSpec::Core::RakeTask.new(:allow_token) do |t|
99
+ t.rspec_opts = '--tag name:allow_token'
100
+ end
101
+
102
+ RSpec::Core::RakeTask.new(:janus_instance) do |t|
103
+ t.rspec_opts = '--tag name:janus_instance'
104
+ end
105
+
106
+ RSpec::Core::RakeTask.new(:detach) do |t|
107
+ t.rspec_opts = '--tag name:detach'
108
+ end
109
+
110
+ RSpec::Core::RakeTask.new(:destroy) do |t|
111
+ t.rspec_opts = '--tag name:destroy'
112
+ end
113
+
114
+ RSpec::Core::RakeTask.new(:trickles) do |t|
115
+ t.rspec_opts = '--tag name:trickles'
116
+ end
117
+
118
+ RSpec::Core::RakeTask.new(:standard) do |t|
119
+ t.rspec_opts = '--tag name:standard'
120
+ end
121
+
122
+ RSpec::Core::RakeTask.new(:message) do |t|
123
+ t.rspec_opts = '--tag name:message'
124
+ end
125
+
126
+ RSpec::Core::RakeTask.new(:errors) do |t|
127
+ t.rspec_opts = '--tag name:'
128
+ end
129
+
130
+ RSpec::Core::RakeTask.new(:event) do |t|
131
+ t.rspec_opts = '--tag name:event'
132
+ end
133
+
134
+ RSpec::Core::RakeTask.new(:response) do |t|
135
+ t.rspec_opts = '--tag name:response'
136
+ end
137
+
138
+ RSpec::Core::RakeTask.new(:list_handles) do |t|
139
+ t.rspec_opts = '--tag name:list_handles'
140
+ end
141
+
142
+ RSpec::Core::RakeTask.new(:list_tokens) do |t|
143
+ t.rspec_opts = '--tag name:list_tokens'
144
+ end
145
+
146
+ RSpec::Core::RakeTask.new(:keepalive) do |t|
147
+ t.rspec_opts = '--tag name:keepalive'
148
+ end
149
+
150
+ RSpec::Core::RakeTask.new(:logger) do |t|
151
+ t.rspec_opts = '--tag name:logger'
152
+ end
153
+
154
+ RSpec::Core::RakeTask.new(:replace) do |t|
155
+ t.rspec_opts = '--tag name:replace'
156
+ end
157
+
158
+ RSpec::Core::RakeTask.new(:set_max_nack_queue) do |t|
159
+ t.rspec_opts = '--tag name:set_max_nack_queue'
160
+ end
161
+
162
+ RSpec::Core::RakeTask.new(:tricke) do |t|
163
+ t.rspec_opts = '--tag name:tricke'
164
+ end
165
+
166
+ RSpec::Core::RakeTask.new(:handle_info) do |t|
167
+ t.rspec_opts = '--tag name:handle_info'
168
+ end
169
+
170
+ RSpec::Core::RakeTask.new(:connect) do |t|
171
+ t.rspec_opts = '--tag name:connect'
172
+ end
173
+
174
+ RSpec::Core::RakeTask.new(:listener) do |t|
175
+ t.rspec_opts = '--tag name:listener'
176
+ end
177
+
178
+ RSpec::Core::RakeTask.new(:base_event) do |t|
179
+ t.rspec_opts = '--tag name:base_event'
180
+ end
181
+
182
+ RSpec::Core::RakeTask.new(:publisher_admin) do |t|
183
+ t.rspec_opts = '--tag name:publisher_admin'
184
+ end
185
+
186
+ RSpec::Core::RakeTask.new(:exclusive) do |t|
187
+ t.rspec_opts = '--tag name:exclusive'
188
+ end
189
+
190
+ RSpec::Core::RakeTask.new(:non_exclusive) do |t|
191
+ t.rspec_opts = '--tag name:non_exclusive'
192
+ end
193
+
194
+ RSpec::Core::RakeTask.new(:propertie) do |t|
195
+ t.rspec_opts = '--tag name:propertie'
196
+ end
197
+
198
+ task spec: %I[config thread set_session_timeout disallow_token admin
199
+ set_log_timestamps set_log_colors start_text2pcap attach
200
+ set_no_media_timer stop_pcap pcap list_sessions create
201
+ event_admin info add_token set_log_level set_locking_debug
202
+ remove_token answer offer set_libnice_debug allow_token
203
+ janus_instance detach destroy trickles standard message errors
204
+ event response list_handles list_tokens keepalive logger
205
+ replace set_max_nack_queue tricke handle_info connect listener
206
+ base_event publisher_admin non_exclusive exclusive propertie]
@@ -2,50 +2,52 @@
2
2
 
3
3
  module RubyRabbitmqJanus
4
4
  module Errors
5
- # Define a super class for all error in module Rabbit
6
- class BaseRabbit < RRJError
7
- def initialize(message, level = :fatal)
8
- super "[Rabbit]#{message}", level
5
+ module Rabbit
6
+ # Define a super class for all error in module Rabbit
7
+ class Base < RRJError
8
+ def initialize(message, level = :fatal)
9
+ super "[Rabbit]#{message}", level
10
+ end
9
11
  end
10
- end
11
12
 
12
- module Connect
13
- # Error when transaction hs no block
14
- class MissingAction < RubyRabbitmqJanus::Errors::BaseRabbit
15
- def initialize
16
- super 'Transaction failed, missing block'
13
+ module Connect
14
+ # Error when transaction hs no block
15
+ class MissingAction < RubyRabbitmqJanus::Errors::Rabbit::Base
16
+ def initialize
17
+ super 'Transaction failed, missing block'
18
+ end
17
19
  end
18
- end
19
20
 
20
- # Error When transaction timeout
21
- class TransactionTimeout < RubyRabbitmqJanus::Errors::BaseRabbit
22
- def initialize(error)
23
- super error
21
+ # Error When transaction timeout
22
+ class TransactionTimeout < RubyRabbitmqJanus::Errors::Rabbit::Base
23
+ def initialize(error)
24
+ super error
25
+ end
24
26
  end
25
27
  end
26
- end
27
28
 
28
- module Listener
29
- # Error when response is empty
30
- class ResponseEmpty < RubyRabbitmqJanus::Errors::BaseRabbit
31
- def initialize(response)
32
- super "Response is empty ! (#{response})"
29
+ module Listener
30
+ # Error when response is empty
31
+ class ResponseEmpty < RubyRabbitmqJanus::Errors::Rabbit::Base
32
+ def initialize(response)
33
+ super "Response is empty ! (#{response})"
34
+ end
33
35
  end
34
- end
35
36
 
36
- # Error when response is nil
37
- class ResponseNil < RubyRabbitmqJanus::Errors::BaseRabbit
38
- def initialize(response)
39
- super "Response is nil ! (#{response})"
37
+ # Error when response is nil
38
+ class ResponseNil < RubyRabbitmqJanus::Errors::Rabbit::Base
39
+ def initialize(response)
40
+ super "Response is nil ! (#{response})"
41
+ end
40
42
  end
41
43
  end
42
- end
43
44
 
44
- module Publisher
45
- # Error when correlation string is not equal
46
- class TestCorrelation < RubyRabbitmqJanus::Errors::BaseRabbit
47
- def initialize(message, propertie)
48
- super "Correlation doesn't equal (msg: #{message}) != (prp: #{propertie})"
45
+ module Publisher
46
+ # Error when correlation string is not equal
47
+ class TestCorrelation < RubyRabbitmqJanus::Errors::Rabbit::Base
48
+ def initialize(message, propertie)
49
+ super "Correlation doesn't equal (msg: #{message}) != (prp: #{propertie})"
50
+ end
49
51
  end
50
52
  end
51
53
  end
@@ -6,7 +6,7 @@ module RubyRabbitmqJanus
6
6
  # Response for admin request
7
7
  #
8
8
  # @see Example request response https://janus.conf.meetecho.com/docs/admin.html
9
- class Admin < Standard
9
+ class Admin < Event
10
10
  # @return [Array] List of sessions running in Janus Instance.
11
11
  def sessions
12
12
  read_data(__method__.to_s)
@@ -95,6 +95,6 @@ end
95
95
 
96
96
  require 'rrj/janus/responses/error'
97
97
  require 'rrj/janus/responses/standard'
98
- require 'rrj/janus/responses/admin'
99
98
  require 'rrj/janus/responses/event'
99
+ require 'rrj/janus/responses/admin'
100
100
  require 'rrj/janus/responses/rspec'
@@ -38,7 +38,7 @@ module RubyRabbitmqJanus
38
38
  loop do
39
39
  @thread.thread_variable_get(name_publisher)
40
40
  .listen_events(&block)
41
- rescue => exception
41
+ rescue StandardError => exception
42
42
  ::Log.warn exception
43
43
  end
44
44
  end
@@ -12,8 +12,7 @@ module RubyRabbitmqJanus
12
12
  #
13
13
  # @param [String] exchange Exchange used for the transaction
14
14
  def initialize(exchange)
15
- @reply = exchange.queue('', exclusive: true)
16
- # @reply = exchange.queue(Tools::Config.instance.queue_admin_from)
15
+ @reply = exchange.queue(Tools::Config.instance.queue_admin_from)
17
16
  super(exchange)
18
17
  subscribe_to_queue
19
18
  end
@@ -14,7 +14,8 @@ begin
14
14
  Config.load_and_set_settings(config_conf)
15
15
  end
16
16
  rescue LoadError => exception
17
- p "Don't use gem config : #{exception}"
18
- rescue => exception
19
- p exception
17
+ puts 'Custom configuration is not present,' \
18
+ " use default configuration. (#{exception})"
19
+ rescue StandardError => exception
20
+ puts exception
20
21
  end
@@ -19,7 +19,7 @@ module RubyRabbitmqJanus
19
19
  # @return [String] read configuration for plugin with index
20
20
  def plugin_at(index = 0)
21
21
  @options['janus']['plugins'][index].to_s
22
- rescue
22
+ rescue StandardError
23
23
  raise RubyRabbitmqJanus::Errors::Tools::Plugins, index
24
24
  end
25
25
 
@@ -11,28 +11,28 @@ module RubyRabbitmqJanus
11
11
  # @return [String] Get to name queue_from (pattern)
12
12
  def queue_from
13
13
  @options['queues']['standard']['from'].to_s
14
- rescue
14
+ rescue StandardError
15
15
  raise RubyRabbitmqJanus::Errors::Tools::QueueFrom
16
16
  end
17
17
 
18
18
  # @return [String] Get to name queue_to (pattern)
19
19
  def queue_to
20
20
  @options['queues']['standard']['to'].to_s
21
- rescue
21
+ rescue StandardError
22
22
  raise RubyRabbitmqJanus::Errors::Tools::QueueTo
23
23
  end
24
24
 
25
25
  # @return [String] Get to name queue_admin_from (pattern)
26
26
  def queue_admin_from
27
27
  @options['queues']['admin']['from'].to_s
28
- rescue
28
+ rescue StandardError
29
29
  raise RubyRabbitmqJanus::Errors::Tools::QueueAdminFrom
30
30
  end
31
31
 
32
32
  # @return [String] Get to name queue_admin_from (pattern)
33
33
  def queue_admin_to
34
34
  @options['queues']['admin']['to'].to_s
35
- rescue
35
+ rescue StandardError
36
36
  raise RubyRabbitmqJanus::Errors::Tools::QueueAdminTo
37
37
  end
38
38
  end
@@ -13,7 +13,7 @@ module RubyRabbitmqJanus
13
13
  # @return [String] read configuration fir queue admin
14
14
  def admin_pass
15
15
  @options['rabbit']['admin_pass'].to_s
16
- rescue
16
+ rescue StandardError
17
17
  raise RubyRabbitmqJanus::Errors::Tools::AdminPassword
18
18
  end
19
19
 
@@ -26,6 +26,18 @@ def load_mongo
26
26
  end
27
27
 
28
28
  # :reek:UtilityFunction
29
- def after_load_database
29
+ def clean_db_and_queues
30
30
  DatabaseCleaner.clean
31
+
32
+ rb = RubyRabbitmqJanus::Rabbit::Connect.new
33
+ rb.start
34
+
35
+ channel = rb.channel
36
+
37
+ %w[from-janus from-janus-admin].each do |queue_name|
38
+ queue = channel.queue(queue_name, auto_delete: false)
39
+ queue.purge
40
+ end
41
+
42
+ rb.close
31
43
  end
@@ -10,7 +10,5 @@ class EventTest
10
10
  end
11
11
  end
12
12
 
13
- # Initialize listener
14
- # actions = EventTest.new.actions
15
- # @event = RubyRabbitmqJanus::Process::Concurrencies::Event.new
16
- # @event.run(&actions)
13
+ require_relative '../support/actions'
14
+ require_relative '../support/admin_actions'