ruby_rabbitmq_janus 4.0.0.pre.946565704 → 4.0.0.pre.1001132533
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.
- checksums.yaml +4 -4
- data/README.md +8 -1
- data/Rakefile +196 -11
- data/lib/rrj/janus/responses/admin.rb +1 -1
- data/lib/rrj/janus/responses/response.rb +1 -1
- data/lib/rrj/process/thread_runner_concern.rb +1 -1
- data/lib/rrj/rabbit/publisher/admin.rb +1 -2
- data/lib/rrj/tools/bin/config.rb +4 -3
- data/lib/rrj/tools/gem/config/janus.rb +1 -1
- data/lib/rrj/tools/gem/config/queues.rb +4 -4
- data/lib/rrj/tools/gem/config/rabbit.rb +1 -1
- data/lib/rrj/tools/replaces/replace.rb +1 -3
- data/spec/config/database.rb +13 -1
- data/spec/config/initializer.rb +2 -4
- data/spec/ruby_rabbitmq_janus/janus/messages/message_spec.rb +0 -2
- data/spec/ruby_rabbitmq_janus/rabbit/{publisher/base_spec.rb → base_event_spec.rb} +2 -2
- data/spec/ruby_rabbitmq_janus/rabbit/listener/from_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rabbit/publisher/admin_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rabbit/publisher/exclusive_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rabbit/publisher/non_exclusive_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_add_token_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_allow_token_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_disallow_token_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_handle_info_spec.rb +0 -10
- data/spec/ruby_rabbitmq_janus/rrj_admin_list_handles_spec.rb +0 -10
- data/spec/ruby_rabbitmq_janus/rrj_admin_list_tokens_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_remove_token_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_set_libnice_debug_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_set_locking_debug_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_colors_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_level_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_timestamps_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_set_no_media_timer_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_set_session_timeout_spec.rb +0 -1
- data/spec/ruby_rabbitmq_janus/rrj_admin_start_pcap_spec.rb +0 -10
- data/spec/ruby_rabbitmq_janus/rrj_admin_start_text2pcap_spec.rb +0 -10
- data/spec/ruby_rabbitmq_janus/rrj_admin_stop_pcap_spec.rb +0 -21
- data/spec/ruby_rabbitmq_janus/rrj_admin_stop_text2pcap_spec.rb +0 -21
- data/spec/spec_helper.rb +1 -1
- data/spec/support/actions.rb +26 -0
- data/spec/support/admin_actions.rb +26 -0
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd2d7317eb7181b723b6baa16fcb067e53a36fb5987299c554d42d9e688bcf3c
|
4
|
+
data.tar.gz: 90e0b0b234075667eb5ecdfa5ad008aa1e896eaa9b466d84873dfe30c0a68975
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d40f13710b58f769f028b94252d8039350baf0954a8df0dff4ee8d0abf5d96edd11a4dd86e44d5a4d7cec2281554da06d3d133108ab9dc78cbd9e625b18982e4
|
7
|
+
data.tar.gz: a26df2b64540d038fccac299e7ac4a9f289d91283e2a1c0d50c8c89ec387b657dab56714075f70c8406904796f1c632d8506b6769dca3b39b2e14c46b44ce193
|
data/README.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
|
-
# Ruby RabbitMQ Janus
|
1
|
+
# Ruby RabbitMQ Janus
|
2
|
+
[](https://github.com/dazzl-tv/ruby-rabbitmq-janus/actions/workflows/rspec.yml)
|
3
|
+
[](https://github.com/dazzl-tv/ruby-rabbitmq-janus/actions/workflows/linter.yml)
|
4
|
+
[](https://badge.fury.io/rb/ruby_rabbitmq_janus)
|
5
|
+
[](https://inch-ci.org/github/dazzl-tv/ruby-rabbitmq-janus)
|
6
|
+
[](https://codeclimate.com/github/dazzl-tv/ruby-rabbitmq-janus/maintainability)
|
7
|
+
[](https://codeclimate.com/github/dazzl-tv/ruby-rabbitmq-janus/test_coverage)
|
8
|
+
[](https://snyk.io/test/github/dazzl-tv/ruby-rabbitmq-janus)
|
2
9
|
|
3
10
|
Ruby Gem for Janus WebRTC Gateway integration using RabbitMQ message queue
|
4
11
|
|
data/Rakefile
CHANGED
@@ -3,19 +3,204 @@
|
|
3
3
|
require 'bundler/gem_tasks'
|
4
4
|
require 'rspec/core/rake_task'
|
5
5
|
|
6
|
-
|
7
|
-
|
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
|
-
|
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
|
-
|
20
|
-
|
21
|
-
|
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]
|
@@ -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 <
|
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)
|
@@ -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(
|
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
|
data/lib/rrj/tools/bin/config.rb
CHANGED
@@ -14,7 +14,8 @@ begin
|
|
14
14
|
Config.load_and_set_settings(config_conf)
|
15
15
|
end
|
16
16
|
rescue LoadError => exception
|
17
|
-
|
18
|
-
|
19
|
-
|
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
|
@@ -46,8 +46,7 @@ module RubyRabbitmqJanus
|
|
46
46
|
end
|
47
47
|
|
48
48
|
def replace_other
|
49
|
-
|
50
|
-
running_hash(rewrite_key_to_string(values))
|
49
|
+
running_hash(rewrite_key_to_string(@opts['replace'])[0].to_h)
|
51
50
|
end
|
52
51
|
|
53
52
|
def add_other
|
@@ -56,7 +55,6 @@ module RubyRabbitmqJanus
|
|
56
55
|
end
|
57
56
|
|
58
57
|
def rewrite_key_to_string(node)
|
59
|
-
p "Rewrite key to string"
|
60
58
|
[
|
61
59
|
node.map do |key, value|
|
62
60
|
[key.to_s, value?(value)]
|
data/spec/config/database.rb
CHANGED
@@ -26,6 +26,18 @@ def load_mongo
|
|
26
26
|
end
|
27
27
|
|
28
28
|
# :reek:UtilityFunction
|
29
|
-
def
|
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
|
data/spec/config/initializer.rb
CHANGED
@@ -10,7 +10,5 @@ class EventTest
|
|
10
10
|
end
|
11
11
|
end
|
12
12
|
|
13
|
-
|
14
|
-
|
15
|
-
# @event = RubyRabbitmqJanus::Process::Concurrencies::Event.new
|
16
|
-
# @event.run(&actions)
|
13
|
+
require_relative '../support/actions'
|
14
|
+
require_relative '../support/admin_actions'
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
require 'spec_helper'
|
4
4
|
|
5
|
-
describe RubyRabbitmqJanus::Rabbit::
|
5
|
+
describe RubyRabbitmqJanus::Rabbit::BaseEvent, type: :rabbit,
|
6
6
|
name: :base_event do
|
7
|
-
let(:publish) {
|
7
|
+
let(:publish) { described_class.new }
|
8
8
|
|
9
9
|
describe 'BaseEvent' do
|
10
10
|
describe '#new' do
|
@@ -4,7 +4,6 @@ require 'spec_helper'
|
|
4
4
|
|
5
5
|
describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
6
6
|
level: :admin,
|
7
|
-
broken: true,
|
8
7
|
name: :handle_info do
|
9
8
|
before { helper_janus_instance_without_token }
|
10
9
|
|
@@ -20,14 +19,5 @@ describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
|
20
19
|
|
21
20
|
include_examples 'when transaction admin exception'
|
22
21
|
end
|
23
|
-
|
24
|
-
context 'when session/handle exist' do
|
25
|
-
before { helper_janus_instance_create_handle }
|
26
|
-
|
27
|
-
let(:info) { :info }
|
28
|
-
let(:info_type) { Hash }
|
29
|
-
|
30
|
-
include_examples 'when transaction admin success info'
|
31
|
-
end
|
32
22
|
end
|
33
23
|
end
|
@@ -4,7 +4,6 @@ require 'spec_helper'
|
|
4
4
|
|
5
5
|
describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
6
6
|
level: :admin,
|
7
|
-
broken: true,
|
8
7
|
name: :list_handles do
|
9
8
|
before { helper_janus_instance_without_token }
|
10
9
|
|
@@ -20,14 +19,5 @@ describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
|
20
19
|
|
21
20
|
include_examples 'when transaction admin exception'
|
22
21
|
end
|
23
|
-
|
24
|
-
context 'when session/handle exist' do
|
25
|
-
before { helper_janus_instance_create_handle }
|
26
|
-
|
27
|
-
let(:info) { :handles }
|
28
|
-
let(:info_type) { Array }
|
29
|
-
|
30
|
-
include_examples 'when transaction admin success info'
|
31
|
-
end
|
32
22
|
end
|
33
23
|
end
|
@@ -4,7 +4,6 @@ require 'spec_helper'
|
|
4
4
|
|
5
5
|
describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
6
6
|
level: :admin,
|
7
|
-
broken: true,
|
8
7
|
name: :pcap do
|
9
8
|
before { helper_janus_instance_without_token }
|
10
9
|
|
@@ -26,14 +25,5 @@ describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
|
26
25
|
|
27
26
|
include_examples 'when transaction admin exception'
|
28
27
|
end
|
29
|
-
|
30
|
-
context 'when session/handle exist' do
|
31
|
-
before { helper_janus_instance_create_handle }
|
32
|
-
|
33
|
-
let(:info) { :janus }
|
34
|
-
let(:info_type) { String }
|
35
|
-
|
36
|
-
include_examples 'when transaction admin success info'
|
37
|
-
end
|
38
28
|
end
|
39
29
|
end
|
@@ -4,7 +4,6 @@ require 'spec_helper'
|
|
4
4
|
|
5
5
|
describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
6
6
|
level: :admin,
|
7
|
-
broken: true,
|
8
7
|
name: :start_text2pcap do
|
9
8
|
before { helper_janus_instance_without_token }
|
10
9
|
|
@@ -26,14 +25,5 @@ describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
|
26
25
|
|
27
26
|
include_examples 'when transaction admin exception'
|
28
27
|
end
|
29
|
-
|
30
|
-
context 'when session/handle exist' do
|
31
|
-
before { helper_janus_instance_create_handle }
|
32
|
-
|
33
|
-
let(:info) { :janus }
|
34
|
-
let(:info_type) { String }
|
35
|
-
|
36
|
-
include_examples 'when transaction admin success info'
|
37
|
-
end
|
38
28
|
end
|
39
29
|
end
|
@@ -4,7 +4,6 @@ require 'spec_helper'
|
|
4
4
|
|
5
5
|
describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
6
6
|
level: :admin,
|
7
|
-
broken: true,
|
8
7
|
name: :stop_pcap do
|
9
8
|
before { helper_janus_instance_without_token }
|
10
9
|
|
@@ -20,25 +19,5 @@ describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
|
20
19
|
|
21
20
|
include_examples 'when transaction admin exception'
|
22
21
|
end
|
23
|
-
|
24
|
-
context 'when session/handle exist' do
|
25
|
-
before { helper_janus_instance_create_handle }
|
26
|
-
|
27
|
-
context "with pcap don't started" do
|
28
|
-
let(:exception_class) { RubyRabbitmqJanus::Errors::Janus::Responses::Unknown }
|
29
|
-
let(:exception_message) { '[490] Reason : Capture not started' }
|
30
|
-
|
31
|
-
include_examples 'when transaction admin exception'
|
32
|
-
end
|
33
|
-
|
34
|
-
context 'with pcap started' do
|
35
|
-
before { helper_janus_start_pcap }
|
36
|
-
|
37
|
-
let(:info) { :janus }
|
38
|
-
let(:info_type) { String }
|
39
|
-
|
40
|
-
include_examples 'when transaction admin success info'
|
41
|
-
end
|
42
|
-
end
|
43
22
|
end
|
44
23
|
end
|
@@ -4,7 +4,6 @@ require 'spec_helper'
|
|
4
4
|
|
5
5
|
describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
6
6
|
level: :admin,
|
7
|
-
broken: true,
|
8
7
|
name: :pcap do
|
9
8
|
before { helper_janus_instance_without_token }
|
10
9
|
|
@@ -20,25 +19,5 @@ describe RubyRabbitmqJanus::RRJAdmin, type: :request,
|
|
20
19
|
|
21
20
|
include_examples 'when transaction admin exception'
|
22
21
|
end
|
23
|
-
|
24
|
-
context 'when session/handle exist' do
|
25
|
-
before { helper_janus_instance_create_handle }
|
26
|
-
|
27
|
-
context "with pcap don't started" do
|
28
|
-
let(:exception_class) { RubyRabbitmqJanus::Errors::Janus::Responses::Unknown }
|
29
|
-
let(:exception_message) { '[490] Reason : Capture not started' }
|
30
|
-
|
31
|
-
include_examples 'when transaction admin exception'
|
32
|
-
end
|
33
|
-
|
34
|
-
context 'with pcap started' do
|
35
|
-
before { helper_janus_start_pcap }
|
36
|
-
|
37
|
-
let(:info) { :janus }
|
38
|
-
let(:info_type) { String }
|
39
|
-
|
40
|
-
include_examples 'when transaction admin success info'
|
41
|
-
end
|
42
|
-
end
|
43
22
|
end
|
44
23
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -87,7 +87,7 @@ RSpec.configure do |config|
|
|
87
87
|
# Clean database before execute an example
|
88
88
|
DatabaseCleaner.strategy = ENV['MONGO'] == 'true' ? :deletion : :truncation
|
89
89
|
config.before do |example|
|
90
|
-
|
90
|
+
clean_db_and_queues unless example.metadata[:type].eql?(:tools)
|
91
91
|
end
|
92
92
|
|
93
93
|
# Use timeout for requester
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Execute this code when janus return an events in standard queue
|
4
|
+
class Actions
|
5
|
+
def initialize
|
6
|
+
puts 'Initialize listener Actions'
|
7
|
+
end
|
8
|
+
|
9
|
+
# Default method using for sending a block of code
|
10
|
+
def actions
|
11
|
+
response = nil
|
12
|
+
|
13
|
+
lambda do |reason, data|
|
14
|
+
puts "Execute block code with reason : #{reason}"
|
15
|
+
break response = data
|
16
|
+
end
|
17
|
+
|
18
|
+
response
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def case_events(data)
|
24
|
+
puts "Event : #{data}"
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Execute this code when janus return an events in admin queue
|
4
|
+
class AdminActions
|
5
|
+
def initialize
|
6
|
+
puts '[admin] Initialize listener AdminActions'
|
7
|
+
end
|
8
|
+
|
9
|
+
# Default method using for sending a block of code
|
10
|
+
def actions
|
11
|
+
response = nil
|
12
|
+
|
13
|
+
lambda do |_reason, data|
|
14
|
+
puts "[admin] Execute block code with reason : #{reason}"
|
15
|
+
case_events(data.to_hash)
|
16
|
+
end
|
17
|
+
|
18
|
+
response
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def case_events(data)
|
24
|
+
puts "[admin] Event : #{data}"
|
25
|
+
end
|
26
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_rabbitmq_janus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.0.pre.
|
4
|
+
version: 4.0.0.pre.1001132533
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- VAILLANT Jeremy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -424,14 +424,14 @@ dependencies:
|
|
424
424
|
requirements:
|
425
425
|
- - "~>"
|
426
426
|
- !ruby/object:Gem::Version
|
427
|
-
version: '2.
|
427
|
+
version: '2.19'
|
428
428
|
type: :runtime
|
429
429
|
prerelease: false
|
430
430
|
version_requirements: !ruby/object:Gem::Requirement
|
431
431
|
requirements:
|
432
432
|
- - "~>"
|
433
433
|
- !ruby/object:Gem::Version
|
434
|
-
version: '2.
|
434
|
+
version: '2.19'
|
435
435
|
- !ruby/object:Gem::Dependency
|
436
436
|
name: key_path
|
437
437
|
requirement: !ruby/object:Gem::Requirement
|
@@ -663,12 +663,12 @@ files:
|
|
663
663
|
- spec/ruby_rabbitmq_janus/process/concurrencies/concurrency_spec.rb
|
664
664
|
- spec/ruby_rabbitmq_janus/process/concurrencies/event_admin_spec.rb
|
665
665
|
- spec/ruby_rabbitmq_janus/process/concurrencies/event_spec.rb
|
666
|
+
- spec/ruby_rabbitmq_janus/rabbit/base_event_spec.rb
|
666
667
|
- spec/ruby_rabbitmq_janus/rabbit/connect_spec.rb
|
667
668
|
- spec/ruby_rabbitmq_janus/rabbit/listener/from_spec.rb
|
668
669
|
- spec/ruby_rabbitmq_janus/rabbit/propertie_instance_classic_spec.rb
|
669
670
|
- spec/ruby_rabbitmq_janus/rabbit/propertie_instance_token_spec.rb
|
670
671
|
- spec/ruby_rabbitmq_janus/rabbit/publisher/admin_spec.rb
|
671
|
-
- spec/ruby_rabbitmq_janus/rabbit/publisher/base_spec.rb
|
672
672
|
- spec/ruby_rabbitmq_janus/rabbit/publisher/exclusive_spec.rb
|
673
673
|
- spec/ruby_rabbitmq_janus/rabbit/publisher/non_exclusive_spec.rb
|
674
674
|
- spec/ruby_rabbitmq_janus/rrj_admin_add_token_spec.rb
|
@@ -714,6 +714,8 @@ files:
|
|
714
714
|
- spec/ruby_rabbitmq_janus/tools/replaces/session_spec.rb
|
715
715
|
- spec/ruby_rabbitmq_janus/tools/type_spec.rb
|
716
716
|
- spec/spec_helper.rb
|
717
|
+
- spec/support/actions.rb
|
718
|
+
- spec/support/admin_actions.rb
|
717
719
|
- spec/support/examples_admin.rb
|
718
720
|
- spec/support/examples_base.rb
|
719
721
|
- spec/support/examples_config.rb
|
@@ -780,14 +782,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
780
782
|
requirements:
|
781
783
|
- - ">="
|
782
784
|
- !ruby/object:Gem::Version
|
783
|
-
version: 2.
|
785
|
+
version: 2.7.0
|
784
786
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
785
787
|
requirements:
|
786
788
|
- - ">"
|
787
789
|
- !ruby/object:Gem::Version
|
788
790
|
version: 1.3.1
|
789
791
|
requirements: []
|
790
|
-
rubygems_version: 3.
|
792
|
+
rubygems_version: 3.1.6
|
791
793
|
signing_key:
|
792
794
|
specification_version: 4
|
793
795
|
summary: Ruby RabbitMQ Janus
|