slack-ruby-client 0.14.6 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +1 -0
- data/.rubocop.yml +15 -3
- data/.rubocop_todo.yml +110 -38
- data/.travis.yml +2 -5
- data/CHANGELOG.md +42 -0
- data/CONTRIBUTING.md +19 -8
- data/Dangerfile +1 -1
- data/Gemfile +1 -2
- data/LICENSE.md +1 -1
- data/README.md +38 -36
- data/RELEASING.md +1 -1
- data/UPGRADING.md +62 -2
- data/bin/commands/admin_analytics.rb +16 -0
- data/bin/commands/admin_apps.rb +26 -2
- data/bin/commands/admin_apps_requests.rb +1 -0
- data/bin/commands/admin_auth_policy.rb +39 -0
- data/bin/commands/admin_barriers.rb +47 -0
- data/bin/commands/admin_conversations.rb +155 -3
- data/bin/commands/admin_conversations_ekm.rb +17 -0
- data/bin/commands/admin_conversations_restrictAccess.rb +37 -0
- data/bin/commands/admin_conversations_whitelist.rb +37 -0
- data/bin/commands/admin_emoji.rb +1 -1
- data/bin/commands/admin_teams.rb +1 -1
- data/bin/commands/admin_usergroups.rb +48 -0
- data/bin/commands/admin_users.rb +3 -2
- data/bin/commands/admin_users_session.rb +62 -0
- data/bin/commands/api.rb +0 -1
- data/bin/commands/apps_connections.rb +13 -0
- data/bin/commands/apps_event_authorizations.rb +16 -0
- data/bin/commands/apps_manifest.rb +51 -0
- data/bin/commands/auth_teams.rb +16 -0
- data/bin/commands/bots.rb +1 -0
- data/bin/commands/calls.rb +52 -0
- data/bin/commands/calls_participants.rb +25 -0
- data/bin/commands/channels.rb +1 -155
- data/bin/commands/chat.rb +17 -12
- data/bin/commands/chat_scheduledMessages.rb +1 -0
- data/bin/commands/conversations.rb +71 -3
- data/bin/commands/dnd.rb +2 -0
- data/bin/commands/files.rb +6 -4
- data/bin/commands/files_remote.rb +2 -2
- data/bin/commands/groups.rb +1 -162
- data/bin/commands/im.rb +1 -63
- data/bin/commands/migration.rb +1 -0
- data/bin/commands/mpim.rb +1 -61
- data/bin/commands/oauth.rb +0 -13
- data/bin/commands/oauth_v2.rb +13 -1
- data/bin/commands/openid_connect.rb +27 -0
- data/bin/commands/pins.rb +2 -4
- data/bin/commands/reactions.rb +1 -0
- data/bin/commands/reminders.rb +6 -0
- data/bin/commands/rtm.rb +2 -2
- data/bin/commands/search.rb +4 -0
- data/bin/commands/stars.rb +7 -6
- data/bin/commands/team.rb +3 -0
- data/bin/commands/team_billing.rb +13 -0
- data/bin/commands/team_preferences.rb +13 -0
- data/bin/commands/tooling_tokens.rb +14 -0
- data/bin/commands/usergroups.rb +5 -0
- data/bin/commands/usergroups_users.rb +2 -0
- data/bin/commands/users.rb +4 -2
- data/bin/commands/users_profile.rb +5 -5
- data/bin/commands/views.rb +2 -2
- data/bin/commands/workflows.rb +38 -0
- data/bin/commands.rb +17 -8
- data/lib/slack/config.rb +1 -2
- data/lib/slack/events/request.rb +10 -4
- data/lib/slack/messages/message.rb +0 -4
- data/lib/slack/real_time/client.rb +6 -6
- data/lib/slack/real_time/concurrency/async.rb +7 -11
- data/lib/slack/real_time/concurrency.rb +0 -2
- data/lib/slack/real_time/config.rb +5 -14
- data/lib/slack/real_time/models/base.rb +0 -4
- data/lib/slack/real_time/socket.rb +3 -4
- data/lib/slack/real_time/stores/base.rb +4 -7
- data/lib/slack/real_time/stores/starter.rb +6 -3
- data/lib/slack/real_time/stores/store.rb +5 -0
- data/lib/slack/version.rb +1 -1
- data/lib/slack/web/api/endpoints/admin_analytics.rb +28 -0
- data/lib/slack/web/api/endpoints/admin_apps.rb +42 -6
- data/lib/slack/web/api/endpoints/admin_apps_approved.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +4 -2
- data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_auth_policy.rb +72 -0
- data/lib/slack/web/api/endpoints/admin_barriers.rb +82 -0
- data/lib/slack/web/api/endpoints/admin_conversations.rb +234 -4
- data/lib/slack/web/api/endpoints/admin_conversations_ekm.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_conversations_restrictAccess.rb +61 -0
- data/lib/slack/web/api/endpoints/admin_conversations_whitelist.rb +64 -0
- data/lib/slack/web/api/endpoints/admin_emoji.rb +10 -10
- data/lib/slack/web/api/endpoints/admin_inviteRequests.rb +7 -7
- data/lib/slack/web/api/endpoints/admin_inviteRequests_approved.rb +3 -3
- data/lib/slack/web/api/endpoints/admin_inviteRequests_denied.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_teams.rb +7 -7
- data/lib/slack/web/api/endpoints/admin_teams_admins.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_teams_owners.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_teams_settings.rb +5 -5
- data/lib/slack/web/api/endpoints/admin_usergroups.rb +77 -0
- data/lib/slack/web/api/endpoints/admin_users.rb +23 -23
- data/lib/slack/web/api/endpoints/admin_users_session.rb +97 -3
- data/lib/slack/web/api/endpoints/api.rb +1 -3
- data/lib/slack/web/api/endpoints/apps.rb +2 -2
- data/lib/slack/web/api/endpoints/apps_connections.rb +21 -0
- data/lib/slack/web/api/endpoints/apps_event_authorizations.rb +34 -0
- data/lib/slack/web/api/endpoints/apps_manifest.rb +75 -0
- data/lib/slack/web/api/endpoints/auth.rb +1 -1
- data/lib/slack/web/api/endpoints/auth_teams.rb +33 -0
- data/lib/slack/web/api/endpoints/bots.rb +3 -1
- data/lib/slack/web/api/endpoints/calls.rb +83 -0
- data/lib/slack/web/api/endpoints/calls_participants.rb +42 -0
- data/lib/slack/web/api/endpoints/channels.rb +1 -245
- data/lib/slack/web/api/endpoints/chat.rb +76 -66
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +5 -3
- data/lib/slack/web/api/endpoints/conversations.rb +149 -41
- data/lib/slack/web/api/endpoints/dialog.rb +2 -2
- data/lib/slack/web/api/endpoints/dnd.rb +6 -3
- data/lib/slack/web/api/endpoints/files.rb +21 -17
- data/lib/slack/web/api/endpoints/files_comments.rb +1 -1
- data/lib/slack/web/api/endpoints/files_remote.rb +23 -23
- data/lib/slack/web/api/endpoints/groups.rb +0 -253
- data/lib/slack/web/api/endpoints/im.rb +0 -101
- data/lib/slack/web/api/endpoints/migration.rb +4 -2
- data/lib/slack/web/api/endpoints/mpim.rb +0 -96
- data/lib/slack/web/api/endpoints/oauth.rb +5 -30
- data/lib/slack/web/api/endpoints/oauth_v2.rb +24 -6
- data/lib/slack/web/api/endpoints/openid_connect.rb +42 -0
- data/lib/slack/web/api/endpoints/pins.rb +7 -12
- data/lib/slack/web/api/endpoints/reactions.rb +16 -14
- data/lib/slack/web/api/endpoints/reminders.rb +17 -5
- data/lib/slack/web/api/endpoints/rtm.rb +10 -10
- data/lib/slack/web/api/endpoints/search.rb +27 -13
- data/lib/slack/web/api/endpoints/stars.rb +13 -11
- data/lib/slack/web/api/endpoints/team.rb +11 -5
- data/lib/slack/web/api/endpoints/team_billing.rb +21 -0
- data/lib/slack/web/api/endpoints/team_preferences.rb +21 -0
- data/lib/slack/web/api/endpoints/team_profile.rb +1 -1
- data/lib/slack/web/api/endpoints/tooling_tokens.rb +24 -0
- data/lib/slack/web/api/endpoints/usergroups.rb +26 -16
- data/lib/slack/web/api/endpoints/usergroups_users.rb +9 -5
- data/lib/slack/web/api/endpoints/users.rb +20 -18
- data/lib/slack/web/api/endpoints/users_profile.rb +7 -7
- data/lib/slack/web/api/endpoints/views.rb +13 -13
- data/lib/slack/web/api/endpoints/workflows.rb +61 -0
- data/lib/slack/web/api/endpoints.rb +35 -18
- data/lib/slack/web/api/errors/server_error.rb +37 -0
- data/lib/slack/web/api/errors/too_many_requests_error.rb +1 -4
- data/lib/slack/web/api/errors.rb +486 -12
- data/lib/slack/web/api/mixins/{channels.id.rb → conversations.id.rb} +3 -5
- data/lib/slack/web/api/mixins/ids.id.rb +3 -5
- data/lib/slack/web/api/mixins/users.id.rb +1 -3
- data/lib/slack/web/api/mixins.rb +1 -2
- data/lib/slack/web/api/patches/{chat.6.block-kit-support.patch → chat.1.patch} +25 -24
- data/lib/slack/web/api/templates/endpoints.erb +1 -2
- data/lib/slack/web/api/templates/method.erb +4 -1
- data/lib/slack/web/api/templates/method_spec.erb +1 -1
- data/lib/slack/web/config.rb +2 -0
- data/lib/slack/web/faraday/connection.rb +23 -20
- data/lib/slack/web/faraday/request.rb +2 -1
- data/lib/slack/web/faraday/response/raise_error.rb +12 -1
- data/lib/slack/web/faraday/response/wrap_error.rb +24 -0
- data/lib/slack/web/pagination/cursor.rb +3 -7
- data/lib/slack-ruby-client.rb +4 -4
- data/lib/tasks/web.rake +11 -3
- data/slack-ruby-client.gemspec +6 -7
- data/spec/fixtures/slack/web/429_error.yml +50 -54
- data/spec/fixtures/slack/web/auth_test_error.yml +51 -18
- data/spec/fixtures/slack/web/auth_test_success.yml +50 -26
- data/spec/fixtures/slack/web/conversations_info.yml +167 -0
- data/spec/fixtures/slack/web/conversations_setTopic.yml +84 -0
- data/spec/fixtures/slack/web/conversations_setTopic_one_page.yml +172 -0
- data/spec/fixtures/slack/web/conversations_setTopic_paginated.yml +253 -0
- data/spec/fixtures/slack/web/paginated_users_list.yml +501 -69
- data/spec/fixtures/slack/web/rtm_connect.yml +267 -30
- data/spec/fixtures/slack/web/rtm_start.yml +771 -60
- data/spec/fixtures/slack/web/users_info.yml +153 -69
- data/spec/fixtures/slack/web/users_list.yml +102 -41
- data/spec/fixtures/slack/web/views_open_error.yml +49 -42
- data/spec/slack/events/request_spec.rb +13 -8
- data/spec/slack/real_time/client_spec.rb +35 -22
- data/spec/slack/real_time/concurrency/with_concurrency_spec.rb +10 -0
- data/spec/slack/real_time/concurrency/without_concurrency_spec.rb +10 -0
- data/spec/slack/real_time/event_handlers/bot_spec.rb +1 -1
- data/spec/slack/real_time/event_handlers/channel_spec.rb +1 -1
- data/spec/slack/real_time/event_handlers/im_spec.rb +5 -5
- data/spec/slack/real_time/event_handlers/user_spec.rb +2 -2
- data/spec/slack/real_time/rtm_connect_spec.rb +1 -1
- data/spec/slack/real_time/rtm_start_spec.rb +1 -1
- data/spec/slack/slack_spec.rb +3 -1
- data/spec/slack/web/api/endpoints/admin_analytics_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +10 -0
- data/spec/slack/web/api/endpoints/admin_auth_policy_spec.rb +35 -0
- data/spec/slack/web/api/endpoints/admin_barriers_spec.rb +38 -0
- data/spec/slack/web/api/endpoints/{apps_permissions_scopes_spec.rb → admin_conversations_ekm_spec.rb} +1 -1
- data/spec/slack/web/api/endpoints/admin_conversations_restrictAccess_spec.rb +32 -0
- data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +85 -0
- data/spec/slack/web/api/endpoints/admin_emoji_spec.rb +6 -6
- data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +10 -10
- data/spec/slack/web/api/endpoints/admin_teams_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/admin_usergroups_spec.rb +37 -0
- data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +28 -0
- data/spec/slack/web/api/endpoints/admin_users_spec.rb +15 -23
- data/spec/slack/web/api/endpoints/{apps_permissions_resources_spec.rb → apps_connections_spec.rb} +1 -1
- data/spec/slack/web/api/endpoints/apps_event_authorizations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/apps_manifest_spec.rb +36 -0
- data/spec/slack/web/api/endpoints/apps_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/auth_teams_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/calls_participants_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/calls_spec.rb +31 -0
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +4 -6
- data/spec/slack/web/api/endpoints/custom_specs/conversations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/dnd_spec.rb +0 -5
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +3 -3
- data/spec/slack/web/api/endpoints/files_spec.rb +4 -4
- data/spec/slack/web/api/endpoints/oauth_spec.rb +0 -22
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +6 -3
- data/spec/slack/web/api/endpoints/openid_connect_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/pins_spec.rb +1 -4
- data/spec/slack/web/api/endpoints/reactions_spec.rb +3 -3
- data/spec/slack/web/api/endpoints/reminders_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/team_billing_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/team_preferences_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/tooling_tokens_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +2 -2
- data/spec/slack/web/api/endpoints/workflows_spec.rb +26 -0
- data/spec/slack/web/api/error_spec.rb +5 -7
- data/spec/slack/web/api/errors/slack_error_spec.rb +21 -26
- data/spec/slack/web/api/mixins/conversations_list_spec.rb +21 -0
- data/spec/slack/web/api/mixins/{channels_spec.rb → conversations_spec.rb} +8 -8
- data/spec/slack/web/api/mixins/users_spec.rb +1 -1
- data/spec/slack/web/api/pagination/cursor_spec.rb +1 -3
- data/spec/slack/web/client_spec.rb +123 -1
- data/spec/slack/web/faraday/request_spec.rb +80 -0
- data/spec/slack/web/faraday/response/raise_error_spec.rb +8 -6
- data/spec/spec_helper.rb +1 -1
- data/spec/support/real_time/connected_client.rb +1 -7
- data/spec/support/vcr.rb +36 -1
- metadata +95 -173
- data/examples/hi_real_time/Gemfile +0 -6
- data/examples/hi_real_time/hi.gif +0 -0
- data/examples/hi_real_time/hi.rb +0 -41
- data/examples/hi_real_time_async_celluloid/Gemfile +0 -7
- data/examples/hi_real_time_async_celluloid/Procfile +0 -2
- data/examples/hi_real_time_async_celluloid/hi.rb +0 -39
- data/examples/hi_real_time_async_eventmachine/Gemfile +0 -7
- data/examples/hi_real_time_async_eventmachine/Procfile +0 -2
- data/examples/hi_real_time_async_eventmachine/hi.rb +0 -39
- data/lib/slack/real_time/concurrency/celluloid.rb +0 -142
- data/lib/slack/real_time/concurrency/eventmachine.rb +0 -85
- data/lib/slack/web/api/mixins/channels.id.json +0 -20
- data/lib/slack/web/api/mixins/groups.id.json +0 -20
- data/lib/slack/web/api/mixins/groups.id.rb +0 -27
- data/lib/slack/web/api/patches/chat.1.text-attachments-required.patch +0 -13
- data/lib/slack/web/api/patches/chat.2.attachments-json.patch +0 -17
- data/lib/slack/web/api/patches/chat.3.update-attachments-support.patch +0 -21
- data/lib/slack/web/api/patches/chat.4.postEphemeral-attachments-support.patch +0 -17
- data/lib/slack/web/api/patches/chat.5.postEphemeral-text-or-attachments.patch +0 -15
- data/spec/fixtures/slack/web/503_error.yml +0 -14
- data/spec/fixtures/slack/web/channels_info.yml +0 -46
- data/spec/fixtures/slack/web/groups_info.yml +0 -43
- data/spec/slack/real_time/concurrency/celluloid_spec.rb +0 -116
- data/spec/slack/real_time/concurrency/eventmachine_spec.rb +0 -57
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +0 -16
- data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +0 -19
- data/spec/slack/web/api/endpoints/conversations_spec.rb +0 -101
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/im_spec.rb +0 -39
- data/spec/slack/web/api/endpoints/mpim_spec.rb +0 -39
- data/spec/slack/web/api/endpoints/views_spec.rb +0 -29
- data/spec/slack/web/api/errors/service_unavailable_spec.rb +0 -17
- data/spec/slack/web/api/mixins/groups_spec.rb +0 -43
@@ -1,116 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
require_relative './it_behaves_like_a_realtime_socket'
|
4
|
-
|
5
|
-
begin
|
6
|
-
RSpec.describe Slack::RealTime::Concurrency::Celluloid::Socket do
|
7
|
-
subject { socket }
|
8
|
-
|
9
|
-
let(:driver) { WebSocket::Driver::Client }
|
10
|
-
let(:logger) { ::Logger.new(STDOUT) }
|
11
|
-
let(:ws) { double(driver) }
|
12
|
-
let(:url) { 'wss://echo.websocket.org/websocket/xyz' }
|
13
|
-
|
14
|
-
it_behaves_like 'a realtime socket'
|
15
|
-
|
16
|
-
['', nil].each do |data|
|
17
|
-
context "finishing run_loop with #{data ? 'empty' : 'nil'} read" do
|
18
|
-
let(:ssl_socket) do
|
19
|
-
Class.new(Celluloid::IO::SSLSocket) do
|
20
|
-
def initialize(data)
|
21
|
-
@data = data
|
22
|
-
end
|
23
|
-
|
24
|
-
def connect; end
|
25
|
-
|
26
|
-
def readpartial(_size)
|
27
|
-
@data
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
let(:test_socket) do
|
33
|
-
Class.new(described_class) do
|
34
|
-
def build_socket
|
35
|
-
options[:ssl_socket].new(options[:data])
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
let(:socket) do
|
41
|
-
test_socket.new(url, logger: logger, data: data, ssl_socket: ssl_socket)
|
42
|
-
end
|
43
|
-
|
44
|
-
context 'with a driver' do
|
45
|
-
before do
|
46
|
-
socket.instance_variable_set('@driver', ws)
|
47
|
-
end
|
48
|
-
|
49
|
-
context 'consumes data' do
|
50
|
-
it 'runs' do
|
51
|
-
expect(ws).to receive(:emit)
|
52
|
-
expect(ws).to receive(:start)
|
53
|
-
expect(logger).to receive(:debug).with("#{test_socket}#run_loop")
|
54
|
-
socket.run_loop
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
|
61
|
-
[EOFError, Errno::ECONNRESET, Errno::EPIPE].each do |err|
|
62
|
-
context "finishing run_loop with #{err}" do
|
63
|
-
let(:test_socket) do
|
64
|
-
Class.new(described_class) do
|
65
|
-
def read
|
66
|
-
raise options[:err]
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
let(:socket) do
|
72
|
-
test_socket.new(url, logger: logger, err: err)
|
73
|
-
end
|
74
|
-
|
75
|
-
context 'with a driver' do
|
76
|
-
before do
|
77
|
-
socket.instance_variable_set('@driver', ws)
|
78
|
-
end
|
79
|
-
|
80
|
-
describe '#disconnect!' do
|
81
|
-
it 'closes and nils the websocket' do
|
82
|
-
expect(ws).to receive(:emit)
|
83
|
-
expect(ws).to receive(:close)
|
84
|
-
socket.disconnect!
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
context 'consumes data' do
|
89
|
-
let(:tcp_socket) { double(::Celluloid::IO::SSLSocket, connect: true) }
|
90
|
-
|
91
|
-
before do
|
92
|
-
allow_any_instance_of(described_class).to(
|
93
|
-
receive(:build_socket).and_return(tcp_socket)
|
94
|
-
)
|
95
|
-
end
|
96
|
-
|
97
|
-
it 'runs' do
|
98
|
-
expect(ws).to receive(:emit)
|
99
|
-
expect(ws).to receive(:start)
|
100
|
-
expect(logger).to receive(:debug).with("#{test_socket}#run_loop")
|
101
|
-
socket.run_loop
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
105
|
-
end
|
106
|
-
end
|
107
|
-
|
108
|
-
describe '#connect!' do
|
109
|
-
pending 'connects'
|
110
|
-
pending 'pings every 30s'
|
111
|
-
end
|
112
|
-
|
113
|
-
pending 'send_data'
|
114
|
-
end
|
115
|
-
rescue LoadError
|
116
|
-
end
|
@@ -1,57 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
require_relative './it_behaves_like_a_realtime_socket'
|
4
|
-
|
5
|
-
begin
|
6
|
-
RSpec.describe Slack::RealTime::Concurrency::Eventmachine::Socket do
|
7
|
-
it_behaves_like 'a realtime socket'
|
8
|
-
context 'with url' do
|
9
|
-
let(:url) { 'wss://ms174.slack-msgs.com/websocket/xyz' }
|
10
|
-
let(:logger) { ::Logger.new($stdout) }
|
11
|
-
let(:socket) { described_class.new(url, ping: 42, logger: logger) }
|
12
|
-
let(:ws) { double(Faye::WebSocket::Client) }
|
13
|
-
|
14
|
-
describe '#connect!' do
|
15
|
-
before do
|
16
|
-
allow(ws).to receive(:on).with(:close)
|
17
|
-
allow(ws).to receive(:on).with(:message)
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'connects' do
|
21
|
-
allow(Faye::WebSocket::Client).to receive(:new).and_return(ws)
|
22
|
-
socket.connect!
|
23
|
-
expect(socket.instance_variable_get('@driver')).to eq ws
|
24
|
-
end
|
25
|
-
it 'pings every 30s' do
|
26
|
-
expect(Faye::WebSocket::Client).to(
|
27
|
-
receive(:new).with(url, nil, ping: 42, logger: logger).and_return(ws)
|
28
|
-
)
|
29
|
-
socket.connect!
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
describe '#disconnect!' do
|
34
|
-
it 'closes and nils the websocket' do
|
35
|
-
socket.instance_variable_set('@driver', ws)
|
36
|
-
expect(ws).to receive(:emit).with(:close)
|
37
|
-
expect(ws).to receive(:close)
|
38
|
-
socket.disconnect!
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
describe 'send_data' do
|
43
|
-
before do
|
44
|
-
allow(Faye::WebSocket::Client).to receive(:new).and_return(ws)
|
45
|
-
allow(ws).to receive(:on)
|
46
|
-
socket.connect!
|
47
|
-
end
|
48
|
-
|
49
|
-
it 'sends data' do
|
50
|
-
expect(ws).to receive(:send).with('data')
|
51
|
-
socket.send_data('data')
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
rescue LoadError
|
57
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# This file was auto-generated by lib/tasks/web.rake
|
3
|
-
|
4
|
-
require 'spec_helper'
|
5
|
-
|
6
|
-
RSpec.describe Slack::Web::Api::Endpoints::AppsPermissions do
|
7
|
-
let(:client) { Slack::Web::Client.new }
|
8
|
-
context 'apps.permissions_request' do
|
9
|
-
it 'requires scopes' do
|
10
|
-
expect { client.apps_permissions_request(trigger_id: '') }.to raise_error ArgumentError, /Required arguments :scopes missing/
|
11
|
-
end
|
12
|
-
it 'requires trigger_id' do
|
13
|
-
expect { client.apps_permissions_request(scopes: '') }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# This file was auto-generated by lib/tasks/web.rake
|
3
|
-
|
4
|
-
require 'spec_helper'
|
5
|
-
|
6
|
-
RSpec.describe Slack::Web::Api::Endpoints::AppsPermissionsUsers do
|
7
|
-
let(:client) { Slack::Web::Client.new }
|
8
|
-
context 'apps.permissions.users_request' do
|
9
|
-
it 'requires scopes' do
|
10
|
-
expect { client.apps_permissions_users_request(trigger_id: '', user: '') }.to raise_error ArgumentError, /Required arguments :scopes missing/
|
11
|
-
end
|
12
|
-
it 'requires trigger_id' do
|
13
|
-
expect { client.apps_permissions_users_request(scopes: '', user: '') }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
14
|
-
end
|
15
|
-
it 'requires user' do
|
16
|
-
expect { client.apps_permissions_users_request(scopes: '', trigger_id: '') }.to raise_error ArgumentError, /Required arguments :user missing/
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,101 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# This file was auto-generated by lib/tasks/web.rake
|
3
|
-
|
4
|
-
require 'spec_helper'
|
5
|
-
|
6
|
-
RSpec.describe Slack::Web::Api::Endpoints::Conversations do
|
7
|
-
let(:client) { Slack::Web::Client.new }
|
8
|
-
context 'conversations_archive' do
|
9
|
-
it 'requires channel' do
|
10
|
-
expect { client.conversations_archive }.to raise_error ArgumentError, /Required arguments :channel missing/
|
11
|
-
end
|
12
|
-
end
|
13
|
-
context 'conversations_close' do
|
14
|
-
it 'requires channel' do
|
15
|
-
expect { client.conversations_close }.to raise_error ArgumentError, /Required arguments :channel missing/
|
16
|
-
end
|
17
|
-
end
|
18
|
-
context 'conversations_create' do
|
19
|
-
it 'requires name' do
|
20
|
-
expect { client.conversations_create }.to raise_error ArgumentError, /Required arguments :name missing/
|
21
|
-
end
|
22
|
-
end
|
23
|
-
context 'conversations_history' do
|
24
|
-
it 'requires channel' do
|
25
|
-
expect { client.conversations_history }.to raise_error ArgumentError, /Required arguments :channel missing/
|
26
|
-
end
|
27
|
-
end
|
28
|
-
context 'conversations_info' do
|
29
|
-
it 'requires channel' do
|
30
|
-
expect { client.conversations_info }.to raise_error ArgumentError, /Required arguments :channel missing/
|
31
|
-
end
|
32
|
-
end
|
33
|
-
context 'conversations_invite' do
|
34
|
-
it 'requires channel' do
|
35
|
-
expect { client.conversations_invite(users: 'W1234567890,U2345678901,U3456789012') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
36
|
-
end
|
37
|
-
it 'requires users' do
|
38
|
-
expect { client.conversations_invite(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :users missing/
|
39
|
-
end
|
40
|
-
end
|
41
|
-
context 'conversations_join' do
|
42
|
-
it 'requires channel' do
|
43
|
-
expect { client.conversations_join }.to raise_error ArgumentError, /Required arguments :channel missing/
|
44
|
-
end
|
45
|
-
end
|
46
|
-
context 'conversations_kick' do
|
47
|
-
it 'requires channel' do
|
48
|
-
expect { client.conversations_kick(user: 'W1234567890') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
49
|
-
end
|
50
|
-
it 'requires user' do
|
51
|
-
expect { client.conversations_kick(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :user missing/
|
52
|
-
end
|
53
|
-
end
|
54
|
-
context 'conversations_leave' do
|
55
|
-
it 'requires channel' do
|
56
|
-
expect { client.conversations_leave }.to raise_error ArgumentError, /Required arguments :channel missing/
|
57
|
-
end
|
58
|
-
end
|
59
|
-
context 'conversations_members' do
|
60
|
-
it 'requires channel' do
|
61
|
-
expect { client.conversations_members }.to raise_error ArgumentError, /Required arguments :channel missing/
|
62
|
-
end
|
63
|
-
end
|
64
|
-
context 'conversations_rename' do
|
65
|
-
it 'requires channel' do
|
66
|
-
expect { client.conversations_rename(name: '') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
67
|
-
end
|
68
|
-
it 'requires name' do
|
69
|
-
expect { client.conversations_rename(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :name missing/
|
70
|
-
end
|
71
|
-
end
|
72
|
-
context 'conversations_replies' do
|
73
|
-
it 'requires channel' do
|
74
|
-
expect { client.conversations_replies(ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
75
|
-
end
|
76
|
-
it 'requires ts' do
|
77
|
-
expect { client.conversations_replies(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :ts missing/
|
78
|
-
end
|
79
|
-
end
|
80
|
-
context 'conversations_setPurpose' do
|
81
|
-
it 'requires channel' do
|
82
|
-
expect { client.conversations_setPurpose(purpose: 'My More Special Purpose') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
83
|
-
end
|
84
|
-
it 'requires purpose' do
|
85
|
-
expect { client.conversations_setPurpose(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :purpose missing/
|
86
|
-
end
|
87
|
-
end
|
88
|
-
context 'conversations_setTopic' do
|
89
|
-
it 'requires channel' do
|
90
|
-
expect { client.conversations_setTopic(topic: 'Apply topically for best effects') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
91
|
-
end
|
92
|
-
it 'requires topic' do
|
93
|
-
expect { client.conversations_setTopic(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :topic missing/
|
94
|
-
end
|
95
|
-
end
|
96
|
-
context 'conversations_unarchive' do
|
97
|
-
it 'requires channel' do
|
98
|
-
expect { client.conversations_unarchive }.to raise_error ArgumentError, /Required arguments :channel missing/
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
|
4
|
-
RSpec.describe Slack::Web::Api::Endpoints::Channels do
|
5
|
-
let(:client) { Slack::Web::Client.new }
|
6
|
-
|
7
|
-
context 'channels' do
|
8
|
-
it 'info', vcr: { cassette_name: 'web/channels_info' } do
|
9
|
-
json = client.channels_info(channel: '#general')
|
10
|
-
expect(json.channel.name).to eq 'general'
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
|
4
|
-
RSpec.describe Slack::Web::Api::Endpoints::Groups do
|
5
|
-
let(:client) { Slack::Web::Client.new }
|
6
|
-
|
7
|
-
context 'groups' do
|
8
|
-
it 'info', vcr: { cassette_name: 'web/groups_info' } do
|
9
|
-
json = client.groups_info(channel: '#mpdm-dblock--rubybot--player1-1')
|
10
|
-
expect(json.group.name).to eq 'mpdm-dblock--rubybot--player1-1'
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# This file was auto-generated by lib/tasks/web.rake
|
3
|
-
|
4
|
-
require 'spec_helper'
|
5
|
-
|
6
|
-
RSpec.describe Slack::Web::Api::Endpoints::Im do
|
7
|
-
let(:client) { Slack::Web::Client.new }
|
8
|
-
context 'im_close' do
|
9
|
-
it 'requires channel' do
|
10
|
-
expect { client.im_close }.to raise_error ArgumentError, /Required arguments :channel missing/
|
11
|
-
end
|
12
|
-
end
|
13
|
-
context 'im_history' do
|
14
|
-
it 'requires channel' do
|
15
|
-
expect { client.im_history }.to raise_error ArgumentError, /Required arguments :channel missing/
|
16
|
-
end
|
17
|
-
end
|
18
|
-
context 'im_mark' do
|
19
|
-
it 'requires channel' do
|
20
|
-
expect { client.im_mark(ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
21
|
-
end
|
22
|
-
it 'requires ts' do
|
23
|
-
expect { client.im_mark(channel: 'D1234567890') }.to raise_error ArgumentError, /Required arguments :ts missing/
|
24
|
-
end
|
25
|
-
end
|
26
|
-
context 'im_open' do
|
27
|
-
it 'requires user' do
|
28
|
-
expect { client.im_open }.to raise_error ArgumentError, /Required arguments :user missing/
|
29
|
-
end
|
30
|
-
end
|
31
|
-
context 'im_replies' do
|
32
|
-
it 'requires channel' do
|
33
|
-
expect { client.im_replies(thread_ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
34
|
-
end
|
35
|
-
it 'requires thread_ts' do
|
36
|
-
expect { client.im_replies(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :thread_ts missing/
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# This file was auto-generated by lib/tasks/web.rake
|
3
|
-
|
4
|
-
require 'spec_helper'
|
5
|
-
|
6
|
-
RSpec.describe Slack::Web::Api::Endpoints::Mpim do
|
7
|
-
let(:client) { Slack::Web::Client.new }
|
8
|
-
context 'mpim_close' do
|
9
|
-
it 'requires channel' do
|
10
|
-
expect { client.mpim_close }.to raise_error ArgumentError, /Required arguments :channel missing/
|
11
|
-
end
|
12
|
-
end
|
13
|
-
context 'mpim_history' do
|
14
|
-
it 'requires channel' do
|
15
|
-
expect { client.mpim_history }.to raise_error ArgumentError, /Required arguments :channel missing/
|
16
|
-
end
|
17
|
-
end
|
18
|
-
context 'mpim_mark' do
|
19
|
-
it 'requires channel' do
|
20
|
-
expect { client.mpim_mark(ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
21
|
-
end
|
22
|
-
it 'requires ts' do
|
23
|
-
expect { client.mpim_mark(channel: 'G1234567890') }.to raise_error ArgumentError, /Required arguments :ts missing/
|
24
|
-
end
|
25
|
-
end
|
26
|
-
context 'mpim_open' do
|
27
|
-
it 'requires users' do
|
28
|
-
expect { client.mpim_open }.to raise_error ArgumentError, /Required arguments :users missing/
|
29
|
-
end
|
30
|
-
end
|
31
|
-
context 'mpim_replies' do
|
32
|
-
it 'requires channel' do
|
33
|
-
expect { client.mpim_replies(thread_ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
34
|
-
end
|
35
|
-
it 'requires thread_ts' do
|
36
|
-
expect { client.mpim_replies(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :thread_ts missing/
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# This file was auto-generated by lib/tasks/web.rake
|
3
|
-
|
4
|
-
require 'spec_helper'
|
5
|
-
|
6
|
-
RSpec.describe Slack::Web::Api::Endpoints::Views do
|
7
|
-
let(:client) { Slack::Web::Client.new }
|
8
|
-
context 'views_open' do
|
9
|
-
it 'requires trigger_id' do
|
10
|
-
expect { client.views_open(view: ' ') }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
11
|
-
end
|
12
|
-
it 'requires view' do
|
13
|
-
expect { client.views_open(trigger_id: '12345.98765.abcd2358fdea') }.to raise_error ArgumentError, /Required arguments :view missing/
|
14
|
-
end
|
15
|
-
end
|
16
|
-
context 'views_push' do
|
17
|
-
it 'requires trigger_id' do
|
18
|
-
expect { client.views_push(view: ' ') }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
19
|
-
end
|
20
|
-
it 'requires view' do
|
21
|
-
expect { client.views_push(trigger_id: '12345.98765.abcd2358fdea') }.to raise_error ArgumentError, /Required arguments :view missing/
|
22
|
-
end
|
23
|
-
end
|
24
|
-
context 'views_update' do
|
25
|
-
it 'requires view' do
|
26
|
-
expect { client.views_update }.to raise_error ArgumentError, /Required arguments :view missing/
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
|
4
|
-
RSpec.describe Slack::Web::Client do
|
5
|
-
let(:client) { described_class.new }
|
6
|
-
|
7
|
-
it 'raises a Faraday::ClientError when Slack is unavailable',
|
8
|
-
vcr: { cassette_name: 'web/503_error' } do
|
9
|
-
begin
|
10
|
-
client.auth_test
|
11
|
-
raise 'Expected to receive Faraday::ClientError.'
|
12
|
-
rescue Faraday::ClientError => e
|
13
|
-
expect(e.response).not_to be_nil
|
14
|
-
expect(e.response[:status]).to eq 503
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
@@ -1,43 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
|
4
|
-
RSpec.describe Slack::Web::Api::Mixins::Groups do
|
5
|
-
subject(:groups) do
|
6
|
-
klass.new
|
7
|
-
end
|
8
|
-
|
9
|
-
let(:klass) do
|
10
|
-
Class.new do
|
11
|
-
include Slack::Web::Api::Mixins::Groups
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
before do
|
16
|
-
allow(groups).to receive(:groups_list).and_return(
|
17
|
-
Slack::Messages::Message.new(
|
18
|
-
'groups' => [{
|
19
|
-
'id' => 'CDEADBEEF',
|
20
|
-
'name' => 'general'
|
21
|
-
}]
|
22
|
-
)
|
23
|
-
)
|
24
|
-
end
|
25
|
-
|
26
|
-
context '#groups_id' do
|
27
|
-
it 'leaves groups specified by ID alone' do
|
28
|
-
expect(groups.groups_id(channel: 'C123456')).to(
|
29
|
-
eq('ok' => true, 'group' => { 'id' => 'C123456' })
|
30
|
-
)
|
31
|
-
end
|
32
|
-
it 'translates a channel that starts with a #' do
|
33
|
-
expect(groups.groups_id(channel: '#general')).to(
|
34
|
-
eq('ok' => true, 'group' => { 'id' => 'CDEADBEEF' })
|
35
|
-
)
|
36
|
-
end
|
37
|
-
it 'fails with an exception' do
|
38
|
-
expect { groups.groups_id(channel: '#invalid') }.to(
|
39
|
-
raise_error(Slack::Web::Api::Errors::SlackError, 'channel_not_found')
|
40
|
-
)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|