slack-ruby-client 0.13.1 → 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/.gitignore +1 -0
- data/.rubocop.yml +29 -5
- data/.rubocop_todo.yml +124 -44
- data/.travis.yml +5 -8
- data/CHANGELOG.md +92 -2
- data/CONTRIBUTING.md +19 -8
- data/Dangerfile +2 -0
- data/Gemfile +10 -5
- data/LICENSE.md +1 -1
- data/README.md +186 -49
- data/RELEASING.md +1 -1
- data/Rakefile +2 -1
- data/UPGRADING.md +72 -2
- 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 +17 -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 +169 -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/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 +51 -0
- data/bin/commands/apps_permissions.rb +1 -0
- data/bin/commands/apps_permissions_resources.rb +1 -0
- data/bin/commands/apps_permissions_scopes.rb +1 -0
- data/bin/commands/apps_permissions_users.rb +1 -0
- data/bin/commands/auth.rb +1 -0
- data/bin/commands/auth_teams.rb +16 -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 +56 -12
- data/bin/commands/chat_scheduledMessages.rb +19 -0
- data/bin/commands/conversations.rb +75 -5
- 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 +10 -18
- data/bin/commands/files_comments.rb +1 -21
- data/bin/commands/files_remote.rb +78 -0
- data/bin/commands/groups.rb +1 -161
- data/bin/commands/im.rb +1 -62
- data/bin/commands/migration.rb +2 -0
- data/bin/commands/mpim.rb +1 -60
- data/bin/commands/oauth.rb +2 -14
- 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 +3 -3
- data/bin/commands/reminders.rb +7 -0
- data/bin/commands/rtm.rb +3 -2
- data/bin/commands/search.rb +6 -1
- data/bin/commands/stars.rb +8 -6
- data/bin/commands/team.rb +5 -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 +6 -4
- data/bin/commands/users_admin.rb +1 -0
- data/bin/commands/users_prefs.rb +1 -0
- data/bin/commands/users_profile.rb +6 -5
- data/bin/commands/views.rb +48 -0
- data/bin/commands/workflows.rb +38 -0
- data/bin/commands.rb +38 -8
- 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_async/Gemfile +1 -0
- data/examples/hi_real_time_async_async/hi.rb +6 -2
- 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 -0
- 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 +101 -32
- data/lib/slack/real_time/concurrency/async.rb +77 -6
- data/lib/slack/real_time/concurrency.rb +1 -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 +17 -3
- data/lib/slack/real_time/stores/store.rb +33 -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 +35 -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 +260 -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/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 +75 -0
- data/lib/slack/web/api/endpoints/apps_permissions.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_resources.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_scopes.rb +1 -0
- data/lib/slack/web/api/endpoints/apps_permissions_users.rb +1 -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/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 +144 -47
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +40 -0
- data/lib/slack/web/api/endpoints/conversations.rb +152 -41
- 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 +24 -29
- 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 -253
- 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 -96
- data/lib/slack/web/api/endpoints/oauth.rb +7 -31
- 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 +20 -19
- data/lib/slack/web/api/endpoints/reminders.rb +18 -5
- data/lib/slack/web/api/endpoints/rtm.rb +11 -10
- data/lib/slack/web/api/endpoints/search.rb +28 -13
- data/lib/slack/web/api/endpoints/stars.rb +14 -11
- data/lib/slack/web/api/endpoints/team.rb +13 -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 +21 -20
- 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 +8 -7
- 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 +76 -18
- 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 +1040 -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 +3 -1
- data/lib/slack/web/faraday/response/raise_error.rb +21 -6
- 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 +10 -4
- 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 +15 -5
- 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 +9 -6
- 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 +115 -47
- 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 -13
- 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 +244 -50
- 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 +10 -7
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +2 -1
- data/spec/slack/real_time/event_handlers/group_spec.rb +5 -4
- data/spec/slack/real_time/event_handlers/im_spec.rb +9 -8
- 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 +2 -1
- data/spec/slack/slack_spec.rb +40 -6
- 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 +8 -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/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/{apps_permissions_scopes_spec.rb → auth_teams_spec.rb} +2 -1
- 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 +112 -36
- data/spec/slack/web/api/endpoints/custom_specs/conversations_spec.rb +13 -0
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +12 -4
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +8 -3
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +95 -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/{apps_permissions_resources_spec.rb → team_billing_spec.rb} +2 -1
- 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 +17 -8
- data/spec/slack/web/api/pagination/cursor_spec.rb +41 -13
- data/spec/slack/web/client_spec.rb +168 -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 +205 -147
- 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_celluloid/Procfile +0 -2
- data/examples/hi_real_time_async_celluloid/hi.rb +0 -35
- data/examples/hi_real_time_async_eventmachine/Gemfile +0 -6
- data/examples/hi_real_time_async_eventmachine/Procfile +0 -2
- data/examples/hi_real_time_async_eventmachine/hi.rb +0 -35
- data/lib/slack/real_time/concurrency/celluloid.rb +0 -118
- data/lib/slack/real_time/concurrency/eventmachine.rb +0 -66
- 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/lib/slack/web/api/patches/chat.5.postEphemeral-text-or-attachments.patch +0 -13
- 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 -106
- 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/apps_permissions_users_spec.rb +0 -18
- 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 -33
- data/spec/slack/web/api/mixins/groups_spec.rb +0 -33
@@ -1,17 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'spec_helper'
|
2
3
|
|
3
|
-
RSpec.describe 'integration test', skip: (
|
4
|
+
RSpec.describe 'integration test', skip: ( # rubocop:disable RSpec/DescribeClass
|
5
|
+
(!ENV['SLACK_API_TOKEN'] || !ENV['CONCURRENCY']) && 'missing SLACK_API_TOKEN and/or CONCURRENCY'
|
6
|
+
) do
|
4
7
|
around do |ex|
|
5
8
|
WebMock.allow_net_connect!
|
6
9
|
VCR.turned_off { ex.run }
|
7
10
|
WebMock.disable_net_connect!
|
8
11
|
end
|
9
12
|
|
13
|
+
let(:client) { Slack::RealTime::Client.new(token: ENV['SLACK_API_TOKEN']) }
|
10
14
|
let(:logger) do
|
11
15
|
logger = Logger.new(STDOUT)
|
12
|
-
logger.level = Logger::
|
16
|
+
logger.level = Logger::INFO
|
13
17
|
logger
|
14
18
|
end
|
19
|
+
let!(:queue) { @queue = QueueWithTimeout.new }
|
15
20
|
|
16
21
|
before do
|
17
22
|
Thread.abort_on_exception = true
|
@@ -19,78 +24,69 @@ RSpec.describe 'integration test', skip: (!ENV['SLACK_API_TOKEN'] || !ENV['CONCU
|
|
19
24
|
Slack.configure do |slack|
|
20
25
|
slack.logger = logger
|
21
26
|
end
|
22
|
-
end
|
23
|
-
|
24
|
-
after do
|
25
|
-
Slack.config.reset
|
26
|
-
end
|
27
27
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
# starts the client and pushes an item on a queue when connected
|
34
|
-
client.start_async do |driver|
|
35
|
-
driver.on :open do |data|
|
36
|
-
logger.debug "connection.on :open, data=#{data}"
|
37
|
-
queue.push nil
|
38
|
-
end
|
28
|
+
client.on :hello do
|
29
|
+
logger.info(
|
30
|
+
"Successfully connected, welcome '#{client.self.name}' to " \
|
31
|
+
"the '#{client.team.name}' team at https://#{client.team.domain}.slack.com."
|
32
|
+
)
|
39
33
|
end
|
40
|
-
end
|
41
34
|
|
42
|
-
|
43
|
-
|
44
|
-
logger.info "Successfully connected, welcome '#{client.self.name}' to the '#{client.team.name}' team at https://#{client.team.domain}.slack.com."
|
35
|
+
client.on :message do |event|
|
36
|
+
logger.info " #{event.class}"
|
45
37
|
end
|
46
38
|
|
47
39
|
client.on :close do
|
40
|
+
logger.info 'Disconnecting ...'
|
48
41
|
# pushes another item to the queue when disconnected
|
49
|
-
queue.push
|
42
|
+
queue.push :closed
|
50
43
|
end
|
51
44
|
end
|
52
45
|
|
46
|
+
after do
|
47
|
+
Slack.config.reset
|
48
|
+
wait_for_server # wait for :closed to be pushed on queue
|
49
|
+
@server.join if @server.is_a?(::Thread)
|
50
|
+
end
|
51
|
+
|
53
52
|
def start_server
|
54
|
-
dt = rand(
|
53
|
+
dt = rand(10..20)
|
55
54
|
logger.debug "#start_server, waiting #{dt} second(s)"
|
56
55
|
sleep dt # prevent Slack 429 rate limit errors
|
57
|
-
#
|
58
|
-
@server =
|
56
|
+
# starts the client and pushes an item on a queue when connected
|
57
|
+
@server = client.start_async do |driver|
|
58
|
+
driver.on :open do |data|
|
59
|
+
logger.debug "connection.on :open, data=#{data}"
|
60
|
+
queue.push :opened
|
61
|
+
end
|
62
|
+
|
63
|
+
driver.on :hello do |data|
|
64
|
+
logger.debug "connection.on :hello, data=#{data}"
|
65
|
+
end
|
66
|
+
end
|
59
67
|
logger.debug "started #{@server}"
|
60
|
-
queue.pop_with_timeout(5)
|
68
|
+
expect(queue.pop_with_timeout(5)).to eq :opened
|
61
69
|
end
|
62
70
|
|
63
71
|
def wait_for_server
|
72
|
+
return unless @queue
|
73
|
+
|
64
74
|
logger.debug '#wait_for_server'
|
65
75
|
queue.pop_with_timeout(5)
|
66
76
|
logger.debug '#wait_for_server, joined'
|
67
|
-
|
68
|
-
|
69
|
-
def stop_server
|
70
|
-
logger.debug '#stop_server'
|
71
|
-
client.stop!
|
72
|
-
logger.debug '#stop_server, stopped'
|
73
|
-
end
|
74
|
-
|
75
|
-
after do
|
76
|
-
wait_for_server
|
77
|
-
@server.join if @server.is_a?(::Thread)
|
77
|
+
@queue = nil
|
78
78
|
end
|
79
79
|
|
80
80
|
context 'client connected' do
|
81
|
-
|
82
|
-
|
83
|
-
end
|
84
|
-
|
85
|
-
let(:channel) { "@#{client.self.name}" }
|
81
|
+
let(:channel) { "@#{client.self.id}" }
|
82
|
+
let(:message) { SecureRandom.hex }
|
86
83
|
|
87
84
|
it 'responds to message' do
|
88
|
-
message = SecureRandom.hex
|
89
|
-
|
90
85
|
client.on :message do |data|
|
91
86
|
logger.debug data
|
92
87
|
# concurrent execution of tests causes messages to arrive in any order
|
93
88
|
next unless data.text == message
|
89
|
+
|
94
90
|
expect(data.text).to eq message
|
95
91
|
expect(data.subtype).to eq 'bot_message'
|
96
92
|
logger.debug 'client.stop!'
|
@@ -98,13 +94,19 @@ RSpec.describe 'integration test', skip: (!ENV['SLACK_API_TOKEN'] || !ENV['CONCU
|
|
98
94
|
client.stop!
|
99
95
|
end
|
100
96
|
|
97
|
+
start_server
|
98
|
+
|
101
99
|
logger.debug "chat_postMessage, channel=#{channel}, message=#{message}"
|
102
100
|
client.web_client.chat_postMessage channel: channel, text: message
|
103
101
|
end
|
104
102
|
|
105
103
|
it 'sends message' do
|
106
|
-
client.
|
107
|
-
|
104
|
+
client.on :hello do
|
105
|
+
expect(client.message(channel: channel, text: message)).to be true
|
106
|
+
client.stop!
|
107
|
+
end
|
108
|
+
|
109
|
+
start_server
|
108
110
|
end
|
109
111
|
end
|
110
112
|
|
@@ -118,6 +120,72 @@ RSpec.describe 'integration test', skip: (!ENV['SLACK_API_TOKEN'] || !ENV['CONCU
|
|
118
120
|
start_server
|
119
121
|
end
|
120
122
|
|
123
|
+
context 'with websocket_ping set' do
|
124
|
+
before do
|
125
|
+
client.websocket_ping = 5
|
126
|
+
end
|
127
|
+
|
128
|
+
it 'sends pings' do
|
129
|
+
@reply_to = nil
|
130
|
+
client.on :pong do |data|
|
131
|
+
@reply_to = data.reply_to
|
132
|
+
queue.push :pong
|
133
|
+
client.stop!
|
134
|
+
end
|
135
|
+
|
136
|
+
start_server
|
137
|
+
|
138
|
+
queue.pop_with_timeout(10)
|
139
|
+
expect(@reply_to).to eq 1
|
140
|
+
end
|
141
|
+
|
142
|
+
it 'rebuilds the websocket connection when dropped' do
|
143
|
+
@reply_to = nil
|
144
|
+
client.on :pong do |data|
|
145
|
+
logger.info data
|
146
|
+
@reply_to = data.reply_to
|
147
|
+
if @reply_to == 1
|
148
|
+
client.instance_variable_get(:@socket).close
|
149
|
+
queue.push :close
|
150
|
+
else
|
151
|
+
expect(@reply_to).to eq 2
|
152
|
+
queue.push :pong
|
153
|
+
client.stop!
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
start_server
|
158
|
+
|
159
|
+
4.times do |i|
|
160
|
+
queue.pop_with_timeout(10)
|
161
|
+
client.logger.info "Pop #{i}"
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
context 'with websocket_ping not set' do
|
167
|
+
before do
|
168
|
+
client.websocket_ping = 0
|
169
|
+
end
|
170
|
+
|
171
|
+
it 'does not send pings' do
|
172
|
+
@reply_to = nil
|
173
|
+
|
174
|
+
client.on :pong do |data|
|
175
|
+
@reply_to = data.reply_to
|
176
|
+
end
|
177
|
+
|
178
|
+
client.on :hello do
|
179
|
+
client.stop!
|
180
|
+
end
|
181
|
+
|
182
|
+
start_server
|
183
|
+
wait_for_server
|
184
|
+
|
185
|
+
expect(@reply_to).to be nil
|
186
|
+
end
|
187
|
+
end
|
188
|
+
|
121
189
|
it 'gets close, followed by closed' do
|
122
190
|
client.on :hello do
|
123
191
|
expect(client.started?).to be true
|
data/spec/slack/config_spec.rb
CHANGED
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
RSpec.describe Slack::Events::Config do
|
5
|
+
before do
|
6
|
+
ENV['SLACK_SIGNING_SECRET'] = 'secret'
|
7
|
+
described_class.reset
|
8
|
+
end
|
9
|
+
|
10
|
+
after do
|
11
|
+
ENV.delete 'SLACK_SIGNING_SECRET'
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'defaults signing secret to ENV[SLACK_SIGNING_SECRET]' do
|
15
|
+
expect(Slack::Events.config.signing_secret).to eq 'secret'
|
16
|
+
end
|
17
|
+
it 'defaults signature expiration to 5 minutes' do
|
18
|
+
expect(Slack::Events.config.signature_expires_in).to eq 5 * 60
|
19
|
+
end
|
20
|
+
context 'configured' do
|
21
|
+
before do
|
22
|
+
Slack::Events.configure do |config|
|
23
|
+
config.signing_secret = 'custom'
|
24
|
+
config.signature_expires_in = 45
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'uses the configured values' do
|
29
|
+
expect(Slack::Events.config.signing_secret).to eq 'custom'
|
30
|
+
expect(Slack::Events.config.signature_expires_in).to eq 45
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,184 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
RSpec.describe Slack::Events::Request do
|
5
|
+
subject(:request) do
|
6
|
+
described_class.new(http_request)
|
7
|
+
end
|
8
|
+
|
9
|
+
before do
|
10
|
+
Slack::Events.configure do |config|
|
11
|
+
config.signing_secret = signing_secret
|
12
|
+
config.signature_expires_in = 30
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
let(:signing_secret) { 'ade6ca762ade4db0e7d31484cd616b9c' }
|
17
|
+
let(:signature) { 'v0=91177eea054d65de0fc0f9b4ec57714307bc0ce2c5f3bf0d28b1b720c8f92ba2' }
|
18
|
+
let(:timestamp) { '1547933148' }
|
19
|
+
let(:body) do
|
20
|
+
'{"token":"X34FAqCu8tmGEkEEpoDncnja","challenge":' \
|
21
|
+
'"P7sFXA4o3HV2hTx4zb4zcQ9yrvuQs8pDh6EacOxmMRj0tJaXfQFF","type":"url_verification"}'
|
22
|
+
end
|
23
|
+
let(:http_request) do
|
24
|
+
request_double = double(
|
25
|
+
body: StringIO.new(body)
|
26
|
+
)
|
27
|
+
|
28
|
+
allow(request_double).to receive(:get_header).with('HTTP_X_SLACK_REQUEST_TIMESTAMP') { timestamp }
|
29
|
+
allow(request_double).to receive(:get_header).with('HTTP_X_SLACK_SIGNATURE') { signature }
|
30
|
+
|
31
|
+
request_double
|
32
|
+
end
|
33
|
+
|
34
|
+
after do
|
35
|
+
Slack::Events.config.reset
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'reads http request' do
|
39
|
+
expect(request.signature).to eq signature
|
40
|
+
expect(request.body).to eq body
|
41
|
+
expect(request.timestamp).to eq timestamp
|
42
|
+
expect(request.version).to eq 'v0'
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'rewinds the request body after reading it' do
|
46
|
+
expect(request.body).to eq body
|
47
|
+
expect(http_request.body.read).to eq body
|
48
|
+
end
|
49
|
+
|
50
|
+
context 'time' do
|
51
|
+
after do
|
52
|
+
Timecop.return
|
53
|
+
end
|
54
|
+
|
55
|
+
context 'with an invalid signature' do
|
56
|
+
let(:signature) { 'v0=invalid' }
|
57
|
+
|
58
|
+
before do
|
59
|
+
Timecop.freeze(Time.at(timestamp.to_i))
|
60
|
+
end
|
61
|
+
|
62
|
+
it 'is invalid but not expired' do
|
63
|
+
expect(request).not_to be_valid
|
64
|
+
expect(request).not_to be_expired
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
context 'with an invalid body' do
|
69
|
+
let(:body) { 'invalid' }
|
70
|
+
|
71
|
+
before do
|
72
|
+
Timecop.freeze(Time.at(timestamp.to_i))
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'is invalid but not expired' do
|
76
|
+
expect(request).not_to be_valid
|
77
|
+
expect(request).not_to be_expired
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
context 'with an invalid signing secret' do
|
82
|
+
before do
|
83
|
+
Slack::Events.configure do |config|
|
84
|
+
config.signing_secret = 'invalid'
|
85
|
+
end
|
86
|
+
Timecop.freeze(Time.at(timestamp.to_i))
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'is invalid but not expired' do
|
90
|
+
expect(request).not_to be_valid
|
91
|
+
expect(request).not_to be_expired
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
context 'within time window' do
|
96
|
+
before do
|
97
|
+
Timecop.freeze(Time.at(timestamp.to_i) + Slack::Events.config.signature_expires_in - 1)
|
98
|
+
end
|
99
|
+
|
100
|
+
it 'is valid' do
|
101
|
+
expect(request).to be_valid
|
102
|
+
expect(request).not_to be_expired
|
103
|
+
end
|
104
|
+
it 'does not raise an error and returns true' do
|
105
|
+
expect(request.verify!).to be true
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
context 'after time window' do
|
110
|
+
before do
|
111
|
+
Timecop.freeze(Time.at(timestamp.to_i) + Slack::Events.config.signature_expires_in + 1)
|
112
|
+
end
|
113
|
+
|
114
|
+
it 'is valid but expired' do
|
115
|
+
expect(request).to be_valid
|
116
|
+
expect(request).to be_expired
|
117
|
+
end
|
118
|
+
it 'raises an error on verify!' do
|
119
|
+
expect { request.verify! }.to raise_error Slack::Events::Request::TimestampExpired
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
context 'before time but within window' do
|
124
|
+
before do
|
125
|
+
Timecop.freeze(Time.at(timestamp.to_i) - Slack::Events.config.signature_expires_in + 1)
|
126
|
+
end
|
127
|
+
|
128
|
+
it 'is valid and not expired' do
|
129
|
+
expect(request).to be_valid
|
130
|
+
expect(request).not_to be_expired
|
131
|
+
end
|
132
|
+
it 'does not raise an error on verify!' do
|
133
|
+
expect(request.verify!).to be true
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
context 'before time window' do
|
138
|
+
before do
|
139
|
+
Timecop.freeze(Time.at(timestamp.to_i) - Slack::Events.config.signature_expires_in - 1)
|
140
|
+
end
|
141
|
+
|
142
|
+
it 'is valid but expired' do
|
143
|
+
expect(request).to be_valid
|
144
|
+
expect(request).to be_expired
|
145
|
+
end
|
146
|
+
it 'raises an error on verify!' do
|
147
|
+
expect { request.verify! }.to raise_error Slack::Events::Request::TimestampExpired
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
context 'without global config' do
|
153
|
+
before do
|
154
|
+
Slack::Events.config.reset
|
155
|
+
end
|
156
|
+
|
157
|
+
context 'without a signing secret parameter' do
|
158
|
+
subject(:request) do
|
159
|
+
described_class.new(http_request)
|
160
|
+
end
|
161
|
+
|
162
|
+
it 'raises MissingSigningSecret' do
|
163
|
+
expect { request.valid? }.to raise_error Slack::Events::Request::MissingSigningSecret
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
context 'with a signing secret parameter' do
|
168
|
+
subject(:request) do
|
169
|
+
described_class.new(http_request,
|
170
|
+
signing_secret: signing_secret,
|
171
|
+
signature_expires_in: 30)
|
172
|
+
end
|
173
|
+
|
174
|
+
before do
|
175
|
+
Timecop.freeze(Time.at(timestamp.to_i))
|
176
|
+
end
|
177
|
+
|
178
|
+
it 'is valid and not expired' do
|
179
|
+
expect(request).to be_valid
|
180
|
+
expect(request).not_to be_expired
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
184
|
+
end
|
@@ -1,42 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'spec_helper'
|
2
3
|
|
3
4
|
describe Slack::Messages::Formatting do
|
4
|
-
subject do
|
5
|
-
|
5
|
+
subject(:formatting) do
|
6
|
+
described_class
|
6
7
|
end
|
8
|
+
|
7
9
|
context '#unescape' do
|
8
10
|
it 'plain text' do
|
9
|
-
expect(
|
11
|
+
expect(formatting.unescape('plain text')).to eq 'plain text'
|
10
12
|
end
|
11
13
|
it 'decodes an HTML-encoded message' do
|
12
|
-
expect(
|
14
|
+
expect(formatting.unescape('Hello & <world>')).to eq 'Hello & <world>'
|
13
15
|
end
|
14
16
|
it 'unescapes a user reference' do
|
15
|
-
expect(
|
17
|
+
expect(formatting.unescape('Hey <@U024BE7LH|bob>, did you see my file?')).to(
|
18
|
+
eq('Hey @bob, did you see my file?')
|
19
|
+
)
|
16
20
|
end
|
17
21
|
it 'unescapes a user reference without a name' do
|
18
|
-
expect(
|
22
|
+
expect(formatting.unescape('<@U02BEFY4U> ^^^')).to eq '@U02BEFY4U ^^^'
|
19
23
|
end
|
20
24
|
it 'unescapes a URL without text' do
|
21
|
-
expect(
|
25
|
+
expect(formatting.unescape('This message contains a URL <http://foo.com/>')).to(
|
26
|
+
eq('This message contains a URL http://foo.com/')
|
27
|
+
)
|
22
28
|
end
|
23
29
|
it 'unescapes a URL with text' do
|
24
|
-
expect(
|
30
|
+
expect(formatting.unescape('So does this one: <http://www.foo.com|www.foo.com>')).to(
|
31
|
+
eq('So does this one: www.foo.com')
|
32
|
+
)
|
25
33
|
end
|
26
34
|
it 'removes mailto' do
|
27
|
-
expect(
|
35
|
+
expect(formatting.unescape('<mailto:bob@example.com|Bob>')).to eq 'Bob'
|
28
36
|
end
|
29
37
|
it 'unlinkifies references' do
|
30
|
-
expect(
|
38
|
+
expect(
|
39
|
+
formatting.unescape('Hello <@U123|bob>, say hi to <!everyone> in <#C1234|general>')
|
40
|
+
).to(
|
41
|
+
eq('Hello @bob, say hi to @everyone in #general')
|
42
|
+
)
|
31
43
|
end
|
32
44
|
it 'can handle a lone >' do
|
33
|
-
expect(
|
45
|
+
expect(formatting.unescape('Hello <@U123|bob> > file.txt')).to eq 'Hello @bob > file.txt'
|
34
46
|
end
|
35
47
|
it 'unescapes a double smart quote' do
|
36
|
-
expect(
|
48
|
+
expect(formatting.unescape('“hello”')).to eq '"hello"'
|
37
49
|
end
|
38
50
|
it 'unescapes a single smart quote' do
|
39
|
-
expect(
|
51
|
+
expect(formatting.unescape('‘hello’')).to eq "'hello'"
|
40
52
|
end
|
41
53
|
end
|
42
54
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'spec_helper'
|
2
3
|
|
3
4
|
RSpec.describe Slack::RealTime::Client, vcr: { cassette_name: 'web/rtm_start' } do
|
@@ -7,8 +8,12 @@ RSpec.describe Slack::RealTime::Client, vcr: { cassette_name: 'web/rtm_start' }
|
|
7
8
|
before do
|
8
9
|
allow(client).to receive(:next_id).and_return(42)
|
9
10
|
end
|
11
|
+
|
10
12
|
it 'sends message' do
|
11
|
-
expect(socket).to
|
13
|
+
expect(socket).to(
|
14
|
+
receive(:send_data)
|
15
|
+
.with({ type: 'message', id: 42, text: 'hello world', channel: 'channel' }.to_json)
|
16
|
+
)
|
12
17
|
client.message(text: 'hello world', channel: 'channel')
|
13
18
|
end
|
14
19
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'spec_helper'
|
2
3
|
|
3
4
|
RSpec.describe Slack::RealTime::Client, vcr: { cassette_name: 'web/rtm_start' } do
|
@@ -7,6 +8,7 @@ RSpec.describe Slack::RealTime::Client, vcr: { cassette_name: 'web/rtm_start' }
|
|
7
8
|
before do
|
8
9
|
allow(client).to receive(:next_id).and_return(42)
|
9
10
|
end
|
11
|
+
|
10
12
|
it 'sends message' do
|
11
13
|
expect(socket).to receive(:send_data).with({ type: 'ping', id: 42 }.to_json)
|
12
14
|
client.ping
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'spec_helper'
|
2
3
|
|
3
4
|
RSpec.describe Slack::RealTime::Client, vcr: { cassette_name: 'web/rtm_start' } do
|
@@ -7,8 +8,11 @@ RSpec.describe Slack::RealTime::Client, vcr: { cassette_name: 'web/rtm_start' }
|
|
7
8
|
before do
|
8
9
|
allow(client).to receive(:next_id).and_return(42)
|
9
10
|
end
|
11
|
+
|
10
12
|
it 'sends a typing indicator' do
|
11
|
-
expect(socket).to
|
13
|
+
expect(socket).to(
|
14
|
+
receive(:send_data).with({ type: 'typing', id: 42, channel: 'channel' }.to_json)
|
15
|
+
)
|
12
16
|
client.typing(channel: 'channel')
|
13
17
|
end
|
14
18
|
end
|