slack-ruby-client 0.11.1 → 1.1.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/.github/workflows/danger.yml +19 -0
- data/.github/workflows/integtest.yml +25 -0
- data/.github/workflows/rubocop.yml +13 -0
- data/.github/workflows/test.yml +34 -0
- data/.gitignore +6 -3
- data/.rubocop.yml +36 -2
- data/.rubocop_todo.yml +186 -54
- data/CHANGELOG.md +156 -31
- data/CONTRIBUTING.md +20 -9
- data/Dangerfile +2 -0
- data/Gemfile +27 -6
- data/Gemfile.danger +6 -0
- data/LICENSE.md +1 -1
- data/README.md +199 -52
- data/RELEASING.md +2 -2
- data/Rakefile +2 -1
- data/UPGRADING.md +89 -3
- data/bin/commands/admin_analytics.rb +16 -0
- data/bin/commands/admin_apps.rb +51 -0
- data/bin/commands/admin_apps_approved.rb +17 -0
- data/bin/commands/admin_apps_requests.rb +28 -0
- data/bin/commands/admin_apps_restricted.rb +17 -0
- data/bin/commands/admin_auth_policy.rb +39 -0
- data/bin/commands/admin_barriers.rb +47 -0
- data/bin/commands/admin_conversations.rb +170 -0
- 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 +54 -0
- data/bin/commands/admin_inviteRequests.rb +36 -0
- data/bin/commands/admin_inviteRequests_approved.rb +16 -0
- data/bin/commands/admin_inviteRequests_denied.rb +16 -0
- data/bin/commands/admin_teams.rb +27 -0
- data/bin/commands/admin_teams_admins.rb +16 -0
- data/bin/commands/admin_teams_owners.rb +16 -0
- data/bin/commands/admin_teams_settings.rb +64 -0
- data/bin/commands/admin_usergroups.rb +48 -0
- data/bin/commands/admin_users.rb +98 -0
- data/bin/commands/admin_users_session.rb +78 -0
- data/bin/commands/admin_users_unsupportedVersions.rb +15 -0
- data/bin/commands/api.rb +1 -1
- data/bin/commands/apps.rb +15 -0
- data/bin/commands/apps_connections.rb +13 -0
- data/bin/commands/apps_event_authorizations.rb +16 -0
- data/bin/commands/apps_manifest.rb +52 -0
- data/bin/commands/apps_permissions.rb +1 -0
- data/bin/commands/apps_permissions_resources.rb +15 -0
- data/bin/commands/apps_permissions_scopes.rb +13 -0
- data/bin/commands/apps_permissions_users.rb +26 -0
- data/bin/commands/auth.rb +1 -0
- data/bin/commands/auth_teams.rb +16 -0
- data/bin/commands/bookmarks.rb +52 -0
- data/bin/commands/bots.rb +2 -0
- data/bin/commands/calls.rb +52 -0
- data/bin/commands/calls_participants.rb +25 -0
- data/bin/commands/channels.rb +1 -153
- data/bin/commands/chat.rb +57 -12
- data/bin/commands/chat_scheduledMessages.rb +19 -0
- data/bin/commands/conversations.rb +75 -4
- data/bin/commands/dialog.rb +1 -0
- data/bin/commands/dnd.rb +6 -3
- data/bin/commands/emoji.rb +1 -0
- data/bin/commands/files.rb +14 -19
- data/bin/commands/files_comments.rb +1 -21
- data/bin/commands/files_remote.rb +78 -0
- data/bin/commands/groups.rb +1 -159
- data/bin/commands/im.rb +1 -62
- data/bin/commands/migration.rb +2 -0
- data/bin/commands/mpim.rb +1 -58
- data/bin/commands/oauth.rb +4 -15
- data/bin/commands/oauth_v2.rb +29 -0
- data/bin/commands/openid_connect.rb +27 -0
- data/bin/commands/pins.rb +3 -6
- data/bin/commands/reactions.rb +5 -3
- data/bin/commands/reminders.rb +7 -0
- data/bin/commands/rtm.rb +7 -4
- data/bin/commands/search.rb +8 -3
- data/bin/commands/stars.rb +10 -6
- data/bin/commands/team.rb +6 -0
- data/bin/commands/team_billing.rb +13 -0
- data/bin/commands/team_preferences.rb +13 -0
- data/bin/commands/team_profile.rb +1 -0
- data/bin/commands/tooling_tokens.rb +14 -0
- data/bin/commands/usergroups.rb +7 -1
- data/bin/commands/usergroups_users.rb +3 -0
- data/bin/commands/users.rb +21 -6
- data/bin/commands/users_admin.rb +1 -0
- data/bin/commands/users_prefs.rb +1 -0
- data/bin/commands/users_profile.rb +7 -6
- data/bin/commands/views.rb +48 -0
- data/bin/commands/workflows.rb +38 -0
- data/bin/commands.rb +40 -5
- data/bin/slack +2 -3
- data/examples/hi_real_time_and_web/Gemfile +1 -0
- data/examples/hi_real_time_and_web/hi.rb +7 -3
- data/examples/{hi_real_time_async_eventmachine → hi_real_time_async_async}/Gemfile +2 -1
- data/examples/{hi_real_time_async_celluloid → hi_real_time_async_async}/Procfile +0 -0
- data/examples/{hi_real_time_async_celluloid → hi_real_time_async_async}/hi.rb +12 -7
- data/examples/hi_web/Gemfile +1 -0
- data/examples/hi_web/hi.rb +1 -0
- data/examples/new_ticket/Gemfile +1 -0
- data/examples/new_ticket/new_ticket.rb +1 -0
- data/lib/slack/config.rb +2 -2
- data/lib/slack/events/config.rb +32 -0
- data/lib/slack/events/request.rb +72 -0
- data/lib/slack/logger.rb +6 -5
- data/lib/slack/messages/formatting.rb +1 -1
- data/lib/slack/messages/message.rb +1 -4
- data/lib/slack/real_time/api/message.rb +3 -1
- data/lib/slack/real_time/api/message_id.rb +1 -0
- data/lib/slack/real_time/api/ping.rb +5 -2
- data/lib/slack/real_time/api/typing.rb +3 -1
- data/lib/slack/real_time/client.rb +103 -34
- data/lib/slack/real_time/concurrency/async.rb +138 -0
- data/lib/slack/real_time/concurrency.rb +2 -2
- data/lib/slack/real_time/config.rb +6 -10
- data/lib/slack/real_time/models/base.rb +1 -4
- data/lib/slack/real_time/models/bot.rb +1 -0
- data/lib/slack/real_time/models/channel.rb +1 -0
- data/lib/slack/real_time/models/group.rb +1 -0
- data/lib/slack/real_time/models/im.rb +1 -0
- data/lib/slack/real_time/models/team.rb +1 -0
- data/lib/slack/real_time/models/user.rb +1 -0
- data/lib/slack/real_time/models.rb +1 -0
- data/lib/slack/real_time/socket.rb +45 -17
- data/lib/slack/real_time/stores/base.rb +5 -7
- data/lib/slack/real_time/stores/starter.rb +27 -3
- data/lib/slack/real_time/stores/store.rb +43 -25
- data/lib/slack/real_time/stores.rb +1 -0
- data/lib/slack/version.rb +2 -1
- data/lib/slack/web/api/endpoints/admin_analytics.rb +28 -0
- data/lib/slack/web/api/endpoints/admin_apps.rb +78 -0
- data/lib/slack/web/api/endpoints/admin_apps_approved.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +51 -0
- data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +35 -0
- 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 +262 -0
- 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 +88 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests.rb +61 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests_approved.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_inviteRequests_denied.rb +33 -0
- data/lib/slack/web/api/endpoints/admin_teams.rb +50 -0
- data/lib/slack/web/api/endpoints/admin_teams_admins.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_teams_owners.rb +34 -0
- data/lib/slack/web/api/endpoints/admin_teams_settings.rb +99 -0
- data/lib/slack/web/api/endpoints/admin_usergroups.rb +77 -0
- data/lib/slack/web/api/endpoints/admin_users.rb +163 -0
- data/lib/slack/web/api/endpoints/admin_users_session.rb +122 -0
- data/lib/slack/web/api/endpoints/admin_users_unsupportedVersions.rb +25 -0
- data/lib/slack/web/api/endpoints/api.rb +2 -3
- data/lib/slack/web/api/endpoints/apps.rb +27 -0
- 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 +77 -0
- data/lib/slack/web/api/endpoints/apps_permissions.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +31 -0
- data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +21 -0
- data/lib/slack/web/api/endpoints/apps_permissions_users.rb +50 -0
- data/lib/slack/web/api/endpoints/auth.rb +2 -1
- data/lib/slack/web/api/endpoints/auth_teams.rb +33 -0
- data/lib/slack/web/api/endpoints/bookmarks.rb +86 -0
- data/lib/slack/web/api/endpoints/bots.rb +4 -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 +2 -243
- data/lib/slack/web/api/endpoints/chat.rb +145 -46
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +40 -0
- data/lib/slack/web/api/endpoints/conversations.rb +152 -39
- data/lib/slack/web/api/endpoints/dialog.rb +3 -2
- data/lib/slack/web/api/endpoints/dnd.rb +9 -4
- data/lib/slack/web/api/endpoints/emoji.rb +1 -0
- data/lib/slack/web/api/endpoints/files.rb +35 -28
- data/lib/slack/web/api/endpoints/files_comments.rb +2 -34
- data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
- data/lib/slack/web/api/endpoints/groups.rb +1 -243
- data/lib/slack/web/api/endpoints/im.rb +1 -101
- data/lib/slack/web/api/endpoints/migration.rb +5 -2
- data/lib/slack/web/api/endpoints/mpim.rb +1 -86
- data/lib/slack/web/api/endpoints/oauth.rb +8 -30
- data/lib/slack/web/api/endpoints/oauth_v2.rb +48 -0
- data/lib/slack/web/api/endpoints/openid_connect.rb +42 -0
- data/lib/slack/web/api/endpoints/pins.rb +8 -15
- data/lib/slack/web/api/endpoints/reactions.rb +29 -18
- data/lib/slack/web/api/endpoints/reminders.rb +18 -5
- data/lib/slack/web/api/endpoints/rtm.rb +14 -9
- data/lib/slack/web/api/endpoints/search.rb +30 -15
- data/lib/slack/web/api/endpoints/stars.rb +23 -10
- data/lib/slack/web/api/endpoints/team.rb +15 -4
- 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 +2 -1
- data/lib/slack/web/api/endpoints/tooling_tokens.rb +24 -0
- data/lib/slack/web/api/endpoints/usergroups.rb +27 -16
- data/lib/slack/web/api/endpoints/usergroups_users.rb +10 -5
- data/lib/slack/web/api/endpoints/users.rb +44 -17
- data/lib/slack/web/api/endpoints/users_admin.rb +1 -0
- data/lib/slack/web/api/endpoints/users_prefs.rb +1 -0
- data/lib/slack/web/api/endpoints/users_profile.rb +9 -8
- data/lib/slack/web/api/endpoints/views.rb +97 -0
- data/lib/slack/web/api/endpoints/workflows.rb +61 -0
- data/lib/slack/web/api/endpoints.rb +80 -12
- data/lib/slack/web/api/error.rb +1 -0
- data/lib/slack/web/api/errors/server_error.rb +37 -0
- data/lib/slack/web/api/errors/slack_error.rb +14 -1
- data/lib/slack/web/api/errors/too_many_requests_error.rb +2 -4
- data/lib/slack/web/api/errors.rb +1066 -0
- data/lib/slack/web/api/mixins/{channels.id.rb → conversations.id.rb} +4 -5
- data/lib/slack/web/api/mixins/ids.id.rb +3 -2
- data/lib/slack/web/api/mixins/users.id.rb +2 -3
- data/lib/slack/web/api/mixins/users.search.rb +1 -0
- data/lib/slack/web/api/mixins.rb +2 -2
- data/lib/slack/web/api/patches/chat.1.patch +70 -0
- data/lib/slack/web/api/patches/views.1.view-json.patch +40 -0
- data/lib/slack/web/api/patches/views.1.views-published.patch +16 -0
- data/lib/slack/web/api/templates/command.erb +1 -0
- data/lib/slack/web/api/templates/commands.erb +1 -0
- data/lib/slack/web/api/templates/endpoints.erb +2 -2
- data/lib/slack/web/api/templates/errors.erb +20 -0
- data/lib/slack/web/api/templates/method.erb +5 -1
- data/lib/slack/web/api/templates/method_spec.erb +2 -1
- data/lib/slack/web/client.rb +2 -1
- data/lib/slack/web/config.rb +3 -0
- data/lib/slack/web/faraday/connection.rb +24 -20
- data/lib/slack/web/faraday/request.rb +5 -1
- data/lib/slack/web/faraday/response/raise_error.rb +14 -7
- data/lib/slack/web/faraday/response/wrap_error.rb +24 -0
- data/lib/slack/web/pagination/cursor.rb +7 -7
- data/lib/slack-ruby-client.rb +12 -5
- data/lib/slack.rb +1 -0
- data/lib/slack_ruby_client.rb +1 -0
- data/lib/tasks/git.rake +1 -0
- data/lib/tasks/real_time.rake +16 -8
- data/lib/tasks/update.rake +1 -0
- data/lib/tasks/web.rake +39 -10
- data/screenshots/create-app.png +0 -0
- data/slack-ruby-client.gemspec +7 -12
- 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 +83 -0
- data/spec/integration/integration_spec.rb +116 -48
- data/spec/slack/config_spec.rb +2 -0
- data/spec/slack/events/config_spec.rb +33 -0
- data/spec/slack/events/request_spec.rb +184 -0
- data/spec/slack/messages/formatting_spec.rb +25 -14
- data/spec/slack/real_time/api/message_spec.rb +6 -1
- data/spec/slack/real_time/api/ping_spec.rb +2 -0
- data/spec/slack/real_time/api/typing_spec.rb +5 -1
- data/spec/slack/real_time/client_spec.rb +258 -62
- data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +2 -0
- 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 +3 -2
- data/spec/slack/real_time/event_handlers/channel_spec.rb +14 -11
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/group_spec.rb +6 -5
- data/spec/slack/real_time/event_handlers/im_spec.rb +10 -9
- data/spec/slack/real_time/event_handlers/team_spec.rb +3 -1
- data/spec/slack/real_time/event_handlers/user_spec.rb +3 -2
- data/spec/slack/real_time/rtm_connect_spec.rb +2 -1
- data/spec/slack/real_time/rtm_start_spec.rb +2 -1
- data/spec/slack/real_time/store_spec.rb +4 -3
- data/spec/slack/slack_spec.rb +42 -8
- data/spec/slack/version_spec.rb +2 -1
- data/spec/slack/web/api/endpoints/admin_analytics_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_apps_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_apps_restricted_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +18 -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/admin_conversations_ekm_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_conversations_restrictAccess_spec.rb +32 -0
- data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +98 -0
- data/spec/slack/web/api/endpoints/admin_emoji_spec.rb +37 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_approved_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_denied_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/admin_inviteRequests_spec.rb +18 -0
- data/spec/slack/web/api/endpoints/admin_teams_admins_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_teams_owners_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +53 -0
- data/spec/slack/web/api/endpoints/admin_teams_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/admin_usergroups_spec.rb +37 -0
- data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +41 -0
- data/spec/slack/web/api/endpoints/admin_users_spec.rb +67 -0
- data/spec/slack/web/api/endpoints/admin_users_unsupportedVersions_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/api_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/apps_connections_spec.rb +8 -0
- 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 +16 -0
- data/spec/slack/web/api/endpoints/auth_teams_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/bookmarks_spec.rb +40 -0
- data/spec/slack/web/api/endpoints/bots_spec.rb +1 -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/chat_scheduledMessages_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +9 -7
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +131 -39
- data/spec/slack/web/api/endpoints/custom_specs/conversations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +16 -6
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +8 -3
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +103 -0
- data/spec/slack/web/api/endpoints/dnd_spec.rb +4 -3
- data/spec/slack/web/api/endpoints/emoji_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +3 -21
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +24 -0
- data/spec/slack/web/api/endpoints/files_spec.rb +5 -4
- data/spec/slack/web/api/endpoints/migration_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/oauth_spec.rb +1 -22
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +16 -0
- data/spec/slack/web/api/endpoints/openid_connect_spec.rb +8 -0
- data/spec/slack/web/api/endpoints/pins_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/reactions_spec.rb +8 -1
- data/spec/slack/web/api/endpoints/reminders_spec.rb +3 -2
- data/spec/slack/web/api/endpoints/rtm_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/search_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/stars_spec.rb +1 -0
- 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/team_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/team_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/tooling_tokens_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/usergroups_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +3 -2
- data/spec/slack/web/api/endpoints/users_admin_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_prefs_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/users_profile_spec.rb +1 -0
- data/spec/slack/web/api/endpoints/workflows_spec.rb +26 -0
- data/spec/slack/web/api/error_spec.rb +7 -7
- data/spec/slack/web/api/errors/slack_error_spec.rb +26 -7
- data/spec/slack/web/api/mixins/conversations_list_spec.rb +21 -0
- data/spec/slack/web/api/mixins/conversations_spec.rb +43 -0
- data/spec/slack/web/api/mixins/users_spec.rb +25 -14
- data/spec/slack/web/api/pagination/cursor_spec.rb +43 -15
- data/spec/slack/web/client_spec.rb +186 -19
- data/spec/slack/web/faraday/request_spec.rb +80 -0
- data/spec/slack/web/faraday/response/raise_error_spec.rb +48 -12
- data/spec/spec_helper.rb +9 -2
- data/spec/support/queue_with_timeout.rb +5 -4
- data/spec/support/real_time/concurrency/mock.rb +1 -0
- data/spec/support/real_time/connected_client.rb +6 -6
- data/spec/support/real_time/event.rb +1 -0
- data/spec/support/token.rb +1 -0
- data/spec/support/vcr.rb +37 -1
- metadata +177 -231
- data/.travis.yml +0 -30
- data/examples/hi_real_time/Gemfile +0 -5
- data/examples/hi_real_time/hi.gif +0 -0
- data/examples/hi_real_time/hi.rb +0 -37
- data/examples/hi_real_time_async_celluloid/Gemfile +0 -6
- data/examples/hi_real_time_async_eventmachine/Procfile +0 -2
- data/examples/hi_real_time_async_eventmachine/hi.rb +0 -36
- data/lib/slack/real_time/concurrency/celluloid.rb +0 -117
- data/lib/slack/real_time/concurrency/eventmachine.rb +0 -60
- 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 -26
- 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/screenshots/register-bot.png +0 -0
- 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 -62
- data/spec/slack/real_time/concurrency/eventmachine_spec.rb +0 -47
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +0 -15
- data/spec/slack/web/api/endpoints/conversations_spec.rb +0 -100
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/im_spec.rb +0 -38
- data/spec/slack/web/api/endpoints/mpim_spec.rb +0 -38
- data/spec/slack/web/api/errors/service_unavailable_spec.rb +0 -14
- data/spec/slack/web/api/mixins/channels_spec.rb +0 -31
- data/spec/slack/web/api/mixins/groups_spec.rb +0 -31
@@ -1,11 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'spec_helper'
|
3
|
+
require 'faraday/typhoeus'
|
2
4
|
|
3
5
|
RSpec.describe Slack::Web::Client do
|
4
6
|
before do
|
5
7
|
Slack::Config.reset
|
6
8
|
end
|
9
|
+
|
7
10
|
context 'with defaults' do
|
8
|
-
let(:client) {
|
11
|
+
let(:client) { described_class.new }
|
12
|
+
|
9
13
|
describe '#initialize' do
|
10
14
|
it 'sets user-agent' do
|
11
15
|
expect(client.user_agent).to eq Slack::Web::Config.user_agent
|
@@ -18,30 +22,36 @@ RSpec.describe Slack::Web::Client do
|
|
18
22
|
end
|
19
23
|
end
|
20
24
|
end
|
25
|
+
|
21
26
|
context 'with custom settings' do
|
22
27
|
describe '#initialize' do
|
23
28
|
Slack::Web::Config::ATTRIBUTES.each do |key|
|
24
|
-
context key do
|
25
|
-
let(:client) {
|
29
|
+
context key.to_s do
|
30
|
+
let(:client) { described_class.new(key => 'custom') }
|
31
|
+
|
26
32
|
it "sets #{key}" do
|
27
|
-
expect(client.send(key)).
|
33
|
+
expect(client.send(key)).not_to eq Slack::Web::Config.send(key)
|
28
34
|
expect(client.send(key)).to eq 'custom'
|
29
35
|
end
|
30
36
|
end
|
31
37
|
end
|
32
38
|
end
|
33
39
|
end
|
40
|
+
|
34
41
|
context 'global config' do
|
35
42
|
after do
|
36
|
-
|
43
|
+
described_class.config.reset
|
37
44
|
end
|
38
|
-
|
45
|
+
|
46
|
+
let(:client) { described_class.new }
|
47
|
+
|
39
48
|
context 'user-agent' do
|
40
49
|
before do
|
41
|
-
|
50
|
+
described_class.configure do |config|
|
42
51
|
config.user_agent = 'custom/user-agent'
|
43
52
|
end
|
44
53
|
end
|
54
|
+
|
45
55
|
describe '#initialize' do
|
46
56
|
it 'sets user-agent' do
|
47
57
|
expect(client.user_agent).to eq 'custom/user-agent'
|
@@ -54,38 +64,43 @@ RSpec.describe Slack::Web::Client do
|
|
54
64
|
end
|
55
65
|
end
|
56
66
|
end
|
67
|
+
|
57
68
|
context 'token' do
|
58
69
|
before do
|
59
70
|
Slack.configure do |config|
|
60
71
|
config.token = 'global default'
|
61
72
|
end
|
62
73
|
end
|
74
|
+
|
63
75
|
it 'defaults token to global default' do
|
64
|
-
client =
|
76
|
+
client = described_class.new
|
65
77
|
expect(client.token).to eq 'global default'
|
66
78
|
end
|
67
79
|
context 'with web config' do
|
68
80
|
before do
|
69
|
-
|
81
|
+
described_class.configure do |config|
|
70
82
|
config.token = 'custom web token'
|
71
83
|
end
|
72
84
|
end
|
85
|
+
|
73
86
|
it 'overrides token to web config' do
|
74
|
-
client =
|
87
|
+
client = described_class.new
|
75
88
|
expect(client.token).to eq 'custom web token'
|
76
89
|
end
|
77
90
|
it 'overrides token to specific token' do
|
78
|
-
client =
|
91
|
+
client = described_class.new(token: 'local token')
|
79
92
|
expect(client.token).to eq 'local token'
|
80
93
|
end
|
81
94
|
end
|
82
95
|
end
|
96
|
+
|
83
97
|
context 'proxy' do
|
84
98
|
before do
|
85
|
-
|
99
|
+
described_class.configure do |config|
|
86
100
|
config.proxy = 'http://localhost:8080'
|
87
101
|
end
|
88
102
|
end
|
103
|
+
|
89
104
|
describe '#initialize' do
|
90
105
|
it 'sets proxy' do
|
91
106
|
expect(client.proxy).to eq 'http://localhost:8080'
|
@@ -95,13 +110,15 @@ RSpec.describe Slack::Web::Client do
|
|
95
110
|
end
|
96
111
|
end
|
97
112
|
end
|
113
|
+
|
98
114
|
context 'SSL options' do
|
99
115
|
before do
|
100
|
-
|
116
|
+
described_class.configure do |config|
|
101
117
|
config.ca_path = '/ca_path'
|
102
118
|
config.ca_file = '/ca_file'
|
103
119
|
end
|
104
120
|
end
|
121
|
+
|
105
122
|
describe '#initialize' do
|
106
123
|
it 'sets ca_path and ca_file' do
|
107
124
|
expect(client.ca_path).to eq '/ca_path'
|
@@ -114,13 +131,16 @@ RSpec.describe Slack::Web::Client do
|
|
114
131
|
end
|
115
132
|
end
|
116
133
|
end
|
134
|
+
|
117
135
|
context 'logger option' do
|
118
136
|
let(:logger) { Logger.new(STDOUT) }
|
137
|
+
|
119
138
|
before do
|
120
|
-
|
139
|
+
described_class.configure do |config|
|
121
140
|
config.logger = logger
|
122
141
|
end
|
123
142
|
end
|
143
|
+
|
124
144
|
describe '#initialize' do
|
125
145
|
it 'sets logger' do
|
126
146
|
expect(client.logger).to eq logger
|
@@ -130,13 +150,59 @@ RSpec.describe Slack::Web::Client do
|
|
130
150
|
end
|
131
151
|
end
|
132
152
|
end
|
153
|
+
|
154
|
+
context 'adapter option' do
|
155
|
+
let(:adapter) { Faraday.default_adapter }
|
156
|
+
let(:adapter_class) { Faraday::Adapter::NetHttp }
|
157
|
+
|
158
|
+
around do |ex|
|
159
|
+
previous_adapter = Faraday.default_adapter
|
160
|
+
# ensure default adapter is set for this spec
|
161
|
+
Faraday.default_adapter = :net_http
|
162
|
+
ex.run
|
163
|
+
Faraday.default_adapter = previous_adapter
|
164
|
+
end
|
165
|
+
|
166
|
+
context 'default adapter' do
|
167
|
+
describe '#initialize' do
|
168
|
+
it 'sets adapter' do
|
169
|
+
expect(client.adapter).to eq adapter
|
170
|
+
end
|
171
|
+
it 'creates a connection with an adapter' do
|
172
|
+
expect(client.send(:connection).adapter).to eq adapter_class
|
173
|
+
end
|
174
|
+
end
|
175
|
+
end
|
176
|
+
|
177
|
+
context 'non default adapter' do
|
178
|
+
let(:adapter) { :typhoeus }
|
179
|
+
let(:adapter_class) { Faraday::Adapter::Typhoeus }
|
180
|
+
|
181
|
+
before do
|
182
|
+
described_class.configure do |config|
|
183
|
+
config.adapter = adapter
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
describe '#initialize' do
|
188
|
+
it 'sets adapter' do
|
189
|
+
expect(client.adapter).to eq adapter
|
190
|
+
end
|
191
|
+
it 'creates a connection with an adapter' do
|
192
|
+
expect(client.send(:connection).adapter).to eq adapter_class
|
193
|
+
end
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
133
198
|
context 'timeout options' do
|
134
199
|
before do
|
135
|
-
|
200
|
+
described_class.configure do |config|
|
136
201
|
config.timeout = 10
|
137
202
|
config.open_timeout = 15
|
138
203
|
end
|
139
204
|
end
|
205
|
+
|
140
206
|
describe '#initialize' do
|
141
207
|
it 'sets timeout and open_timeout' do
|
142
208
|
expect(client.timeout).to eq 10
|
@@ -149,17 +215,22 @@ RSpec.describe Slack::Web::Client do
|
|
149
215
|
end
|
150
216
|
end
|
151
217
|
end
|
218
|
+
|
152
219
|
context 'per-request options' do
|
153
220
|
it 'applies timeout', vcr: { cassette_name: 'web/rtm_start', allow_playback_repeats: true } do
|
154
221
|
# reuse the same connection for the test, otherwise it creates a new one every time
|
155
222
|
conn = client.send(:connection)
|
156
223
|
expect(client).to receive(:connection).and_return(conn)
|
157
224
|
|
158
|
-
# get the yielded request to reuse in the next call to
|
225
|
+
# get the yielded request to reuse in the next call to
|
226
|
+
# rtm_start so that we can examine request.options later
|
159
227
|
request = nil
|
160
228
|
response = conn.post do |r|
|
161
229
|
r.path = 'rtm.start'
|
162
|
-
r.
|
230
|
+
r.headers = {
|
231
|
+
'Accept' => ['application/json; charset=utf-8'],
|
232
|
+
'Authorization' => ['Bearer <SLACK_API_TOKEN>']
|
233
|
+
}
|
163
234
|
request = r
|
164
235
|
end
|
165
236
|
|
@@ -170,13 +241,109 @@ RSpec.describe Slack::Web::Client do
|
|
170
241
|
expect(request.options.timeout).to eq 3
|
171
242
|
end
|
172
243
|
end
|
244
|
+
|
173
245
|
context 'calling undocumented methods' do
|
174
|
-
let(:client) {
|
246
|
+
let(:client) { described_class.new }
|
247
|
+
|
175
248
|
it 'produces a warning' do
|
176
|
-
expect(client.logger).to
|
249
|
+
expect(client.logger).to(
|
250
|
+
receive(:warn).with('The users.admin.setInactive method is undocumented.')
|
251
|
+
)
|
177
252
|
expect(client).to receive(:post)
|
178
253
|
client.users_admin_setInactive(user: 'U092BDCLV')
|
179
254
|
end
|
180
255
|
end
|
256
|
+
|
257
|
+
context 'persistent capability' do
|
258
|
+
describe '#initialize' do
|
259
|
+
it 'caches the Faraday connection to allow persistent adapters' do
|
260
|
+
first = client.send(:connection)
|
261
|
+
second = client.send(:connection)
|
262
|
+
|
263
|
+
expect(first).to equal second
|
264
|
+
end
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
context 'server failures' do
|
269
|
+
subject(:request) { client.api_test }
|
270
|
+
|
271
|
+
let(:stub_slack_request) { stub_request(:post, 'https://slack.com/api/api.test') }
|
272
|
+
let(:exception) do
|
273
|
+
request
|
274
|
+
rescue Slack::Web::Api::Errors::ServerError => e
|
275
|
+
return e
|
276
|
+
end
|
277
|
+
|
278
|
+
context 'parsing error' do
|
279
|
+
context 'when the response is not JSON' do
|
280
|
+
before do
|
281
|
+
stub_slack_request.to_return(body: '<html></html>', headers: { 'Content-Type' => 'text/html' })
|
282
|
+
end
|
283
|
+
|
284
|
+
it 'raises ParsingError' do
|
285
|
+
expect { request }.to raise_error(Slack::Web::Api::Errors::ParsingError).with_message('parsing_error')
|
286
|
+
expect(exception.response.body).to eq('<html></html>')
|
287
|
+
expect(exception.cause).to be_a(Faraday::ParsingError)
|
288
|
+
expect(exception.cause.cause).to be_a(JSON::ParserError)
|
289
|
+
end
|
290
|
+
end
|
291
|
+
|
292
|
+
context 'when the response is malformed JSON' do
|
293
|
+
before { stub_slack_request.to_return(body: '{') }
|
294
|
+
|
295
|
+
it 'raises ParsingError' do
|
296
|
+
expect { request }.to raise_error(Slack::Web::Api::Errors::ParsingError).with_message('parsing_error')
|
297
|
+
expect(exception.response.body).to eq('{')
|
298
|
+
expect(exception.cause).to be_a(Faraday::ParsingError)
|
299
|
+
expect(exception.cause.cause).to be_a(JSON::ParserError)
|
300
|
+
end
|
301
|
+
end
|
302
|
+
end
|
303
|
+
|
304
|
+
context 'timeout' do
|
305
|
+
context 'open timeout' do
|
306
|
+
before { stub_slack_request.to_timeout }
|
307
|
+
|
308
|
+
it 'raises TimoutError' do
|
309
|
+
expect { request }.to raise_error(Slack::Web::Api::Errors::TimeoutError).with_message('timeout_error')
|
310
|
+
expect(exception.cause).to be_a(Faraday::ConnectionFailed)
|
311
|
+
expect(exception.cause.cause).to be_a(Net::OpenTimeout)
|
312
|
+
end
|
313
|
+
end
|
314
|
+
|
315
|
+
context 'read timeout' do
|
316
|
+
before { stub_slack_request.to_raise(Net::ReadTimeout) }
|
317
|
+
|
318
|
+
it 'raises TimeoutError' do
|
319
|
+
expect { request }.to raise_error(Slack::Web::Api::Errors::TimeoutError).with_message('timeout_error')
|
320
|
+
expect(exception.cause).to be_a(Faraday::TimeoutError)
|
321
|
+
expect(exception.cause.cause).to be_a(Net::ReadTimeout)
|
322
|
+
end
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
context '5xx response' do
|
327
|
+
context 'with a JSON body' do
|
328
|
+
before { stub_slack_request.to_return(status: 500, body: '{}') }
|
329
|
+
|
330
|
+
it 'raises UnavailableError' do
|
331
|
+
expect { request }.to raise_error(Slack::Web::Api::Errors::UnavailableError).with_message('unavailable_error')
|
332
|
+
expect(exception.response.status).to eq(500)
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
context 'with a HTML response' do
|
337
|
+
before do
|
338
|
+
stub_slack_request.to_return(status: 500, body: '<html></html>', headers: { 'Content-Type' => 'text/html' })
|
339
|
+
end
|
340
|
+
|
341
|
+
it 'raises UnavailableError' do
|
342
|
+
expect { request }.to raise_error(Slack::Web::Api::Errors::UnavailableError).with_message('unavailable_error')
|
343
|
+
expect(exception.response.status).to eq(500)
|
344
|
+
end
|
345
|
+
end
|
346
|
+
end
|
347
|
+
end
|
181
348
|
end
|
182
349
|
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
class DummyClient
|
5
|
+
include Slack::Web::Faraday::Connection
|
6
|
+
include Slack::Web::Faraday::Request
|
7
|
+
|
8
|
+
attr_reader :token
|
9
|
+
|
10
|
+
def initialize(token)
|
11
|
+
@token = token
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
RSpec.describe Slack::Web::Faraday::Request do
|
16
|
+
let(:token) { 'by-the-power-of-grayskull' }
|
17
|
+
let(:client) { DummyClient.new(token) }
|
18
|
+
|
19
|
+
before do
|
20
|
+
Slack::Config.reset
|
21
|
+
end
|
22
|
+
|
23
|
+
context 'authorization' do
|
24
|
+
let(:path) { '/any-path' }
|
25
|
+
let(:options) { {} }
|
26
|
+
let(:connection) { instance_double('Faraday::Connection') }
|
27
|
+
let(:request) { instance_double('Faraday::Request') }
|
28
|
+
let(:headers) { instance_double('Faraday::Utils::Headers') }
|
29
|
+
let(:response) { instance_double('Faraday::Response', body: '') }
|
30
|
+
|
31
|
+
before do
|
32
|
+
allow(client).to receive(:connection).and_return(connection)
|
33
|
+
allow(request).to receive(:url).with(path, options)
|
34
|
+
allow(request).to receive(:path=).with(path)
|
35
|
+
allow(request).to receive(:headers).and_return(headers)
|
36
|
+
allow(connection).to receive(:send)
|
37
|
+
.with(method).and_yield(request).and_return(response)
|
38
|
+
end
|
39
|
+
|
40
|
+
describe '#get' do
|
41
|
+
let(:method) { :get }
|
42
|
+
|
43
|
+
it 'sets authorization header' do
|
44
|
+
expect(headers).to receive(:[]=)
|
45
|
+
.with('Authorization', "Bearer #{token}")
|
46
|
+
client.send(method, path, options)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe '#post' do
|
51
|
+
let(:method) { :post }
|
52
|
+
|
53
|
+
it 'sets authorization header' do
|
54
|
+
expect(headers).to receive(:[]=)
|
55
|
+
.with('Authorization', "Bearer #{token}")
|
56
|
+
client.send(method, path, options)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '#put' do
|
61
|
+
let(:method) { :put }
|
62
|
+
|
63
|
+
it 'sets authorization header' do
|
64
|
+
expect(headers).to receive(:[]=)
|
65
|
+
.with('Authorization', "Bearer #{token}")
|
66
|
+
client.send(method, path, options)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe '#delete' do
|
71
|
+
let(:method) { :delete }
|
72
|
+
|
73
|
+
it 'sets authorization header' do
|
74
|
+
expect(headers).to receive(:[]=)
|
75
|
+
.with('Authorization', "Bearer #{token}")
|
76
|
+
client.send(method, path, options)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
@@ -1,18 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'spec_helper'
|
2
3
|
|
3
4
|
RSpec.describe Slack::Web::Faraday::Response::RaiseError do
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
5
|
+
subject(:raise_error_obj) { described_class.new(app) }
|
6
|
+
|
7
|
+
let(:app) { proc {} }
|
8
|
+
let(:status) { 200 }
|
9
|
+
let(:response) { nil }
|
10
|
+
let(:body) { {} }
|
11
|
+
let(:env) { double status: status, response: response, body: body, success?: true }
|
10
12
|
|
13
|
+
describe '#on_complete' do
|
11
14
|
context 'with status of 429' do
|
12
15
|
let(:status) { 429 }
|
16
|
+
let(:response) { OpenStruct.new(headers: { 'retry-after' => 10 }) }
|
13
17
|
|
14
18
|
it 'raises a TooManyRequestsError' do
|
15
|
-
expect {
|
19
|
+
expect { raise_error_obj.on_complete(env) }.to(
|
20
|
+
raise_error(Slack::Web::Api::Errors::TooManyRequestsError)
|
21
|
+
)
|
16
22
|
end
|
17
23
|
end
|
18
24
|
|
@@ -20,21 +26,46 @@ RSpec.describe Slack::Web::Faraday::Response::RaiseError do
|
|
20
26
|
let(:body) { { 'ok' => 'true' } }
|
21
27
|
|
22
28
|
it 'is nil' do
|
23
|
-
expect(
|
29
|
+
expect(raise_error_obj.on_complete(env)).to be_nil
|
24
30
|
end
|
25
31
|
end
|
26
32
|
|
27
|
-
context 'with a single error in the body' do
|
28
|
-
let(:body)
|
33
|
+
context 'with a single known error in the body' do
|
34
|
+
let(:body) do
|
35
|
+
{
|
36
|
+
'ok' => false,
|
37
|
+
'error' => 'already_in_channel',
|
38
|
+
'response_metadata' => { 'messages' => [] }
|
39
|
+
}
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'raises an error of the matching type with the error message' do
|
43
|
+
expect { raise_error_obj.on_complete(env) }.to(
|
44
|
+
raise_error(Slack::Web::Api::Errors::AlreadyInChannel, 'already_in_channel')
|
45
|
+
)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
context 'with a single unknown error in the body' do
|
50
|
+
let(:body) do
|
51
|
+
{
|
52
|
+
'ok' => false,
|
53
|
+
'error' => 'unknown_error',
|
54
|
+
'response_metadata' => { 'messages' => [] }
|
55
|
+
}
|
56
|
+
end
|
29
57
|
|
30
58
|
it 'raises a SlackError with the error message' do
|
31
|
-
expect {
|
59
|
+
expect { raise_error_obj.on_complete(env) }.to(
|
60
|
+
raise_error(Slack::Web::Api::Errors::SlackError, 'unknown_error')
|
61
|
+
)
|
32
62
|
end
|
33
63
|
end
|
34
64
|
|
35
65
|
context 'with multiple errors in the body' do
|
36
66
|
let(:body) do
|
37
67
|
{
|
68
|
+
'ok' => false,
|
38
69
|
'errors' => [
|
39
70
|
{ 'error' => 'already_in_channel' },
|
40
71
|
{ 'error' => 'something_else_terrible' }
|
@@ -43,7 +74,12 @@ RSpec.describe Slack::Web::Faraday::Response::RaiseError do
|
|
43
74
|
end
|
44
75
|
|
45
76
|
it 'raises a SlackError with the concatenated error messages' do
|
46
|
-
expect {
|
77
|
+
expect { raise_error_obj.on_complete(env) }.to(
|
78
|
+
raise_error(
|
79
|
+
Slack::Web::Api::Errors::SlackError,
|
80
|
+
'already_in_channel,something_else_terrible'
|
81
|
+
)
|
82
|
+
)
|
47
83
|
end
|
48
84
|
end
|
49
85
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,14 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..'))
|
2
3
|
|
3
4
|
require 'rubygems'
|
4
5
|
require 'rspec'
|
6
|
+
require 'timecop'
|
5
7
|
|
6
|
-
require '
|
8
|
+
require 'slack_ruby_client'
|
7
9
|
|
8
10
|
Dir[File.join(File.dirname(__FILE__), 'support', '**/*.rb')].each do |file|
|
9
11
|
require file
|
10
12
|
end
|
11
13
|
|
12
14
|
Slack.configure do |config|
|
13
|
-
config.token = ENV['SLACK_API_TOKEN']
|
15
|
+
config.token = '<SLACK_API_TOKEN>' # ENV['SLACK_API_TOKEN']
|
16
|
+
end
|
17
|
+
|
18
|
+
RSpec.configure do |config|
|
19
|
+
# Enable flags like --only-failures and --next-failure
|
20
|
+
config.example_status_persistence_file_path = '.rspec_status'
|
14
21
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# http://spin.atomicobject.com/2014/07/07/ruby-queue-pop-timeout/
|
2
3
|
class QueueWithTimeout
|
3
4
|
def initialize
|
@@ -6,15 +7,15 @@ class QueueWithTimeout
|
|
6
7
|
@recieved = ConditionVariable.new
|
7
8
|
end
|
8
9
|
|
9
|
-
def push(
|
10
|
+
def push(item)
|
10
11
|
@mutex.synchronize do
|
11
|
-
@queue <<
|
12
|
+
@queue << item
|
12
13
|
@recieved.signal
|
13
14
|
end
|
14
15
|
end
|
15
16
|
|
16
|
-
def <<(
|
17
|
-
push(
|
17
|
+
def <<(item)
|
18
|
+
push(item)
|
18
19
|
end
|
19
20
|
|
20
21
|
def pop(non_block = false)
|
@@ -1,18 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
RSpec.shared_context 'connected client' do |opts|
|
2
3
|
let(:client) { Slack::RealTime::Client.new(opts || {}) }
|
3
4
|
let(:ws) { double(Slack::RealTime::Concurrency::Mock::WebSocket) }
|
4
|
-
let(:url)
|
5
|
-
Slack::RealTime.config.store_class == Slack::RealTime::Stores::Store ?
|
6
|
-
'wss://ms173.slack-msgs.com/websocket/lqcUiAvrKTP-uuid=' :
|
7
|
-
'wss://mpmulti-w5tz.slack-msgs.com/websocket/uid'
|
8
|
-
end
|
5
|
+
let(:url) { 'wss://cerberus-xxxx.lb.slack-msgs.com/websocket/uid' }
|
9
6
|
let(:socket) { double(Slack::RealTime::Socket, connected?: true) }
|
7
|
+
|
10
8
|
before do
|
11
9
|
Slack::RealTime.configure do |config|
|
12
10
|
config.concurrency = Slack::RealTime::Concurrency::Mock
|
13
11
|
config.store_class = (opts || {})[:store_class] || Slack::RealTime::Stores::Store
|
14
12
|
end
|
15
|
-
allow(Slack::RealTime::Socket).to
|
13
|
+
allow(Slack::RealTime::Socket).to(
|
14
|
+
receive(:new).with(url, { ping: 30, logger: Slack::Logger.default }).and_return(socket)
|
15
|
+
)
|
16
16
|
allow(socket).to receive(:start_sync)
|
17
17
|
allow(socket).to receive(:connect!)
|
18
18
|
allow(ws).to receive(:on)
|
data/spec/support/token.rb
CHANGED
data/spec/support/vcr.rb
CHANGED
@@ -1,9 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'vcr'
|
2
3
|
require 'webmock/rspec'
|
3
4
|
|
4
5
|
VCR.configure do |config|
|
5
6
|
config.cassette_library_dir = 'spec/fixtures/slack'
|
6
7
|
config.hook_into :webmock
|
7
|
-
# config.default_cassette_options = { record: :new_episodes }
|
8
8
|
config.configure_rspec_metadata!
|
9
|
+
if ENV.key?('SLACK_API_TOKEN')
|
10
|
+
config.filter_sensitive_data('<SLACK_API_TOKEN>') do
|
11
|
+
ENV['SLACK_API_TOKEN']
|
12
|
+
end
|
13
|
+
end
|
14
|
+
config.before_record do |i|
|
15
|
+
i.response.body.force_encoding('UTF-8')
|
16
|
+
end
|
17
|
+
config.register_request_matcher :client_headers do |recorded, actual|
|
18
|
+
authorizations = ENV.key?('SLACK_API_TOKEN') ? actual.headers['Authorization'].map do |auth|
|
19
|
+
auth.gsub(ENV['SLACK_API_TOKEN'], '<SLACK_API_TOKEN>')
|
20
|
+
end : actual.headers['Authorization']
|
21
|
+
actual.headers['Accept'] == recorded.headers['Accept'] &&
|
22
|
+
authorizations == recorded.headers['Authorization']
|
23
|
+
end
|
24
|
+
config.default_cassette_options = {
|
25
|
+
match_requests_on: %i[method uri body client_headers]
|
26
|
+
# record: :new_episodes
|
27
|
+
}
|
28
|
+
end
|
29
|
+
|
30
|
+
module VCR
|
31
|
+
module Errors
|
32
|
+
class UnhandledHTTPRequestError
|
33
|
+
private
|
34
|
+
|
35
|
+
# Force unhandled HTTP error reports to include the headers
|
36
|
+
# for our custom matcher `client_headers`.
|
37
|
+
#
|
38
|
+
# This patch can be removed if https://github.com/vcr/vcr/issues/912
|
39
|
+
# is ever resolved.
|
40
|
+
def match_request_on_headers?
|
41
|
+
true
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
9
45
|
end
|