Skip to content

Commit

Permalink
Run all the integration tests - 2023-09-26 PT
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Sep 27, 2023
1 parent 5ae0ed4 commit 1a4c198
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public void search() throws Exception {
.searchChannelTypes(Arrays.asList("exclude_archived", "private_exclude"))
).get();
assertThat(search.getError(), is(nullValue()));
// TODO: 2023-09-26: unexpectedly zero result
assertThat(search.getConversations().size(), is(1));

AdminConversationsSearchResponse search2 = methodsAsync.adminConversationsSearch(r -> r
Expand All @@ -72,6 +73,7 @@ public void search() throws Exception {
.cursor(search.getNextCursor())
).get();
assertThat(search2.getError(), is(nullValue()));
// TODO: 2023-09-26: unexpectedly zero result
assertThat(search2.getConversations().size(), is(1));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void adminWorkflowsCollaborators() throws Exception {
AdminWorkflowsSearchResponse searchResult = methodsAsync.adminWorkflowsSearch(r -> r
.limit(30)
).get();
// 2023-09-26: the server side returns "internal_error"
// TODO: 2023-09-25: the server side returns "internal_error"
assertThat(searchResult.getError(), is(nullValue()));

// TODO: make this more stable
Expand All @@ -68,7 +68,7 @@ public void adminWorkflowsPermissions() throws Exception {
AdminWorkflowsSearchResponse searchResult = methodsAsync.adminWorkflowsSearch(r -> r
.limit(30)
).get();
// 2023-09-26: the server side returns "internal_error"
// TODO: 2023-09-25: the server side returns "internal_error"
assertThat(searchResult.getError(), is(nullValue()));

AdminWorkflowsPermissionsLookupResponse result = methodsAsync.adminWorkflowsPermissionsLookup(r -> r
Expand Down

0 comments on commit 1a4c198

Please sign in to comment.