slack-ruby-client 0.12.0 → 0.14.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (301) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +21 -9
  4. data/.rubocop_todo.yml +64 -56
  5. data/.travis.yml +5 -3
  6. data/CHANGELOG.md +90 -32
  7. data/Dangerfile +2 -0
  8. data/Gemfile +10 -4
  9. data/LICENSE.md +1 -1
  10. data/README.md +176 -32
  11. data/Rakefile +2 -1
  12. data/UPGRADING.md +27 -1
  13. data/bin/commands.rb +21 -0
  14. data/bin/commands/admin_apps.rb +27 -0
  15. data/bin/commands/admin_apps_approved.rb +17 -0
  16. data/bin/commands/admin_apps_requests.rb +16 -0
  17. data/bin/commands/admin_apps_restricted.rb +17 -0
  18. data/bin/commands/admin_conversations.rb +17 -0
  19. data/bin/commands/admin_emoji.rb +54 -0
  20. data/bin/commands/admin_inviteRequests.rb +36 -0
  21. data/bin/commands/admin_inviteRequests_approved.rb +16 -0
  22. data/bin/commands/admin_inviteRequests_denied.rb +16 -0
  23. data/bin/commands/admin_teams.rb +27 -0
  24. data/bin/commands/admin_teams_admins.rb +16 -0
  25. data/bin/commands/admin_teams_owners.rb +16 -0
  26. data/bin/commands/admin_teams_settings.rb +64 -0
  27. data/bin/commands/admin_users.rb +97 -0
  28. data/bin/commands/admin_users_session.rb +16 -0
  29. data/bin/commands/api.rb +1 -0
  30. data/bin/commands/apps.rb +15 -0
  31. data/bin/commands/apps_permissions.rb +1 -0
  32. data/bin/commands/apps_permissions_resources.rb +1 -0
  33. data/bin/commands/apps_permissions_scopes.rb +1 -0
  34. data/bin/commands/apps_permissions_users.rb +1 -0
  35. data/bin/commands/auth.rb +1 -0
  36. data/bin/commands/bots.rb +1 -0
  37. data/bin/commands/channels.rb +3 -1
  38. data/bin/commands/chat.rb +48 -9
  39. data/bin/commands/chat_scheduledMessages.rb +18 -0
  40. data/bin/commands/conversations.rb +4 -2
  41. data/bin/commands/dialog.rb +1 -0
  42. data/bin/commands/dnd.rb +4 -3
  43. data/bin/commands/emoji.rb +1 -0
  44. data/bin/commands/files.rb +4 -14
  45. data/bin/commands/files_comments.rb +1 -21
  46. data/bin/commands/files_remote.rb +78 -0
  47. data/bin/commands/groups.rb +2 -1
  48. data/bin/commands/im.rb +2 -1
  49. data/bin/commands/migration.rb +1 -0
  50. data/bin/commands/mpim.rb +2 -1
  51. data/bin/commands/oauth.rb +2 -1
  52. data/bin/commands/oauth_v2.rb +17 -0
  53. data/bin/commands/pins.rb +1 -2
  54. data/bin/commands/reactions.rb +2 -3
  55. data/bin/commands/reminders.rb +1 -0
  56. data/bin/commands/rtm.rb +1 -0
  57. data/bin/commands/search.rb +2 -1
  58. data/bin/commands/stars.rb +1 -0
  59. data/bin/commands/team.rb +2 -0
  60. data/bin/commands/team_profile.rb +1 -0
  61. data/bin/commands/usergroups.rb +2 -1
  62. data/bin/commands/usergroups_users.rb +1 -0
  63. data/bin/commands/users.rb +2 -2
  64. data/bin/commands/users_admin.rb +1 -0
  65. data/bin/commands/users_prefs.rb +1 -0
  66. data/bin/commands/users_profile.rb +1 -0
  67. data/bin/commands/views.rb +48 -0
  68. data/bin/slack +2 -3
  69. data/examples/hi_real_time/Gemfile +1 -0
  70. data/examples/hi_real_time/hi.rb +7 -3
  71. data/examples/hi_real_time_and_web/Gemfile +1 -0
  72. data/examples/hi_real_time_and_web/hi.rb +7 -3
  73. data/examples/hi_real_time_async_async/Gemfile +7 -0
  74. data/examples/hi_real_time_async_async/Procfile +2 -0
  75. data/examples/hi_real_time_async_async/hi.rb +41 -0
  76. data/examples/hi_real_time_async_celluloid/Gemfile +1 -0
  77. data/examples/hi_real_time_async_celluloid/hi.rb +7 -3
  78. data/examples/hi_real_time_async_eventmachine/Gemfile +1 -0
  79. data/examples/hi_real_time_async_eventmachine/hi.rb +7 -3
  80. data/examples/hi_web/Gemfile +1 -0
  81. data/examples/hi_web/hi.rb +1 -0
  82. data/examples/new_ticket/Gemfile +1 -0
  83. data/examples/new_ticket/new_ticket.rb +1 -0
  84. data/lib/slack-ruby-client.rb +8 -2
  85. data/lib/slack.rb +1 -0
  86. data/lib/slack/config.rb +1 -0
  87. data/lib/slack/events/config.rb +32 -0
  88. data/lib/slack/events/request.rb +66 -0
  89. data/lib/slack/logger.rb +6 -5
  90. data/lib/slack/messages/formatting.rb +1 -0
  91. data/lib/slack/messages/message.rb +1 -0
  92. data/lib/slack/real_time/api/message.rb +3 -1
  93. data/lib/slack/real_time/api/message_id.rb +1 -0
  94. data/lib/slack/real_time/api/ping.rb +5 -2
  95. data/lib/slack/real_time/api/typing.rb +3 -1
  96. data/lib/slack/real_time/client.rb +97 -28
  97. data/lib/slack/real_time/concurrency.rb +2 -0
  98. data/lib/slack/real_time/concurrency/async.rb +142 -0
  99. data/lib/slack/real_time/concurrency/celluloid.rb +33 -9
  100. data/lib/slack/real_time/concurrency/eventmachine.rb +32 -7
  101. data/lib/slack/real_time/config.rb +7 -2
  102. data/lib/slack/real_time/models.rb +1 -0
  103. data/lib/slack/real_time/models/base.rb +1 -0
  104. data/lib/slack/real_time/models/bot.rb +1 -0
  105. data/lib/slack/real_time/models/channel.rb +1 -0
  106. data/lib/slack/real_time/models/group.rb +1 -0
  107. data/lib/slack/real_time/models/im.rb +1 -0
  108. data/lib/slack/real_time/models/team.rb +1 -0
  109. data/lib/slack/real_time/models/user.rb +1 -0
  110. data/lib/slack/real_time/socket.rb +42 -13
  111. data/lib/slack/real_time/stores.rb +1 -0
  112. data/lib/slack/real_time/stores/base.rb +1 -0
  113. data/lib/slack/real_time/stores/starter.rb +11 -0
  114. data/lib/slack/real_time/stores/store.rb +28 -25
  115. data/lib/slack/version.rb +2 -1
  116. data/lib/slack/web/api/endpoints.rb +41 -0
  117. data/lib/slack/web/api/endpoints/admin_apps.rb +42 -0
  118. data/lib/slack/web/api/endpoints/admin_apps_approved.rb +35 -0
  119. data/lib/slack/web/api/endpoints/admin_apps_requests.rb +33 -0
  120. data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +35 -0
  121. data/lib/slack/web/api/endpoints/admin_conversations.rb +30 -0
  122. data/lib/slack/web/api/endpoints/admin_emoji.rb +88 -0
  123. data/lib/slack/web/api/endpoints/admin_inviteRequests.rb +61 -0
  124. data/lib/slack/web/api/endpoints/admin_inviteRequests_approved.rb +33 -0
  125. data/lib/slack/web/api/endpoints/admin_inviteRequests_denied.rb +33 -0
  126. data/lib/slack/web/api/endpoints/admin_teams.rb +50 -0
  127. data/lib/slack/web/api/endpoints/admin_teams_admins.rb +34 -0
  128. data/lib/slack/web/api/endpoints/admin_teams_owners.rb +34 -0
  129. data/lib/slack/web/api/endpoints/admin_teams_settings.rb +99 -0
  130. data/lib/slack/web/api/endpoints/admin_users.rb +163 -0
  131. data/lib/slack/web/api/endpoints/admin_users_session.rb +28 -0
  132. data/lib/slack/web/api/endpoints/api.rb +1 -0
  133. data/lib/slack/web/api/endpoints/apps.rb +27 -0
  134. data/lib/slack/web/api/endpoints/apps_permissions.rb +1 -0
  135. data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +1 -0
  136. data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +1 -0
  137. data/lib/slack/web/api/endpoints/apps_permissions_users.rb +1 -0
  138. data/lib/slack/web/api/endpoints/auth.rb +1 -0
  139. data/lib/slack/web/api/endpoints/bots.rb +1 -0
  140. data/lib/slack/web/api/endpoints/channels.rb +3 -0
  141. data/lib/slack/web/api/endpoints/chat.rb +99 -12
  142. data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +38 -0
  143. data/lib/slack/web/api/endpoints/conversations.rb +4 -1
  144. data/lib/slack/web/api/endpoints/dialog.rb +1 -0
  145. data/lib/slack/web/api/endpoints/dnd.rb +3 -1
  146. data/lib/slack/web/api/endpoints/emoji.rb +1 -0
  147. data/lib/slack/web/api/endpoints/files.rb +4 -13
  148. data/lib/slack/web/api/endpoints/files_comments.rb +1 -33
  149. data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
  150. data/lib/slack/web/api/endpoints/groups.rb +1 -0
  151. data/lib/slack/web/api/endpoints/im.rb +1 -0
  152. data/lib/slack/web/api/endpoints/migration.rb +1 -0
  153. data/lib/slack/web/api/endpoints/mpim.rb +1 -0
  154. data/lib/slack/web/api/endpoints/oauth.rb +2 -1
  155. data/lib/slack/web/api/endpoints/oauth_v2.rb +30 -0
  156. data/lib/slack/web/api/endpoints/pins.rb +2 -4
  157. data/lib/slack/web/api/endpoints/reactions.rb +5 -6
  158. data/lib/slack/web/api/endpoints/reminders.rb +1 -0
  159. data/lib/slack/web/api/endpoints/rtm.rb +1 -0
  160. data/lib/slack/web/api/endpoints/search.rb +1 -0
  161. data/lib/slack/web/api/endpoints/stars.rb +1 -0
  162. data/lib/slack/web/api/endpoints/team.rb +3 -0
  163. data/lib/slack/web/api/endpoints/team_profile.rb +1 -0
  164. data/lib/slack/web/api/endpoints/usergroups.rb +1 -0
  165. data/lib/slack/web/api/endpoints/usergroups_users.rb +1 -0
  166. data/lib/slack/web/api/endpoints/users.rb +1 -2
  167. data/lib/slack/web/api/endpoints/users_admin.rb +1 -0
  168. data/lib/slack/web/api/endpoints/users_prefs.rb +1 -0
  169. data/lib/slack/web/api/endpoints/users_profile.rb +1 -0
  170. data/lib/slack/web/api/endpoints/views.rb +97 -0
  171. data/lib/slack/web/api/error.rb +1 -0
  172. data/lib/slack/web/api/errors.rb +566 -0
  173. data/lib/slack/web/api/errors/slack_error.rb +14 -1
  174. data/lib/slack/web/api/errors/too_many_requests_error.rb +1 -0
  175. data/lib/slack/web/api/mixins.rb +1 -0
  176. data/lib/slack/web/api/mixins/channels.id.rb +1 -0
  177. data/lib/slack/web/api/mixins/groups.id.rb +1 -0
  178. data/lib/slack/web/api/mixins/ids.id.rb +4 -1
  179. data/lib/slack/web/api/mixins/users.id.rb +1 -0
  180. data/lib/slack/web/api/mixins/users.search.rb +1 -0
  181. data/lib/slack/web/api/patches/chat.5.postEphemeral-text-or-attachments.patch +5 -3
  182. data/lib/slack/web/api/patches/chat.6.block-kit-support.patch +69 -0
  183. data/lib/slack/web/api/patches/views.1.view-json.patch +40 -0
  184. data/lib/slack/web/api/patches/views.1.views-published.patch +16 -0
  185. data/lib/slack/web/api/templates/command.erb +1 -0
  186. data/lib/slack/web/api/templates/commands.erb +1 -0
  187. data/lib/slack/web/api/templates/endpoints.erb +1 -0
  188. data/lib/slack/web/api/templates/errors.erb +20 -0
  189. data/lib/slack/web/api/templates/method.erb +1 -0
  190. data/lib/slack/web/api/templates/method_spec.erb +1 -0
  191. data/lib/slack/web/client.rb +2 -1
  192. data/lib/slack/web/config.rb +1 -0
  193. data/lib/slack/web/faraday/connection.rb +1 -0
  194. data/lib/slack/web/faraday/request.rb +1 -0
  195. data/lib/slack/web/faraday/response/raise_error.rb +10 -6
  196. data/lib/slack/web/pagination/cursor.rb +4 -0
  197. data/lib/slack_ruby_client.rb +1 -0
  198. data/lib/tasks/git.rake +1 -0
  199. data/lib/tasks/real_time.rake +15 -5
  200. data/lib/tasks/update.rake +1 -0
  201. data/lib/tasks/web.rake +28 -7
  202. data/screenshots/create-app.png +0 -0
  203. data/slack-ruby-client.gemspec +6 -2
  204. data/spec/fixtures/slack/web/views_open_error.yml +76 -0
  205. data/spec/integration/integration_spec.rb +116 -48
  206. data/spec/slack/config_spec.rb +2 -0
  207. data/spec/slack/events/config_spec.rb +33 -0
  208. data/spec/slack/events/request_spec.rb +179 -0
  209. data/spec/slack/messages/formatting_spec.rb +25 -13
  210. data/spec/slack/real_time/api/message_spec.rb +6 -1
  211. data/spec/slack/real_time/api/ping_spec.rb +2 -0
  212. data/spec/slack/real_time/api/typing_spec.rb +5 -1
  213. data/spec/slack/real_time/client_spec.rb +212 -31
  214. data/spec/slack/real_time/concurrency/celluloid_spec.rb +15 -5
  215. data/spec/slack/real_time/concurrency/eventmachine_spec.rb +11 -1
  216. data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
  217. data/spec/slack/real_time/event_handlers/bot_spec.rb +2 -1
  218. data/spec/slack/real_time/event_handlers/channel_spec.rb +9 -6
  219. data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
  220. data/spec/slack/real_time/event_handlers/group_spec.rb +5 -4
  221. data/spec/slack/real_time/event_handlers/im_spec.rb +4 -3
  222. data/spec/slack/real_time/event_handlers/team_spec.rb +3 -1
  223. data/spec/slack/real_time/event_handlers/user_spec.rb +1 -0
  224. data/spec/slack/real_time/rtm_connect_spec.rb +1 -0
  225. data/spec/slack/real_time/rtm_start_spec.rb +1 -0
  226. data/spec/slack/real_time/store_spec.rb +2 -1
  227. data/spec/slack/slack_spec.rb +37 -5
  228. data/spec/slack/version_spec.rb +2 -1
  229. data/spec/slack/web/api/endpoints/admin_apps_approved_spec.rb +8 -0
  230. data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +8 -0
  231. data/spec/slack/web/api/endpoints/admin_apps_restricted_spec.rb +8 -0
  232. data/spec/slack/web/api/endpoints/admin_apps_spec.rb +8 -0
  233. data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +13 -0
  234. data/spec/slack/web/api/endpoints/admin_emoji_spec.rb +37 -0
  235. data/spec/slack/web/api/endpoints/admin_inviteRequests_approved_spec.rb +8 -0
  236. data/spec/slack/web/api/endpoints/admin_inviteRequests_denied_spec.rb +8 -0
  237. data/spec/slack/web/api/endpoints/admin_inviteRequests_spec.rb +18 -0
  238. data/spec/slack/web/api/endpoints/admin_teams_admins_spec.rb +13 -0
  239. data/spec/slack/web/api/endpoints/admin_teams_owners_spec.rb +13 -0
  240. data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +53 -0
  241. data/spec/slack/web/api/endpoints/admin_teams_spec.rb +16 -0
  242. data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +13 -0
  243. data/spec/slack/web/api/endpoints/admin_users_spec.rb +75 -0
  244. data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
  245. data/spec/slack/web/api/endpoints/apps_permissions_resources_spec.rb +1 -0
  246. data/spec/slack/web/api/endpoints/apps_permissions_scopes_spec.rb +1 -0
  247. data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +3 -2
  248. data/spec/slack/web/api/endpoints/apps_permissions_users_spec.rb +4 -3
  249. data/spec/slack/web/api/endpoints/apps_spec.rb +16 -0
  250. data/spec/slack/web/api/endpoints/bots_spec.rb +1 -0
  251. data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +8 -0
  252. data/spec/slack/web/api/endpoints/conversations_spec.rb +2 -1
  253. data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +5 -1
  254. data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +2 -0
  255. data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +112 -36
  256. data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +12 -4
  257. data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +2 -0
  258. data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +6 -1
  259. data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +95 -0
  260. data/spec/slack/web/api/endpoints/dnd_spec.rb +6 -0
  261. data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
  262. data/spec/slack/web/api/endpoints/files_comments_spec.rb +1 -19
  263. data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
  264. data/spec/slack/web/api/endpoints/files_spec.rb +1 -0
  265. data/spec/slack/web/api/endpoints/im_spec.rb +1 -0
  266. data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
  267. data/spec/slack/web/api/endpoints/mpim_spec.rb +1 -0
  268. data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -0
  269. data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +13 -0
  270. data/spec/slack/web/api/endpoints/pins_spec.rb +5 -1
  271. data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
  272. data/spec/slack/web/api/endpoints/reminders_spec.rb +1 -0
  273. data/spec/slack/web/api/endpoints/rtm_spec.rb +1 -0
  274. data/spec/slack/web/api/endpoints/search_spec.rb +1 -0
  275. data/spec/slack/web/api/endpoints/stars_spec.rb +1 -0
  276. data/spec/slack/web/api/endpoints/team_profile_spec.rb +1 -0
  277. data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
  278. data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
  279. data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +1 -0
  280. data/spec/slack/web/api/endpoints/users_admin_spec.rb +1 -0
  281. data/spec/slack/web/api/endpoints/users_prefs_spec.rb +1 -0
  282. data/spec/slack/web/api/endpoints/users_profile_spec.rb +1 -0
  283. data/spec/slack/web/api/endpoints/views_spec.rb +29 -0
  284. data/spec/slack/web/api/error_spec.rb +4 -2
  285. data/spec/slack/web/api/errors/service_unavailable_spec.rb +6 -3
  286. data/spec/slack/web/api/errors/slack_error_spec.rb +26 -2
  287. data/spec/slack/web/api/mixins/channels_spec.rb +17 -7
  288. data/spec/slack/web/api/mixins/groups_spec.rb +17 -7
  289. data/spec/slack/web/api/mixins/users_spec.rb +17 -8
  290. data/spec/slack/web/api/pagination/cursor_spec.rb +40 -10
  291. data/spec/slack/web/client_spec.rb +45 -18
  292. data/spec/slack/web/faraday/response/raise_error_spec.rb +41 -7
  293. data/spec/spec_helper.rb +8 -1
  294. data/spec/support/queue_with_timeout.rb +5 -4
  295. data/spec/support/real_time/concurrency/mock.rb +1 -0
  296. data/spec/support/real_time/connected_client.rb +9 -3
  297. data/spec/support/real_time/event.rb +1 -0
  298. data/spec/support/token.rb +1 -0
  299. data/spec/support/vcr.rb +1 -0
  300. metadata +149 -9
  301. data/screenshots/register-bot.png +0 -0
@@ -1,13 +1,16 @@
1
+ # frozen_string_literal: true
1
2
  require 'spec_helper'
2
3
 
3
4
  RSpec.describe Slack::Web::Client do
4
- let(:client) { Slack::Web::Client.new }
5
- it 'raises a Faraday::ClientError when Slack is unavailable', vcr: { cassette_name: 'web/503_error' } 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
6
9
  begin
7
10
  client.auth_test
8
11
  raise 'Expected to receive Faraday::ClientError.'
9
12
  rescue Faraday::ClientError => e
10
- expect(e.response).to_not be_nil
13
+ expect(e.response).not_to be_nil
11
14
  expect(e.response[:status]).to eq 503
12
15
  end
13
16
  end
@@ -1,14 +1,38 @@
1
+ # frozen_string_literal: true
1
2
  require 'spec_helper'
2
3
 
3
4
  RSpec.describe Slack::Web::Api::Errors::SlackError do
4
5
  let(:client) { Slack::Web::Client.new }
6
+
5
7
  it 'provides access to the response object', vcr: { cassette_name: 'web/auth_test_error' } do
6
8
  begin
7
9
  client.auth_test
8
10
  raise 'Expected to receive Slack::Web::Api::Errors::SlackError.'
9
- rescue Slack::Web::Api::Errors::SlackError => e
10
- expect(e.response).to_not be_nil
11
+ rescue described_class => e
12
+ expect(e.response).not_to be_nil
13
+ expect(e.response.status).to eq 200
14
+ expect(e.message).to eql 'not_authed'
15
+ expect(e.error).to eql 'not_authed'
16
+ expect(e.response_metadata).to be_nil
17
+ end
18
+ end
19
+
20
+ it 'provides access to any response_metadata', vcr: { cassette_name: 'web/views_open_error' } do
21
+ begin
22
+ client.views_open(trigger_id: 'trigger_id', view: {})
23
+ raise 'Expected to receive Slack::Web::Api::Errors::SlackError.'
24
+ rescue described_class => e
25
+ expect(e.response).not_to be_nil
11
26
  expect(e.response.status).to eq 200
27
+ expect(e.message).to eql 'invalid_arguments'
28
+ expect(e.error).to eql 'invalid_arguments'
29
+ expect(e.response_metadata).to eq(
30
+ 'messages' => [
31
+ "[ERROR] missing required field: title [json-pointer:\/view]",
32
+ "[ERROR] missing required field: blocks [json-pointer:\/view]",
33
+ "[ERROR] missing required field: type [json-pointer:\/view]"
34
+ ]
35
+ )
12
36
  end
13
37
  end
14
38
  end
@@ -1,16 +1,19 @@
1
+ # frozen_string_literal: true
1
2
  require 'spec_helper'
2
3
 
3
4
  RSpec.describe Slack::Web::Api::Mixins::Channels do
5
+ subject(:channels) do
6
+ klass.new
7
+ end
8
+
4
9
  let(:klass) do
5
10
  Class.new do
6
11
  include Slack::Web::Api::Mixins::Channels
7
12
  end
8
13
  end
9
- subject do
10
- klass.new
11
- end
14
+
12
15
  before do
13
- allow(subject).to receive(:channels_list).and_return(
16
+ allow(channels).to receive(:channels_list).and_return(
14
17
  Slack::Messages::Message.new(
15
18
  'channels' => [{
16
19
  'id' => 'CDEADBEEF',
@@ -19,15 +22,22 @@ RSpec.describe Slack::Web::Api::Mixins::Channels do
19
22
  )
20
23
  )
21
24
  end
25
+
22
26
  context '#channels_id' do
23
27
  it 'leaves channels specified by ID alone' do
24
- expect(subject.channels_id(channel: 'C123456')).to eq('ok' => true, 'channel' => { 'id' => 'C123456' })
28
+ expect(channels.channels_id(channel: 'C123456')).to(
29
+ eq('ok' => true, 'channel' => { 'id' => 'C123456' })
30
+ )
25
31
  end
26
32
  it 'translates a channel that starts with a #' do
27
- expect(subject.channels_id(channel: '#general')).to eq('ok' => true, 'channel' => { 'id' => 'CDEADBEEF' })
33
+ expect(channels.channels_id(channel: '#general')).to(
34
+ eq('ok' => true, 'channel' => { 'id' => 'CDEADBEEF' })
35
+ )
28
36
  end
29
37
  it 'fails with an exception' do
30
- expect { subject.channels_id(channel: '#invalid') }.to raise_error Slack::Web::Api::Errors::SlackError, 'channel_not_found'
38
+ expect { channels.channels_id(channel: '#invalid') }.to(
39
+ raise_error(Slack::Web::Api::Errors::SlackError, 'channel_not_found')
40
+ )
31
41
  end
32
42
  end
33
43
  end
@@ -1,16 +1,19 @@
1
+ # frozen_string_literal: true
1
2
  require 'spec_helper'
2
3
 
3
4
  RSpec.describe Slack::Web::Api::Mixins::Groups do
5
+ subject(:groups) do
6
+ klass.new
7
+ end
8
+
4
9
  let(:klass) do
5
10
  Class.new do
6
11
  include Slack::Web::Api::Mixins::Groups
7
12
  end
8
13
  end
9
- subject do
10
- klass.new
11
- end
14
+
12
15
  before do
13
- allow(subject).to receive(:groups_list).and_return(
16
+ allow(groups).to receive(:groups_list).and_return(
14
17
  Slack::Messages::Message.new(
15
18
  'groups' => [{
16
19
  'id' => 'CDEADBEEF',
@@ -19,15 +22,22 @@ RSpec.describe Slack::Web::Api::Mixins::Groups do
19
22
  )
20
23
  )
21
24
  end
25
+
22
26
  context '#groups_id' do
23
27
  it 'leaves groups specified by ID alone' do
24
- expect(subject.groups_id(channel: 'C123456')).to eq('ok' => true, 'group' => { 'id' => 'C123456' })
28
+ expect(groups.groups_id(channel: 'C123456')).to(
29
+ eq('ok' => true, 'group' => { 'id' => 'C123456' })
30
+ )
25
31
  end
26
32
  it 'translates a channel that starts with a #' do
27
- expect(subject.groups_id(channel: '#general')).to eq('ok' => true, 'group' => { 'id' => 'CDEADBEEF' })
33
+ expect(groups.groups_id(channel: '#general')).to(
34
+ eq('ok' => true, 'group' => { 'id' => 'CDEADBEEF' })
35
+ )
28
36
  end
29
37
  it 'fails with an exception' do
30
- expect { subject.groups_id(channel: '#invalid') }.to raise_error Slack::Web::Api::Errors::SlackError, 'channel_not_found'
38
+ expect { groups.groups_id(channel: '#invalid') }.to(
39
+ raise_error(Slack::Web::Api::Errors::SlackError, 'channel_not_found')
40
+ )
31
41
  end
32
42
  end
33
43
  end
@@ -1,16 +1,19 @@
1
+ # frozen_string_literal: true
1
2
  require 'spec_helper'
2
3
 
3
4
  RSpec.describe Slack::Web::Api::Mixins::Users do
5
+ subject(:users) do
6
+ klass.new
7
+ end
8
+
4
9
  let(:klass) do
5
10
  Class.new do
6
11
  include Slack::Web::Api::Mixins::Users
7
12
  end
8
13
  end
9
- subject do
10
- klass.new
11
- end
14
+
12
15
  before do
13
- allow(subject).to receive(:users_list).and_return(
16
+ allow(users).to receive(:users_list).and_return(
14
17
  Slack::Messages::Message.new(
15
18
  'members' => [{
16
19
  'id' => 'UDEADBEEF',
@@ -20,21 +23,27 @@ RSpec.describe Slack::Web::Api::Mixins::Users do
20
23
  )
21
24
  )
22
25
  end
26
+
23
27
  context '#users_id' do
24
28
  it 'leaves users specified by ID alone' do
25
- expect(subject.users_id(user: 'U123456')).to eq('ok' => true, 'user' => { 'id' => 'U123456' })
29
+ expect(users.users_id(user: 'U123456')).to eq('ok' => true, 'user' => { 'id' => 'U123456' })
26
30
  end
27
31
  it 'translates a user that starts with a #' do
28
- expect(subject.users_id(user: '@aws')).to eq('ok' => true, 'user' => { 'id' => 'UDEADBEEF' })
32
+ expect(users.users_id(user: '@aws')).to eq('ok' => true, 'user' => { 'id' => 'UDEADBEEF' })
29
33
  end
30
34
  it 'fails with an exception' do
31
- expect { subject.users_id(user: '@foo') }.to raise_error Slack::Web::Api::Errors::SlackError, 'user_not_found'
35
+ expect { users.users_id(user: '@foo') }.to(
36
+ raise_error(Slack::Web::Api::Errors::SlackError, 'user_not_found')
37
+ )
32
38
  end
33
39
  end
40
+
34
41
  if defined?(Picky)
35
42
  context '#users_search' do
36
43
  it 'finds a user' do
37
- expect(subject.users_search(user: 'aws')).to eq('ok' => true, 'members' => [{ 'id' => 'UDEADBEEF', 'name' => 'aws', 'profile' => {} }])
44
+ expect(users.users_search(user: 'aws')).to(
45
+ eq('ok' => true, 'members' => [{ 'id' => 'UDEADBEEF', 'name' => 'aws', 'profile' => {} }])
46
+ )
38
47
  end
39
48
  end
40
49
  end
@@ -1,9 +1,12 @@
1
+ # frozen_string_literal: true
1
2
  require 'spec_helper'
2
3
 
3
4
  RSpec.describe Slack::Web::Api::Pagination::Cursor do
4
5
  let(:client) { Slack::Web::Client.new }
6
+
5
7
  context 'default cursor' do
6
- let(:cursor) { Slack::Web::Api::Pagination::Cursor.new(client, 'users_list', {}) }
8
+ let(:cursor) { described_class.new(client, 'users_list', {}) }
9
+
7
10
  it 'provides a default limit' do
8
11
  expect(client).to receive(:users_list).with(limit: 100, cursor: nil)
9
12
  cursor.first
@@ -13,7 +16,9 @@ RSpec.describe Slack::Web::Api::Pagination::Cursor do
13
16
  cursor.to_a
14
17
  end
15
18
  it 'handles nil response metadata' do
16
- expect(client).to receive(:users_list).once.and_return(Slack::Messages::Message.new(response_metadata: nil))
19
+ expect(client).to(
20
+ receive(:users_list).once.and_return(Slack::Messages::Message.new(response_metadata: nil))
21
+ )
17
22
  cursor.to_a
18
23
  end
19
24
  it 'paginates with a cursor inside response metadata' do
@@ -26,21 +31,42 @@ RSpec.describe Slack::Web::Api::Pagination::Cursor do
26
31
  end
27
32
  context 'with rate limiting' do
28
33
  let(:error) { Slack::Web::Api::Errors::TooManyRequestsError.new(nil) }
34
+
29
35
  context 'with default max retries' do
30
36
  it 'sleeps after a TooManyRequestsError' do
31
- expect(client).to receive(:users_list).with(limit: 100, cursor: nil).ordered.and_return(Slack::Messages::Message.new(response_metadata: { next_cursor: 'next' }))
32
- expect(client).to receive(:users_list).with(limit: 100, cursor: 'next').ordered.and_raise(error)
37
+ expect(client).to(
38
+ receive(:users_list)
39
+ .with(limit: 100, cursor: nil)
40
+ .ordered
41
+ .and_return(Slack::Messages::Message.new(response_metadata: { next_cursor: 'next' }))
42
+ )
43
+ expect(client).to(
44
+ receive(:users_list).with(limit: 100, cursor: 'next').ordered.and_raise(error)
45
+ )
33
46
  expect(error).to receive(:retry_after).once.ordered.and_return(9)
34
47
  expect(cursor).to receive(:sleep).once.ordered.with(9)
35
- expect(client).to receive(:users_list).with(limit: 100, cursor: 'next').ordered.and_return(Slack::Messages::Message.new)
48
+ expect(client).to(
49
+ receive(:users_list)
50
+ .with(limit: 100, cursor: 'next')
51
+ .ordered
52
+ .and_return(Slack::Messages::Message.new)
53
+ )
36
54
  cursor.to_a
37
55
  end
38
56
  end
57
+
39
58
  context 'with a custom max_retries' do
40
- let(:cursor) { Slack::Web::Api::Pagination::Cursor.new(client, 'users_list', max_retries: 4) }
59
+ let(:cursor) { described_class.new(client, 'users_list', max_retries: 4) }
60
+
41
61
  it 'raises the error after hitting the max retries' do
42
- expect(client).to receive(:users_list).with(limit: 100, cursor: nil).and_return(Slack::Messages::Message.new(response_metadata: { next_cursor: 'next' }))
43
- expect(client).to receive(:users_list).with(limit: 100, cursor: 'next').exactly(5).times.and_raise(error)
62
+ expect(client).to(
63
+ receive(:users_list)
64
+ .with(limit: 100, cursor: nil)
65
+ .and_return(Slack::Messages::Message.new(response_metadata: { next_cursor: 'next' }))
66
+ )
67
+ expect(client).to(
68
+ receive(:users_list).with(limit: 100, cursor: 'next').exactly(5).times.and_raise(error)
69
+ )
44
70
  expect(error).to receive(:retry_after).exactly(4).times.and_return(9)
45
71
  expect(cursor).to receive(:sleep).exactly(4).times.with(9)
46
72
  expect { cursor.to_a }.to raise_error(error)
@@ -48,15 +74,19 @@ RSpec.describe Slack::Web::Api::Pagination::Cursor do
48
74
  end
49
75
  end
50
76
  end
77
+
51
78
  context 'with a custom limit' do
52
- let(:cursor) { Slack::Web::Api::Pagination::Cursor.new(client, 'users_list', limit: 42) }
79
+ let(:cursor) { described_class.new(client, 'users_list', limit: 42) }
80
+
53
81
  it 'overrides default limit' do
54
82
  expect(client).to receive(:users_list).with(limit: 42, cursor: nil)
55
83
  cursor.first
56
84
  end
57
85
  end
86
+
58
87
  context 'with a custom sleep_interval' do
59
- let(:cursor) { Slack::Web::Api::Pagination::Cursor.new(client, 'users_list', sleep_interval: 3) }
88
+ let(:cursor) { described_class.new(client, 'users_list', sleep_interval: 3) }
89
+
60
90
  it 'sleeps between requests' do
61
91
  expect(client).to receive(:users_list).exactly(3).times.and_return(
62
92
  Slack::Messages::Message.new(response_metadata: { next_cursor: 'next_a' }),
@@ -1,11 +1,14 @@
1
+ # frozen_string_literal: true
1
2
  require 'spec_helper'
2
3
 
3
4
  RSpec.describe Slack::Web::Client do
4
5
  before do
5
6
  Slack::Config.reset
6
7
  end
8
+
7
9
  context 'with defaults' do
8
- let(:client) { Slack::Web::Client.new }
10
+ let(:client) { described_class.new }
11
+
9
12
  describe '#initialize' do
10
13
  it 'sets user-agent' do
11
14
  expect(client.user_agent).to eq Slack::Web::Config.user_agent
@@ -18,30 +21,36 @@ RSpec.describe Slack::Web::Client do
18
21
  end
19
22
  end
20
23
  end
24
+
21
25
  context 'with custom settings' do
22
26
  describe '#initialize' do
23
27
  Slack::Web::Config::ATTRIBUTES.each do |key|
24
- context key do
25
- let(:client) { Slack::Web::Client.new(key => 'custom') }
28
+ context key.to_s do
29
+ let(:client) { described_class.new(key => 'custom') }
30
+
26
31
  it "sets #{key}" do
27
- expect(client.send(key)).to_not eq Slack::Web::Config.send(key)
32
+ expect(client.send(key)).not_to eq Slack::Web::Config.send(key)
28
33
  expect(client.send(key)).to eq 'custom'
29
34
  end
30
35
  end
31
36
  end
32
37
  end
33
38
  end
39
+
34
40
  context 'global config' do
35
41
  after do
36
- Slack::Web::Client.config.reset
42
+ described_class.config.reset
37
43
  end
38
- let(:client) { Slack::Web::Client.new }
44
+
45
+ let(:client) { described_class.new }
46
+
39
47
  context 'user-agent' do
40
48
  before do
41
- Slack::Web::Client.configure do |config|
49
+ described_class.configure do |config|
42
50
  config.user_agent = 'custom/user-agent'
43
51
  end
44
52
  end
53
+
45
54
  describe '#initialize' do
46
55
  it 'sets user-agent' do
47
56
  expect(client.user_agent).to eq 'custom/user-agent'
@@ -54,38 +63,43 @@ RSpec.describe Slack::Web::Client do
54
63
  end
55
64
  end
56
65
  end
66
+
57
67
  context 'token' do
58
68
  before do
59
69
  Slack.configure do |config|
60
70
  config.token = 'global default'
61
71
  end
62
72
  end
73
+
63
74
  it 'defaults token to global default' do
64
- client = Slack::Web::Client.new
75
+ client = described_class.new
65
76
  expect(client.token).to eq 'global default'
66
77
  end
67
78
  context 'with web config' do
68
79
  before do
69
- Slack::Web::Client.configure do |config|
80
+ described_class.configure do |config|
70
81
  config.token = 'custom web token'
71
82
  end
72
83
  end
84
+
73
85
  it 'overrides token to web config' do
74
- client = Slack::Web::Client.new
86
+ client = described_class.new
75
87
  expect(client.token).to eq 'custom web token'
76
88
  end
77
89
  it 'overrides token to specific token' do
78
- client = Slack::Web::Client.new(token: 'local token')
90
+ client = described_class.new(token: 'local token')
79
91
  expect(client.token).to eq 'local token'
80
92
  end
81
93
  end
82
94
  end
95
+
83
96
  context 'proxy' do
84
97
  before do
85
- Slack::Web::Client.configure do |config|
98
+ described_class.configure do |config|
86
99
  config.proxy = 'http://localhost:8080'
87
100
  end
88
101
  end
102
+
89
103
  describe '#initialize' do
90
104
  it 'sets proxy' do
91
105
  expect(client.proxy).to eq 'http://localhost:8080'
@@ -95,13 +109,15 @@ RSpec.describe Slack::Web::Client do
95
109
  end
96
110
  end
97
111
  end
112
+
98
113
  context 'SSL options' do
99
114
  before do
100
- Slack::Web::Client.configure do |config|
115
+ described_class.configure do |config|
101
116
  config.ca_path = '/ca_path'
102
117
  config.ca_file = '/ca_file'
103
118
  end
104
119
  end
120
+
105
121
  describe '#initialize' do
106
122
  it 'sets ca_path and ca_file' do
107
123
  expect(client.ca_path).to eq '/ca_path'
@@ -114,13 +130,16 @@ RSpec.describe Slack::Web::Client do
114
130
  end
115
131
  end
116
132
  end
133
+
117
134
  context 'logger option' do
118
135
  let(:logger) { Logger.new(STDOUT) }
136
+
119
137
  before do
120
- Slack::Web::Client.configure do |config|
138
+ described_class.configure do |config|
121
139
  config.logger = logger
122
140
  end
123
141
  end
142
+
124
143
  describe '#initialize' do
125
144
  it 'sets logger' do
126
145
  expect(client.logger).to eq logger
@@ -130,13 +149,15 @@ RSpec.describe Slack::Web::Client do
130
149
  end
131
150
  end
132
151
  end
152
+
133
153
  context 'timeout options' do
134
154
  before do
135
- Slack::Web::Client.configure do |config|
155
+ described_class.configure do |config|
136
156
  config.timeout = 10
137
157
  config.open_timeout = 15
138
158
  end
139
159
  end
160
+
140
161
  describe '#initialize' do
141
162
  it 'sets timeout and open_timeout' do
142
163
  expect(client.timeout).to eq 10
@@ -149,13 +170,15 @@ RSpec.describe Slack::Web::Client do
149
170
  end
150
171
  end
151
172
  end
173
+
152
174
  context 'per-request options' do
153
175
  it 'applies timeout', vcr: { cassette_name: 'web/rtm_start', allow_playback_repeats: true } do
154
176
  # reuse the same connection for the test, otherwise it creates a new one every time
155
177
  conn = client.send(:connection)
156
178
  expect(client).to receive(:connection).and_return(conn)
157
179
 
158
- # get the yielded request to reuse in the next call to rtm_start so that we can examine request.options later
180
+ # get the yielded request to reuse in the next call to
181
+ # rtm_start so that we can examine request.options later
159
182
  request = nil
160
183
  response = conn.post do |r|
161
184
  r.path = 'rtm.start'
@@ -170,10 +193,14 @@ RSpec.describe Slack::Web::Client do
170
193
  expect(request.options.timeout).to eq 3
171
194
  end
172
195
  end
196
+
173
197
  context 'calling undocumented methods' do
174
- let(:client) { Slack::Web::Client.new }
198
+ let(:client) { described_class.new }
199
+
175
200
  it 'produces a warning' do
176
- expect(client.logger).to receive(:warn).with('The users.admin.setInactive method is undocumented.')
201
+ expect(client.logger).to(
202
+ receive(:warn).with('The users.admin.setInactive method is undocumented.')
203
+ )
177
204
  expect(client).to receive(:post)
178
205
  client.users_admin_setInactive(user: 'U092BDCLV')
179
206
  end