@@ -66,7 +66,7 @@ void loadRandomChannelId() throws IOException, SlackApiException {
6666 void loadGeneralChannelId () throws IOException , SlackApiException {
6767 if (generalChannelId == null ) {
6868 ConversationsListResponse channelsListResponse =
69- slack .methods ().conversationsList (r -> r .token (botToken ).excludeArchived (true ).limit (100 ));
69+ slack .methods ().conversationsList (r -> r .token (botToken ).excludeArchived (true ).limit (200 ));
7070 assertThat (channelsListResponse .getError (), is (nullValue ()));
7171 for (Conversation channel : channelsListResponse .getChannels ()) {
7272 if (channel .getName ().equals ("general" )) {
@@ -136,6 +136,7 @@ public void describe_ShowFilesHiddenByLimit() throws IOException, SlackApiExcept
136136 }
137137 }
138138
139+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
139140 @ Test
140141 public void createTextFileAndComments () throws IOException , SlackApiException {
141142 File file = new File ("src/test/resources/sample.txt" );
@@ -227,6 +228,7 @@ public void createTextFileAndComments() throws IOException, SlackApiException {
227228 }
228229 }
229230
231+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
230232 @ Test
231233 public void createLongTextFile () throws IOException , SlackApiException {
232234 File file = new File ("src/test/resources/sample_long.txt" );
@@ -430,6 +432,7 @@ public void createLongTextFile_v2_full_args() throws Exception {
430432 }
431433 }
432434
435+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
433436 @ Test
434437 public void createImageFileAndComments () throws IOException , SlackApiException {
435438 File file = new File ("src/test/resources/seratch.jpg" );
@@ -529,6 +532,7 @@ public void createImageFileAndComments() throws IOException, SlackApiException {
529532 }
530533 }
531534
535+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
532536 @ Test
533537 public void createFileForAThread () throws IOException , SlackApiException {
534538 TestChannelGenerator channelGenerator = new TestChannelGenerator (testConfig , userToken );
@@ -629,6 +633,7 @@ public void createFileForAThread_v2() throws IOException, SlackApiException {
629633 }
630634 }
631635
636+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
632637 @ Test
633638 public void issue523_text () throws IOException , SlackApiException {
634639 MethodsClient slackMethods = slack .methods (userToken );
@@ -638,6 +643,7 @@ public void issue523_text() throws IOException, SlackApiException {
638643 assertThat (response .getError (), is (nullValue ()));
639644 }
640645
646+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
641647 @ Test
642648 public void issue523_image () throws IOException , SlackApiException {
643649 MethodsClient slackMethods = slack .methods (userToken );
@@ -647,6 +653,7 @@ public void issue523_image() throws IOException, SlackApiException {
647653 assertThat (response .getError (), is (nullValue ()));
648654 }
649655
656+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
650657 @ Test
651658 public void issue523_text_no_filename () throws IOException , SlackApiException {
652659 MethodsClient slackMethods = slack .methods (userToken );
@@ -667,6 +674,7 @@ public void issue523_text_no_filename_v2() throws IOException, SlackApiException
667674 assertThat (response .getError (), is (nullValue ()));
668675 }
669676
677+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
670678 @ Test
671679 public void issue523_image_no_filename () throws IOException , SlackApiException {
672680 MethodsClient slackMethods = slack .methods (userToken );
@@ -677,6 +685,7 @@ public void issue523_image_no_filename() throws IOException, SlackApiException {
677685 assertThat (response .getError (), is (nullValue ()));
678686 }
679687
688+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
680689 @ Test
681690 public void uploadAndPostMessage () throws IOException , SlackApiException , InterruptedException {
682691 MethodsClient slackMethods = slack .methods (botToken );
@@ -763,6 +772,7 @@ public void uploadAndPostMessage() throws IOException, SlackApiException, Interr
763772 assertThat (uploadAndSharedInTwoTypesOfChannels .getFile ().getShares ().getPrivateChannels (), is (notNullValue ()));
764773 }
765774
775+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
766776 @ Test
767777 public void uploadInThreads () throws Exception {
768778 MethodsClient slackMethods = slack .methods (userToken );
@@ -851,6 +861,7 @@ public void uploadInThreads_v2() throws Exception {
851861 assertThat (replies .getMessages ().get (1 ).getFile (), is (nullValue ()));
852862 }
853863
864+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
854865 @ Test
855866 public void issue824_gif_files () throws IOException , SlackApiException {
856867 loadRandomChannel ();
@@ -908,6 +919,7 @@ public void issue1314_non_image_files_with_v2() throws IOException, SlackApiExce
908919 assertThat (upload2 .getError (), is (nullValue ()));
909920 }
910921
922+ @ Ignore // "method_deprecated" 2025-11-12 https://docs.slack.dev/changelog/2025/03/17/files-upload-extension/
911923 @ Test
912924 public void fileLinks () throws Exception {
913925 loadRandomChannelId ();
0 commit comments