slack-ruby-client 0.11.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.coveralls.yml +2 -0
- data/.github/FUNDING.yml +2 -0
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/integration_test.yml +45 -0
- data/.github/workflows/lint.yml +14 -0
- data/.github/workflows/pr_lint.yml +21 -0
- data/.github/workflows/test.yml +56 -0
- data/.github/workflows/update_api.yml +81 -0
- data/.gitignore +7 -3
- data/.rubocop.yml +40 -2
- data/.rubocop_todo.yml +209 -55
- data/.ruby-version +1 -0
- data/CHANGELOG.md +257 -30
- data/CONTRIBUTING.md +44 -29
- data/Dangerfile +2 -0
- data/Gemfile +28 -6
- data/Gemfile.danger +6 -0
- data/LICENSE.md +1 -1
- data/README.md +473 -134
- data/RELEASING.md +2 -2
- data/Rakefile +2 -1
- data/SECURITY.md +9 -0
- data/UPGRADING.md +117 -3
- data/bin/commands/admin_analytics.rb +22 -0
- data/bin/commands/admin_apps.rb +57 -0
- data/bin/commands/admin_apps_activities.rb +32 -0
- data/bin/commands/admin_apps_approved.rb +24 -0
- data/bin/commands/admin_apps_config.rb +31 -0
- data/bin/commands/admin_apps_requests.rb +35 -0
- data/bin/commands/admin_apps_restricted.rb +24 -0
- data/bin/commands/admin_audit_anomaly_allow.rb +29 -0
- data/bin/commands/admin_auth_policy.rb +45 -0
- data/bin/commands/admin_barriers.rb +53 -0
- data/bin/commands/admin_conversations.rb +260 -0
- data/bin/commands/admin_conversations_ekm.rb +23 -0
- data/bin/commands/admin_conversations_restrictAccess.rb +43 -0
- data/bin/commands/admin_emoji.rb +60 -0
- data/bin/commands/admin_functions.rb +23 -0
- data/bin/commands/admin_functions_permissions.rb +31 -0
- data/bin/commands/admin_inviteRequests.rb +42 -0
- data/bin/commands/admin_inviteRequests_approved.rb +22 -0
- data/bin/commands/admin_inviteRequests_denied.rb +22 -0
- data/bin/commands/admin_roles.rb +46 -0
- data/bin/commands/admin_teams.rb +33 -0
- data/bin/commands/admin_teams_admins.rb +22 -0
- data/bin/commands/admin_teams_owners.rb +22 -0
- data/bin/commands/admin_teams_settings.rb +70 -0
- data/bin/commands/admin_usergroups.rb +54 -0
- data/bin/commands/admin_users.rb +106 -0
- data/bin/commands/admin_users_session.rb +84 -0
- data/bin/commands/admin_users_unsupportedVersions.rb +21 -0
- data/bin/commands/admin_workflows.rb +42 -0
- data/bin/commands/admin_workflows_collaborators.rb +31 -0
- data/bin/commands/admin_workflows_permissions.rb +21 -0
- data/bin/commands/admin_workflows_triggers_types_permissions.rb +31 -0
- data/bin/commands/api.rb +15 -9
- data/bin/commands/apps.rb +21 -0
- data/bin/commands/apps_activities.rb +32 -0
- data/bin/commands/apps_auth_external.rb +32 -0
- data/bin/commands/apps_connections.rb +19 -0
- data/bin/commands/apps_datastore.rb +116 -0
- data/bin/commands/apps_event_authorizations.rb +22 -0
- data/bin/commands/apps_manifest.rb +58 -0
- data/bin/commands/assistant_search.rb +27 -0
- data/bin/commands/assistant_threads.rb +45 -0
- data/bin/commands/auth.rb +22 -15
- data/bin/commands/auth_teams.rb +22 -0
- data/bin/commands/bookmarks.rb +60 -0
- data/bin/commands/bots.rb +16 -8
- data/bin/commands/calls.rb +58 -0
- data/bin/commands/calls_participants.rb +31 -0
- data/bin/commands/canvases.rb +41 -0
- data/bin/commands/canvases_access.rb +34 -0
- data/bin/commands/canvases_sections.rb +21 -0
- data/bin/commands/chat.rb +158 -99
- data/bin/commands/chat_scheduledMessages.rb +25 -0
- data/bin/commands/conversations.rb +241 -157
- data/bin/commands/conversations_canvases.rb +22 -0
- data/bin/commands/conversations_externalInvitePermissions.rb +22 -0
- data/bin/commands/conversations_requestSharedInvite.rb +48 -0
- data/bin/commands/dialog.rb +16 -9
- data/bin/commands/dnd.rb +47 -38
- data/bin/commands/emoji.rb +15 -7
- data/bin/commands/files.rb +113 -87
- data/bin/commands/files_comments.rb +16 -30
- data/bin/commands/files_remote.rb +84 -0
- data/bin/commands/functions.rb +31 -0
- data/bin/commands/functions_distributions_permissions.rb +61 -0
- data/bin/commands/functions_workflows_steps.rb +23 -0
- data/bin/commands/functions_workflows_steps_responses.rb +23 -0
- data/bin/commands/migration.rb +17 -9
- data/bin/commands/oauth.rb +19 -24
- data/bin/commands/oauth_v2.rb +35 -0
- data/bin/commands/openid_connect.rb +33 -0
- data/bin/commands/pins.rb +33 -30
- data/bin/commands/reactions.rb +53 -45
- data/bin/commands/reminders.rb +54 -41
- data/bin/commands/rtm.rb +16 -22
- data/bin/commands/search.rb +44 -33
- data/bin/commands/stars.rb +39 -29
- data/bin/commands/team.rb +50 -34
- data/bin/commands/team_billing.rb +19 -0
- data/bin/commands/team_externalTeams.rb +35 -0
- data/bin/commands/team_preferences.rb +19 -0
- data/bin/commands/team_profile.rb +15 -8
- data/bin/commands/tooling_tokens.rb +20 -0
- data/bin/commands/usergroups.rb +69 -53
- data/bin/commands/usergroups_users.rb +30 -19
- data/bin/commands/users.rb +114 -84
- data/bin/commands/users_admin.rb +29 -22
- data/bin/commands/users_discoverableContacts.rb +20 -0
- data/bin/commands/users_prefs.rb +14 -7
- data/bin/commands/users_profile.rb +27 -20
- data/bin/commands/views.rb +56 -0
- data/bin/commands/workflows.rb +44 -0
- data/bin/commands/workflows_triggers_permissions.rb +60 -0
- data/bin/slack +50 -46
- data/examples/files_upload_v2/.env.example +1 -0
- data/examples/{hi_real_time → files_upload_v2}/Gemfile +2 -2
- data/examples/files_upload_v2/README.md +13 -0
- data/examples/files_upload_v2/files_upload_v2.rb +45 -0
- 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_eventmachine → 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/examples/oauth_v2/.env.example +4 -0
- data/examples/oauth_v2/Gemfile +7 -0
- data/examples/oauth_v2/README.md +33 -0
- data/examples/oauth_v2/oauth_v2.rb +60 -0
- data/lib/slack/config.rb +2 -2
- data/lib/slack/events/config.rb +32 -0
- data/lib/slack/events/request.rb +76 -0
- data/lib/slack/logger.rb +6 -5
- data/lib/slack/messages/formatting.rb +66 -1
- data/lib/slack/messages/message.rb +1 -4
- data/lib/slack/real_time/api/message.rb +6 -3
- 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/templates/event_handler.erb +5 -1
- data/lib/slack/real_time/api/typing.rb +5 -2
- data/lib/slack/real_time/client.rb +117 -54
- data/lib/slack/real_time/concurrency/async.rb +142 -0
- data/lib/slack/real_time/concurrency.rb +2 -2
- data/lib/slack/real_time/config.rb +12 -13
- 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 +5 -0
- data/lib/slack/real_time/models/im.rb +1 -0
- data/lib/slack/real_time/models/{group.rb → mpim.rb} +2 -1
- 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 +3 -1
- data/lib/slack/real_time/socket.rb +49 -17
- data/lib/slack/real_time/stores/base.rb +28 -14
- data/lib/slack/real_time/stores/starter.rb +325 -287
- data/lib/slack/real_time/stores/store.rb +271 -186
- data/lib/slack/real_time/stores.rb +2 -7
- data/lib/slack/utils/security.rb +44 -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_activities.rb +53 -0
- data/lib/slack/web/api/endpoints/admin_apps_approved.rb +37 -0
- data/lib/slack/web/api/endpoints/admin_apps_config.rb +40 -0
- data/lib/slack/web/api/endpoints/admin_apps_requests.rb +53 -0
- data/lib/slack/web/api/endpoints/admin_apps_restricted.rb +37 -0
- data/lib/slack/web/api/endpoints/admin_audit_anomaly_allow.rb +34 -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 +397 -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_emoji.rb +88 -0
- data/lib/slack/web/api/endpoints/admin_functions.rb +36 -0
- data/lib/slack/web/api/endpoints/admin_functions_permissions.rb +41 -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_roles.rb +73 -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 +167 -0
- data/lib/slack/web/api/endpoints/admin_users_session.rb +121 -0
- data/lib/slack/web/api/endpoints/admin_users_unsupportedVersions.rb +25 -0
- data/lib/slack/web/api/endpoints/admin_workflows.rb +67 -0
- data/lib/slack/web/api/endpoints/admin_workflows_collaborators.rb +42 -0
- data/lib/slack/web/api/endpoints/admin_workflows_permissions.rb +26 -0
- data/lib/slack/web/api/endpoints/admin_workflows_triggers_types_permissions.rb +41 -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_activities.rb +54 -0
- data/lib/slack/web/api/endpoints/apps_auth_external.rb +41 -0
- data/lib/slack/web/api/endpoints/apps_connections.rb +21 -0
- data/lib/slack/web/api/endpoints/apps_datastore.rb +181 -0
- data/lib/slack/web/api/endpoints/apps_event_authorizations.rb +34 -0
- data/lib/slack/web/api/endpoints/apps_manifest.rb +79 -0
- data/lib/slack/web/api/endpoints/assistant_search.rb +44 -0
- data/lib/slack/web/api/endpoints/assistant_threads.rb +68 -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 +90 -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/canvases.rb +54 -0
- data/lib/slack/web/api/endpoints/canvases_access.rb +47 -0
- data/lib/slack/web/api/endpoints/canvases_sections.rb +27 -0
- data/lib/slack/web/api/endpoints/chat.rb +172 -87
- data/lib/slack/web/api/endpoints/chat_scheduledMessages.rb +40 -0
- data/lib/slack/web/api/endpoints/conversations.rb +190 -64
- data/lib/slack/web/api/endpoints/conversations_canvases.rb +28 -0
- data/lib/slack/web/api/endpoints/conversations_externalInvitePermissions.rb +31 -0
- data/lib/slack/web/api/endpoints/conversations_requestSharedInvite.rb +73 -0
- data/lib/slack/web/api/endpoints/dialog.rb +6 -10
- data/lib/slack/web/api/endpoints/dnd.rb +11 -5
- data/lib/slack/web/api/endpoints/emoji.rb +3 -0
- data/lib/slack/web/api/endpoints/files.rb +85 -36
- data/lib/slack/web/api/endpoints/files_comments.rb +4 -36
- data/lib/slack/web/api/endpoints/files_remote.rb +127 -0
- data/lib/slack/web/api/endpoints/functions.rb +43 -0
- data/lib/slack/web/api/endpoints/functions_distributions_permissions.rb +84 -0
- data/lib/slack/web/api/endpoints/functions_workflows_steps.rb +30 -0
- data/lib/slack/web/api/endpoints/functions_workflows_steps_responses.rb +30 -0
- data/lib/slack/web/api/endpoints/migration.rb +6 -3
- data/lib/slack/web/api/endpoints/oauth.rb +10 -32
- 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 +11 -18
- data/lib/slack/web/api/endpoints/reactions.rb +31 -20
- data/lib/slack/web/api/endpoints/reminders.rb +25 -12
- data/lib/slack/web/api/endpoints/rtm.rb +4 -22
- data/lib/slack/web/api/endpoints/search.rb +33 -18
- data/lib/slack/web/api/endpoints/stars.rb +23 -10
- data/lib/slack/web/api/endpoints/team.rb +38 -7
- data/lib/slack/web/api/endpoints/team_billing.rb +21 -0
- data/lib/slack/web/api/endpoints/team_externalTeams.rb +53 -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 +44 -25
- data/lib/slack/web/api/endpoints/usergroups_users.rb +23 -14
- data/lib/slack/web/api/endpoints/users.rb +57 -18
- data/lib/slack/web/api/endpoints/users_admin.rb +5 -2
- data/lib/slack/web/api/endpoints/users_discoverableContacts.rb +24 -0
- data/lib/slack/web/api/endpoints/users_prefs.rb +2 -0
- data/lib/slack/web/api/endpoints/users_profile.rb +11 -9
- data/lib/slack/web/api/endpoints/views.rb +86 -0
- data/lib/slack/web/api/endpoints/workflows.rb +63 -0
- data/lib/slack/web/api/endpoints/workflows_triggers_permissions.rb +87 -0
- data/lib/slack/web/api/endpoints.rb +136 -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 +1396 -0
- data/lib/slack/web/api/helpers/files.rb +97 -0
- data/lib/slack/web/api/helpers.rb +13 -0
- data/lib/slack/web/api/mixins/conversations.id.rb +47 -0
- data/lib/slack/web/api/mixins/ids.id.rb +4 -3
- data/lib/slack/web/api/mixins/users.id.rb +18 -4
- data/lib/slack/web/api/mixins/users.search.rb +3 -1
- data/lib/slack/web/api/mixins.rb +2 -2
- data/lib/slack/web/api/options.rb +26 -0
- data/lib/slack/web/api/patches/.gitkeep +0 -0
- data/lib/slack/web/api/templates/command.erb +19 -12
- 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 +23 -3
- data/lib/slack/web/api/templates/method_spec.erb +40 -3
- data/lib/slack/web/client.rb +4 -1
- data/lib/slack/web/config.rb +9 -2
- data/lib/slack/web/faraday/connection.rb +11 -20
- data/lib/slack/web/faraday/options.rb +24 -0
- data/lib/slack/web/faraday/request.rb +6 -1
- data/lib/slack/web/faraday/response/raise_error.rb +14 -8
- 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 +18 -6
- 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 +51 -21
- data/lib/tasks/update.rake +1 -0
- data/lib/tasks/web.rake +43 -17
- data/slack-ruby-client.gemspec +10 -14
- metadata +191 -307
- data/.travis.yml +0 -30
- data/bin/commands/apps_permissions.rb +0 -22
- data/bin/commands/channels.rb +0 -175
- data/bin/commands/groups.rb +0 -172
- data/bin/commands/im.rb +0 -67
- data/bin/commands/mpim.rb +0 -63
- data/bin/commands.rb +0 -33
- 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/hi.rb +0 -36
- data/examples/hi_real_time_async_eventmachine/Procfile +0 -2
- 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/endpoints/apps_permissions.rb +0 -35
- data/lib/slack/web/api/endpoints/channels.rb +0 -265
- data/lib/slack/web/api/endpoints/groups.rb +0 -255
- data/lib/slack/web/api/endpoints/im.rb +0 -113
- data/lib/slack/web/api/endpoints/mpim.rb +0 -98
- data/lib/slack/web/api/endpoints/presence.rb +0 -23
- data/lib/slack/web/api/mixins/channels.id.json +0 -20
- data/lib/slack/web/api/mixins/channels.id.rb +0 -26
- 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/dialog.1.open-json-support.patch +0 -17
- data/lib/slack/web/api/templates/commands.erb +0 -5
- data/screenshots/register-bot.png +0 -0
- data/spec/fixtures/slack/web/429_error.yml +0 -85
- data/spec/fixtures/slack/web/auth_test_error.yml +0 -48
- data/spec/fixtures/slack/web/auth_test_success.yml +0 -57
- data/spec/fixtures/slack/web/channels_info.yml +0 -46
- data/spec/fixtures/slack/web/groups_info.yml +0 -43
- data/spec/fixtures/slack/web/paginated_users_list.yml +0 -181
- data/spec/fixtures/slack/web/rtm_connect.yml +0 -70
- data/spec/fixtures/slack/web/rtm_start.yml +0 -104
- data/spec/fixtures/slack/web/users_info.yml +0 -130
- data/spec/fixtures/slack/web/users_list.yml +0 -72
- data/spec/integration/integration_spec.rb +0 -139
- data/spec/slack/config_spec.rb +0 -14
- data/spec/slack/messages/formatting_spec.rb +0 -43
- data/spec/slack/real_time/api/message_spec.rb +0 -15
- data/spec/slack/real_time/api/ping_spec.rb +0 -15
- data/spec/slack/real_time/api/typing_spec.rb +0 -15
- data/spec/slack/real_time/client_spec.rb +0 -425
- 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/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +0 -19
- data/spec/slack/real_time/event_handlers/bot_spec.rb +0 -44
- data/spec/slack/real_time/event_handlers/channel_spec.rb +0 -116
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +0 -15
- data/spec/slack/real_time/event_handlers/group_spec.rb +0 -90
- data/spec/slack/real_time/event_handlers/im_spec.rb +0 -47
- data/spec/slack/real_time/event_handlers/team_spec.rb +0 -62
- data/spec/slack/real_time/event_handlers/user_spec.rb +0 -63
- data/spec/slack/real_time/rtm_connect_spec.rb +0 -13
- data/spec/slack/real_time/rtm_start_spec.rb +0 -13
- data/spec/slack/real_time/store_spec.rb +0 -11
- data/spec/slack/slack_spec.rb +0 -58
- data/spec/slack/version_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/api_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/apps_permissions_spec.rb +0 -15
- data/spec/slack/web/api/endpoints/bots_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/conversations_spec.rb +0 -100
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +0 -25
- data/spec/slack/web/api/endpoints/custom_specs/channels_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +0 -105
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +0 -28
- data/spec/slack/web/api/endpoints/custom_specs/groups_spec.rb +0 -11
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +0 -33
- data/spec/slack/web/api/endpoints/dnd_spec.rb +0 -12
- data/spec/slack/web/api/endpoints/emoji_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +0 -34
- data/spec/slack/web/api/endpoints/files_spec.rb +0 -43
- data/spec/slack/web/api/endpoints/im_spec.rb +0 -38
- data/spec/slack/web/api/endpoints/migration_spec.rb +0 -12
- data/spec/slack/web/api/endpoints/mpim_spec.rb +0 -38
- data/spec/slack/web/api/endpoints/oauth_spec.rb +0 -29
- data/spec/slack/web/api/endpoints/pins_spec.rb +0 -22
- data/spec/slack/web/api/endpoints/reactions_spec.rb +0 -17
- data/spec/slack/web/api/endpoints/reminders_spec.rb +0 -30
- data/spec/slack/web/api/endpoints/rtm_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/search_spec.rb +0 -22
- data/spec/slack/web/api/endpoints/stars_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/team_profile_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/team_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/usergroups_spec.rb +0 -27
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +0 -20
- data/spec/slack/web/api/endpoints/users_admin_spec.rb +0 -17
- data/spec/slack/web/api/endpoints/users_prefs_spec.rb +0 -7
- data/spec/slack/web/api/endpoints/users_profile_spec.rb +0 -7
- data/spec/slack/web/api/error_spec.rb +0 -14
- data/spec/slack/web/api/errors/slack_error_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
- data/spec/slack/web/api/mixins/users_spec.rb +0 -39
- data/spec/slack/web/api/pagination/cursor_spec.rb +0 -70
- data/spec/slack/web/client_spec.rb +0 -174
- data/spec/spec_helper.rb +0 -14
- data/spec/support/queue_with_timeout.rb +0 -34
- data/spec/support/real_time/concurrency/mock.rb +0 -30
- data/spec/support/real_time/connected_client.rb +0 -21
- data/spec/support/real_time/event.rb +0 -11
- data/spec/support/token.rb +0 -10
- data/spec/support/vcr.rb +0 -9
- /data/examples/{hi_real_time_async_celluloid → hi_real_time_async_async}/Procfile +0 -0
@@ -1,100 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Conversations do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'conversations_archive' do
|
8
|
-
it 'requires channel' do
|
9
|
-
expect { client.conversations_archive }.to raise_error ArgumentError, /Required arguments :channel missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
context 'conversations_close' do
|
13
|
-
it 'requires channel' do
|
14
|
-
expect { client.conversations_close }.to raise_error ArgumentError, /Required arguments :channel missing/
|
15
|
-
end
|
16
|
-
end
|
17
|
-
context 'conversations_create' do
|
18
|
-
it 'requires name' do
|
19
|
-
expect { client.conversations_create }.to raise_error ArgumentError, /Required arguments :name missing/
|
20
|
-
end
|
21
|
-
end
|
22
|
-
context 'conversations_history' do
|
23
|
-
it 'requires channel' do
|
24
|
-
expect { client.conversations_history }.to raise_error ArgumentError, /Required arguments :channel missing/
|
25
|
-
end
|
26
|
-
end
|
27
|
-
context 'conversations_info' do
|
28
|
-
it 'requires channel' do
|
29
|
-
expect { client.conversations_info }.to raise_error ArgumentError, /Required arguments :channel missing/
|
30
|
-
end
|
31
|
-
end
|
32
|
-
context 'conversations_invite' do
|
33
|
-
it 'requires channel' do
|
34
|
-
expect { client.conversations_invite(users: 'W1234567890,U2345678901,U3456789012') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
35
|
-
end
|
36
|
-
it 'requires users' do
|
37
|
-
expect { client.conversations_invite(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :users missing/
|
38
|
-
end
|
39
|
-
end
|
40
|
-
context 'conversations_join' do
|
41
|
-
it 'requires channel' do
|
42
|
-
expect { client.conversations_join }.to raise_error ArgumentError, /Required arguments :channel missing/
|
43
|
-
end
|
44
|
-
end
|
45
|
-
context 'conversations_kick' do
|
46
|
-
it 'requires channel' do
|
47
|
-
expect { client.conversations_kick(user: 'W1234567890') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
48
|
-
end
|
49
|
-
it 'requires user' do
|
50
|
-
expect { client.conversations_kick(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :user missing/
|
51
|
-
end
|
52
|
-
end
|
53
|
-
context 'conversations_leave' do
|
54
|
-
it 'requires channel' do
|
55
|
-
expect { client.conversations_leave }.to raise_error ArgumentError, /Required arguments :channel missing/
|
56
|
-
end
|
57
|
-
end
|
58
|
-
context 'conversations_members' do
|
59
|
-
it 'requires channel' do
|
60
|
-
expect { client.conversations_members }.to raise_error ArgumentError, /Required arguments :channel missing/
|
61
|
-
end
|
62
|
-
end
|
63
|
-
context 'conversations_rename' do
|
64
|
-
it 'requires channel' do
|
65
|
-
expect { client.conversations_rename(name: ' ') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
66
|
-
end
|
67
|
-
it 'requires name' do
|
68
|
-
expect { client.conversations_rename(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :name missing/
|
69
|
-
end
|
70
|
-
end
|
71
|
-
context 'conversations_replies' do
|
72
|
-
it 'requires channel' do
|
73
|
-
expect { client.conversations_replies(ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
74
|
-
end
|
75
|
-
it 'requires ts' do
|
76
|
-
expect { client.conversations_replies(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :ts missing/
|
77
|
-
end
|
78
|
-
end
|
79
|
-
context 'conversations_setPurpose' do
|
80
|
-
it 'requires channel' do
|
81
|
-
expect { client.conversations_setPurpose(purpose: 'My More Special Purpose') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
82
|
-
end
|
83
|
-
it 'requires purpose' do
|
84
|
-
expect { client.conversations_setPurpose(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :purpose missing/
|
85
|
-
end
|
86
|
-
end
|
87
|
-
context 'conversations_setTopic' do
|
88
|
-
it 'requires channel' do
|
89
|
-
expect { client.conversations_setTopic(topic: 'Apply topically for best effects') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
90
|
-
end
|
91
|
-
it 'requires topic' do
|
92
|
-
expect { client.conversations_setTopic(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :topic missing/
|
93
|
-
end
|
94
|
-
end
|
95
|
-
context 'conversations_unarchive' do
|
96
|
-
it 'requires channel' do
|
97
|
-
expect { client.conversations_unarchive }.to raise_error ArgumentError, /Required arguments :channel missing/
|
98
|
-
end
|
99
|
-
end
|
100
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
RSpec.describe Slack::Web::Api::Endpoints::Auth do
|
4
|
-
let(:client) { Slack::Web::Client.new }
|
5
|
-
context 'without auth', vcr: { cassette_name: 'web/auth_test_error' } do
|
6
|
-
it 'fails with an exception' do
|
7
|
-
expect { client.auth_test }.to raise_error Slack::Web::Api::Errors::SlackError, 'not_authed'
|
8
|
-
end
|
9
|
-
end
|
10
|
-
context 'with auth', vcr: { cassette_name: 'web/auth_test_success' } do
|
11
|
-
it 'succeeds' do
|
12
|
-
expect { client.auth_test }.to_not raise_error
|
13
|
-
end
|
14
|
-
end
|
15
|
-
context '429 error', vcr: { cassette_name: 'web/429_error' } do
|
16
|
-
it 'fails with an specific exception' do
|
17
|
-
begin
|
18
|
-
client.auth_test
|
19
|
-
rescue Slack::Web::Api::Errors::TooManyRequestsError => e
|
20
|
-
expect(e.message).to eq('Retry after 3600 seconds')
|
21
|
-
expect(e.retry_after).to eq(3600)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
@@ -1,11 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
RSpec.describe Slack::Web::Api::Endpoints::Channels do
|
4
|
-
let(:client) { Slack::Web::Client.new }
|
5
|
-
context 'channels' do
|
6
|
-
it 'info', vcr: { cassette_name: 'web/channels_info' } do
|
7
|
-
json = client.channels_info(channel: '#general')
|
8
|
-
expect(json.channel.name).to eq 'general'
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
@@ -1,105 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
RSpec.describe Slack::Web::Api::Endpoints::Chat do
|
4
|
-
let(:client) { Slack::Web::Client.new }
|
5
|
-
context 'chat_postEphemeral' do
|
6
|
-
let(:user) { OpenStruct.new(user: { id: '123' }) }
|
7
|
-
before(:each) do
|
8
|
-
allow(described_class).to receive(:users_id).and_return(user)
|
9
|
-
end
|
10
|
-
|
11
|
-
it 'automatically converts attachments into JSON' do
|
12
|
-
expect(client).to receive(:post).with(
|
13
|
-
'chat.postEphemeral',
|
14
|
-
channel: 'channel',
|
15
|
-
text: 'text',
|
16
|
-
user: '123',
|
17
|
-
attachments: '[]'
|
18
|
-
)
|
19
|
-
client.chat_postEphemeral(channel: 'channel', text: 'text', user: '123', attachments: [])
|
20
|
-
end
|
21
|
-
context 'text and user arguments' do
|
22
|
-
it 'requires text' do
|
23
|
-
expect { client.chat_postEphemeral(channel: 'channel') }.to raise_error ArgumentError, /Required arguments :text missing/
|
24
|
-
end
|
25
|
-
it 'requires user' do
|
26
|
-
expect { client.chat_postEphemeral(channel: 'channel', text: 'text') }.to raise_error ArgumentError, /Required arguments :user missing/
|
27
|
-
end
|
28
|
-
it 'both text and user' do
|
29
|
-
expect(client).to receive(:post).with('chat.postEphemeral', hash_including(text: 'text', user: '123'))
|
30
|
-
expect { client.chat_postEphemeral(channel: 'channel', text: 'text', user: '123') }.to_not raise_error
|
31
|
-
end
|
32
|
-
end
|
33
|
-
context 'attachments argument' do
|
34
|
-
it 'optional attachments' do
|
35
|
-
expect(client).to receive(:post).with('chat.postEphemeral', hash_including(attachments: '[]'))
|
36
|
-
expect { client.chat_postEphemeral(channel: 'channel', text: 'text', user: '123', attachments: []) }.to_not raise_error
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
context 'chat_postMessage' do
|
42
|
-
it 'automatically converts attachments into JSON' do
|
43
|
-
expect(client).to receive(:post).with(
|
44
|
-
'chat.postMessage',
|
45
|
-
channel: 'channel',
|
46
|
-
text: 'text',
|
47
|
-
attachments: '[]'
|
48
|
-
)
|
49
|
-
client.chat_postMessage(channel: 'channel', text: 'text', attachments: [])
|
50
|
-
end
|
51
|
-
context 'text and attachment arguments' do
|
52
|
-
it 'requires text or attachments' do
|
53
|
-
expect { client.chat_postMessage(channel: 'channel') }.to raise_error ArgumentError, /Required arguments :text or :attachments missing/
|
54
|
-
end
|
55
|
-
it 'only text' do
|
56
|
-
expect(client).to receive(:post).with('chat.postMessage', hash_including(text: 'text'))
|
57
|
-
expect { client.chat_postMessage(channel: 'channel', text: 'text') }.to_not raise_error
|
58
|
-
end
|
59
|
-
it 'only attachments' do
|
60
|
-
expect(client).to receive(:post).with('chat.postMessage', hash_including(attachments: '[]'))
|
61
|
-
expect { client.chat_postMessage(channel: 'channel', attachments: []) }.to_not raise_error
|
62
|
-
end
|
63
|
-
it 'both text and attachments' do
|
64
|
-
expect(client).to receive(:post).with('chat.postMessage', hash_including(text: 'text', attachments: '[]'))
|
65
|
-
expect { client.chat_postMessage(channel: 'channel', text: 'text', attachments: []) }.to_not raise_error
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
context 'chat_update' do
|
71
|
-
let(:ts) { '1405894322.002768' }
|
72
|
-
it 'automatically converts attachments into JSON' do
|
73
|
-
expect(client).to receive(:post).with(
|
74
|
-
'chat.update',
|
75
|
-
attachments: '[]',
|
76
|
-
channel: 'channel',
|
77
|
-
text: 'text',
|
78
|
-
ts: ts
|
79
|
-
)
|
80
|
-
client.chat_update(attachments: [], channel: 'channel', text: 'text', ts: ts)
|
81
|
-
end
|
82
|
-
context 'ts arguments' do
|
83
|
-
it 'requires ts' do
|
84
|
-
expect { client.chat_update(channel: 'channel', text: 'text') }.to raise_error ArgumentError, /Required arguments :ts missing>/
|
85
|
-
end
|
86
|
-
end
|
87
|
-
context 'text and attachment arguments' do
|
88
|
-
it 'requires text or attachments' do
|
89
|
-
expect { client.chat_update(channel: 'channel', ts: ts) }.to raise_error ArgumentError, /Required arguments :text or :attachments missing/
|
90
|
-
end
|
91
|
-
it 'only text' do
|
92
|
-
expect(client).to receive(:post).with('chat.update', hash_including(text: 'text'))
|
93
|
-
expect { client.chat_update(channel: 'channel', text: 'text', ts: ts) }.to_not raise_error
|
94
|
-
end
|
95
|
-
it 'only attachments' do
|
96
|
-
expect(client).to receive(:post).with('chat.update', hash_including(attachments: '[]'))
|
97
|
-
expect { client.chat_update(attachments: [], channel: 'channel', ts: ts) }.to_not raise_error
|
98
|
-
end
|
99
|
-
it 'both text and attachments' do
|
100
|
-
expect(client).to receive(:post).with('chat.update', hash_including(text: 'text', attachments: '[]'))
|
101
|
-
expect { client.chat_update(attachments: [], channel: 'channel', text: 'text', ts: ts) }.to_not raise_error
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
105
|
-
end
|
@@ -1,28 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
RSpec.describe Slack::Web::Api::Endpoints::Dialog do
|
4
|
-
let(:client) { Slack::Web::Client.new }
|
5
|
-
context 'dialog_open' do
|
6
|
-
it 'automatically converts dialog into JSON' do
|
7
|
-
expect(client).to receive(:post).with(
|
8
|
-
'dialog.open',
|
9
|
-
trigger_id: '12345.98765.abcd2358fdea',
|
10
|
-
dialog: '[]'
|
11
|
-
)
|
12
|
-
client.dialog_open(trigger_id: '12345.98765.abcd2358fdea', dialog: [])
|
13
|
-
end
|
14
|
-
|
15
|
-
context 'arguments' do
|
16
|
-
it 'requires dialog' do
|
17
|
-
expect { client.dialog_open(trigger_id: '123') }.to raise_error ArgumentError, /Required arguments :dialog missing/
|
18
|
-
end
|
19
|
-
it 'requires trigger_id' do
|
20
|
-
expect { client.dialog_open(dialog: []) }.to raise_error ArgumentError, /Required arguments :trigger_id missing/
|
21
|
-
end
|
22
|
-
it 'likes both dialog and trigger_id' do
|
23
|
-
expect(client).to receive(:post).with('dialog.open', hash_including(trigger_id: '123', dialog: '[]'))
|
24
|
-
expect { client.dialog_open(dialog: [], trigger_id: '123') }.to_not raise_error
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
@@ -1,11 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
RSpec.describe Slack::Web::Api::Endpoints::Groups do
|
4
|
-
let(:client) { Slack::Web::Client.new }
|
5
|
-
context 'groups' do
|
6
|
-
it 'info', vcr: { cassette_name: 'web/groups_info' } do
|
7
|
-
json = client.groups_info(channel: '#mpdm-dblock--rubybot--player1-1')
|
8
|
-
expect(json.group.name).to eq 'mpdm-dblock--rubybot--player1-1'
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
RSpec.describe Slack::Web::Api::Endpoints::Users do
|
4
|
-
let(:client) { Slack::Web::Client.new }
|
5
|
-
context 'users' do
|
6
|
-
it 'list', vcr: { cassette_name: 'web/users_list' } do
|
7
|
-
json = client.users_list(presence: true)
|
8
|
-
expect(json.ok).to be true
|
9
|
-
expect(json.members.size).to eq 9
|
10
|
-
expect(json.members.first.presence).to eq 'away'
|
11
|
-
end
|
12
|
-
it 'list', vcr: { cassette_name: 'web/paginated_users_list' } do
|
13
|
-
members = []
|
14
|
-
client.users_list(presence: true, limit: 5) do |json|
|
15
|
-
expect(json.ok).to be true
|
16
|
-
members.concat json.members
|
17
|
-
end
|
18
|
-
expect(members.size).to eq 23
|
19
|
-
end
|
20
|
-
it 'info', vcr: { cassette_name: 'web/users_info' } do
|
21
|
-
json = client.users_info(user: '@aws')
|
22
|
-
expect(json.user.name).to eq 'aws'
|
23
|
-
end
|
24
|
-
if defined?(Picky)
|
25
|
-
it 'search', vcr: { cassette_name: 'web/users_info' } do
|
26
|
-
json = client.users_search(user: 'aws')
|
27
|
-
expect(json.ok).to be true
|
28
|
-
expect(json.members.size).to eq 1
|
29
|
-
expect(json.members.first.name).to eq 'aws'
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Dnd do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'dnd_setSnooze' do
|
8
|
-
it 'requires num_minutes' do
|
9
|
-
expect { client.dnd_setSnooze }.to raise_error ArgumentError, /Required arguments :num_minutes missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
@@ -1,34 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::FilesComments do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'files.comments_add' do
|
8
|
-
it 'requires comment' do
|
9
|
-
expect { client.files_comments_add(file: 'F1234467890') }.to raise_error ArgumentError, /Required arguments :comment missing/
|
10
|
-
end
|
11
|
-
it 'requires file' do
|
12
|
-
expect { client.files_comments_add(comment: 'Everyone should take a moment to read this file.') }.to raise_error ArgumentError, /Required arguments :file missing/
|
13
|
-
end
|
14
|
-
end
|
15
|
-
context 'files.comments_delete' do
|
16
|
-
it 'requires file' do
|
17
|
-
expect { client.files_comments_delete(id: 'Fc1234567890') }.to raise_error ArgumentError, /Required arguments :file missing/
|
18
|
-
end
|
19
|
-
it 'requires id' do
|
20
|
-
expect { client.files_comments_delete(file: 'F1234567890') }.to raise_error ArgumentError, /Required arguments :id missing/
|
21
|
-
end
|
22
|
-
end
|
23
|
-
context 'files.comments_edit' do
|
24
|
-
it 'requires comment' do
|
25
|
-
expect { client.files_comments_edit(file: 'F1234567890', id: 'Fc1234567890') }.to raise_error ArgumentError, /Required arguments :comment missing/
|
26
|
-
end
|
27
|
-
it 'requires file' do
|
28
|
-
expect { client.files_comments_edit(comment: 'Everyone should take a moment to read this file, seriously.', id: 'Fc1234567890') }.to raise_error ArgumentError, /Required arguments :file missing/
|
29
|
-
end
|
30
|
-
it 'requires id' do
|
31
|
-
expect { client.files_comments_edit(comment: 'Everyone should take a moment to read this file, seriously.', file: 'F1234567890') }.to raise_error ArgumentError, /Required arguments :id missing/
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
@@ -1,43 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Files do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'files_delete' do
|
8
|
-
it 'requires file' do
|
9
|
-
expect { client.files_delete }.to raise_error ArgumentError, /Required arguments :file missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
context 'files_edit' do
|
13
|
-
it 'requires file' do
|
14
|
-
expect { client.files_edit(title: 'Brand new title') }.to raise_error ArgumentError, /Required arguments :file missing/
|
15
|
-
end
|
16
|
-
it 'requires title' do
|
17
|
-
expect { client.files_edit(file: 'F2147483862') }.to raise_error ArgumentError, /Required arguments :title missing/
|
18
|
-
end
|
19
|
-
end
|
20
|
-
context 'files_info' do
|
21
|
-
it 'requires file' do
|
22
|
-
expect { client.files_info }.to raise_error ArgumentError, /Required arguments :file missing/
|
23
|
-
end
|
24
|
-
end
|
25
|
-
context 'files_revokePublicURL' do
|
26
|
-
it 'requires file' do
|
27
|
-
expect { client.files_revokePublicURL }.to raise_error ArgumentError, /Required arguments :file missing/
|
28
|
-
end
|
29
|
-
end
|
30
|
-
context 'files_share' do
|
31
|
-
it 'requires file' do
|
32
|
-
expect { client.files_share(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :file missing/
|
33
|
-
end
|
34
|
-
it 'requires channel' do
|
35
|
-
expect { client.files_share(file: 'F2147483862') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
36
|
-
end
|
37
|
-
end
|
38
|
-
context 'files_sharedPublicURL' do
|
39
|
-
it 'requires file' do
|
40
|
-
expect { client.files_sharedPublicURL }.to raise_error ArgumentError, /Required arguments :file missing/
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Im do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'im_close' do
|
8
|
-
it 'requires channel' do
|
9
|
-
expect { client.im_close }.to raise_error ArgumentError, /Required arguments :channel missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
context 'im_history' do
|
13
|
-
it 'requires channel' do
|
14
|
-
expect { client.im_history }.to raise_error ArgumentError, /Required arguments :channel missing/
|
15
|
-
end
|
16
|
-
end
|
17
|
-
context 'im_mark' do
|
18
|
-
it 'requires channel' do
|
19
|
-
expect { client.im_mark(ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
20
|
-
end
|
21
|
-
it 'requires ts' do
|
22
|
-
expect { client.im_mark(channel: 'D1234567890') }.to raise_error ArgumentError, /Required arguments :ts missing/
|
23
|
-
end
|
24
|
-
end
|
25
|
-
context 'im_open' do
|
26
|
-
it 'requires user' do
|
27
|
-
expect { client.im_open }.to raise_error ArgumentError, /Required arguments :user missing/
|
28
|
-
end
|
29
|
-
end
|
30
|
-
context 'im_replies' do
|
31
|
-
it 'requires channel' do
|
32
|
-
expect { client.im_replies(thread_ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
33
|
-
end
|
34
|
-
it 'requires thread_ts' do
|
35
|
-
expect { client.im_replies(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :thread_ts missing/
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Migration do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'migration_exchange' do
|
8
|
-
it 'requires users' do
|
9
|
-
expect { client.migration_exchange }.to raise_error ArgumentError, /Required arguments :users missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Mpim do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'mpim_close' do
|
8
|
-
it 'requires channel' do
|
9
|
-
expect { client.mpim_close }.to raise_error ArgumentError, /Required arguments :channel missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
context 'mpim_history' do
|
13
|
-
it 'requires channel' do
|
14
|
-
expect { client.mpim_history }.to raise_error ArgumentError, /Required arguments :channel missing/
|
15
|
-
end
|
16
|
-
end
|
17
|
-
context 'mpim_mark' do
|
18
|
-
it 'requires channel' do
|
19
|
-
expect { client.mpim_mark(ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
20
|
-
end
|
21
|
-
it 'requires ts' do
|
22
|
-
expect { client.mpim_mark(channel: 'G1234567890') }.to raise_error ArgumentError, /Required arguments :ts missing/
|
23
|
-
end
|
24
|
-
end
|
25
|
-
context 'mpim_open' do
|
26
|
-
it 'requires users' do
|
27
|
-
expect { client.mpim_open }.to raise_error ArgumentError, /Required arguments :users missing/
|
28
|
-
end
|
29
|
-
end
|
30
|
-
context 'mpim_replies' do
|
31
|
-
it 'requires channel' do
|
32
|
-
expect { client.mpim_replies(thread_ts: '1234567890.123456') }.to raise_error ArgumentError, /Required arguments :channel missing/
|
33
|
-
end
|
34
|
-
it 'requires thread_ts' do
|
35
|
-
expect { client.mpim_replies(channel: 'C1234567890') }.to raise_error ArgumentError, /Required arguments :thread_ts missing/
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Oauth do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'oauth_access' do
|
8
|
-
it 'requires client_id' do
|
9
|
-
expect { client.oauth_access(client_secret: '33fea0113f5b1', code: 'ccdaa72ad') }.to raise_error ArgumentError, /Required arguments :client_id missing/
|
10
|
-
end
|
11
|
-
it 'requires client_secret' do
|
12
|
-
expect { client.oauth_access(client_id: '4b39e9-752c4', code: 'ccdaa72ad') }.to raise_error ArgumentError, /Required arguments :client_secret missing/
|
13
|
-
end
|
14
|
-
it 'requires code' do
|
15
|
-
expect { client.oauth_access(client_id: '4b39e9-752c4', client_secret: '33fea0113f5b1') }.to raise_error ArgumentError, /Required arguments :code missing/
|
16
|
-
end
|
17
|
-
end
|
18
|
-
context 'oauth_token' do
|
19
|
-
it 'requires client_id' do
|
20
|
-
expect { client.oauth_token(client_secret: '33fea0113f5b1', code: 'ccdaa72ad') }.to raise_error ArgumentError, /Required arguments :client_id missing/
|
21
|
-
end
|
22
|
-
it 'requires client_secret' do
|
23
|
-
expect { client.oauth_token(client_id: '4b39e9-752c4', code: 'ccdaa72ad') }.to raise_error ArgumentError, /Required arguments :client_secret missing/
|
24
|
-
end
|
25
|
-
it 'requires code' do
|
26
|
-
expect { client.oauth_token(client_id: '4b39e9-752c4', client_secret: '33fea0113f5b1') }.to raise_error ArgumentError, /Required arguments :code missing/
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Pins do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'pins_add' do
|
8
|
-
it 'requires channel' do
|
9
|
-
expect { client.pins_add }.to raise_error ArgumentError, /Required arguments :channel missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
context 'pins_list' do
|
13
|
-
it 'requires channel' do
|
14
|
-
expect { client.pins_list }.to raise_error ArgumentError, /Required arguments :channel missing/
|
15
|
-
end
|
16
|
-
end
|
17
|
-
context 'pins_remove' do
|
18
|
-
it 'requires channel' do
|
19
|
-
expect { client.pins_remove }.to raise_error ArgumentError, /Required arguments :channel missing/
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Reactions do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'reactions_add' do
|
8
|
-
it 'requires name' do
|
9
|
-
expect { client.reactions_add }.to raise_error ArgumentError, /Required arguments :name missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
context 'reactions_remove' do
|
13
|
-
it 'requires name' do
|
14
|
-
expect { client.reactions_remove }.to raise_error ArgumentError, /Required arguments :name missing/
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Reminders do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'reminders_add' do
|
8
|
-
it 'requires text' do
|
9
|
-
expect { client.reminders_add(time: '1602288000') }.to raise_error ArgumentError, /Required arguments :text missing/
|
10
|
-
end
|
11
|
-
it 'requires time' do
|
12
|
-
expect { client.reminders_add(text: 'eat a banana') }.to raise_error ArgumentError, /Required arguments :time missing/
|
13
|
-
end
|
14
|
-
end
|
15
|
-
context 'reminders_complete' do
|
16
|
-
it 'requires reminder' do
|
17
|
-
expect { client.reminders_complete }.to raise_error ArgumentError, /Required arguments :reminder missing/
|
18
|
-
end
|
19
|
-
end
|
20
|
-
context 'reminders_delete' do
|
21
|
-
it 'requires reminder' do
|
22
|
-
expect { client.reminders_delete }.to raise_error ArgumentError, /Required arguments :reminder missing/
|
23
|
-
end
|
24
|
-
end
|
25
|
-
context 'reminders_info' do
|
26
|
-
it 'requires reminder' do
|
27
|
-
expect { client.reminders_info }.to raise_error ArgumentError, /Required arguments :reminder missing/
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# This file was auto-generated by lib/tasks/web.rake
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
RSpec.describe Slack::Web::Api::Endpoints::Search do
|
6
|
-
let(:client) { Slack::Web::Client.new }
|
7
|
-
context 'search_all' do
|
8
|
-
it 'requires query' do
|
9
|
-
expect { client.search_all }.to raise_error ArgumentError, /Required arguments :query missing/
|
10
|
-
end
|
11
|
-
end
|
12
|
-
context 'search_files' do
|
13
|
-
it 'requires query' do
|
14
|
-
expect { client.search_files }.to raise_error ArgumentError, /Required arguments :query missing/
|
15
|
-
end
|
16
|
-
end
|
17
|
-
context 'search_messages' do
|
18
|
-
it 'requires query' do
|
19
|
-
expect { client.search_messages }.to raise_error ArgumentError, /Required arguments :query missing/
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|