Skip to content

Commit ec509ad

Browse files
committed
Run all the integration tests - 2022-06-15 PT
1 parent 7e7d81e commit ec509ad

File tree

10 files changed

+47
-10
lines changed

10 files changed

+47
-10
lines changed

json-logs/raw/audit/v1/actions.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,11 @@
143143
"domain_deleted",
144144
"slack_connect_invite_routing_enabled",
145145
"slack_connect_invite_routing_disabled",
146-
"flexible_access_control_set"
146+
"flexible_access_control_set",
147+
"team_unsupported_versions_start_success",
148+
"team_unsupported_versions_start_failure",
149+
"team_unsupported_versions_job_start",
150+
"team_unsupported_versions_job_end"
147151
],
148152
"user": [
149153
"custom_tos_accepted",

json-logs/raw/status/api/v1.0.0/current.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -850,6 +850,10 @@
850850
{
851851
"date_created": "2022-06-07T12:17:36-07:00",
852852
"body": "Some users on Enterprise Grid may be running into trouble inviting existing workspace users to private channels. We will let you know as soon as we know more. We appreciate your patience in the meantime."
853+
},
854+
{
855+
"date_created": "2022-06-15T14:19:07-07:00",
856+
"body": "Some users may be experiencing trouble with viewing files in Slack. We\u0027re working hard to resolve this issue as quickly as possible, and we\u0027ll share updates as soon as we can. We apologize for any inconvenience this may be causing."
853857
}
854858
]
855859
}

json-logs/raw/status/api/v2.0.0/current.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1212,6 +1212,24 @@
12121212
"body": "Some users on Enterprise Grid may be running into trouble inviting existing workspace users to private channels. We will let you know as soon as we know more. We appreciate your patience in the meantime."
12131213
}
12141214
]
1215+
},
1216+
{
1217+
"id": 1104,
1218+
"date_created": "2022-06-15T14:19:07-07:00",
1219+
"date_updated": "2022-06-15T14:19:07-07:00",
1220+
"title": "File Viewer Broken",
1221+
"type": "incident",
1222+
"status": "active",
1223+
"url": "https://status.slack.com/2022-06/b17ffdf99c1217e1",
1224+
"services": [
1225+
"Posts/Files"
1226+
],
1227+
"notes": [
1228+
{
1229+
"date_created": "2022-06-15T14:19:07-07:00",
1230+
"body": "Some users may be experiencing trouble with viewing files in Slack. We\u0027re working hard to resolve this issue as quickly as possible, and we\u0027ll share updates as soon as we can. We apologize for any inconvenience this may be causing."
1231+
}
1232+
]
12151233
}
12161234
]
12171235
}

json-logs/samples/api/chat.postMessage.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@
6161
"elements": [
6262
{
6363
"type": "",
64-
"text": ""
64+
"text": "",
65+
"name": "",
66+
"unicode": ""
6567
}
6668
],
6769
"text": {
@@ -360,6 +362,11 @@
360362
"image_bytes": 12345
361363
}
362364
],
365+
"text": {
366+
"type": "",
367+
"text": "",
368+
"emoji": false
369+
},
363370
"call_id": "",
364371
"api_decoration_available": false,
365372
"call": {
@@ -654,11 +661,6 @@
654661
],
655662
"comments_count": 123
656663
},
657-
"text": {
658-
"type": "",
659-
"text": "",
660-
"emoji": false
661-
},
662664
"fallback": "",
663665
"image_url": "",
664666
"image_width": 12345,

json-logs/samples/api/conversations.listConnectInvites.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
},
2929
"is_verified": false,
3030
"domain": "",
31-
"date_created": 12345
31+
"date_created": 12345,
32+
"avatar_base_url": "https://www.example.com/"
3233
},
3334
"inviting_user": {
3435
"id": "U00000000",
@@ -52,7 +53,8 @@
5253
"image_1024": "https://www.example.com/",
5354
"image_original": "https://www.example.com/",
5455
"is_custom_image": false
55-
}
56+
},
57+
"who_can_share_contact_card": ""
5658
},
5759
"link": "https://www.example.com/",
5860
"recipient_user_id": "U00000000",

slack-api-client/src/main/java/com/slack/api/audit/Actions.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ private WorkspaceOrOrg() {
155155
public static final String slack_connect_invite_routing_enabled = "slack_connect_invite_routing_enabled";
156156
public static final String slack_connect_invite_routing_disabled = "slack_connect_invite_routing_disabled";
157157
public static final String flexible_access_control_set = "flexible_access_control_set";
158+
public static final String team_unsupported_versions_start_success = "team_unsupported_versions_start_success";
159+
public static final String team_unsupported_versions_start_failure = "team_unsupported_versions_start_failure";
160+
public static final String team_unsupported_versions_job_start = "team_unsupported_versions_job_start";
161+
public static final String team_unsupported_versions_job_end = "team_unsupported_versions_job_end";
158162
}
159163

160164
public static class User {

slack-api-client/src/test/java/test_with_remote_apis/audit/ApiTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public static List<String> getAllPublicStaticFieldValues(Class<?> clazz) {
162162
}
163163

164164
@Test
165-
public void getActions_dummy() throws IOException, AuditApiException {
165+
public void getActions_detectingNewOnes() throws IOException, AuditApiException {
166166
ActionsResponse response = slack.audit("dummy").getActions();
167167
assertThat(response, is(notNullValue()));
168168

slack-api-model/src/main/java/com/slack/api/model/block/element/RichTextSectionElement.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ public static class Emoji implements RichTextElement {
6666
private String name;
6767
private Integer skinTone;
6868
private TextStyle style;
69+
private String unicode;
6970
}
7071

7172
@Data

slack-api-model/src/main/java/com/slack/api/model/connect/ConnectTeam.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ public class ConnectTeam {
1111
private boolean isVerified;
1212
private String domain;
1313
private Integer dateCreated;
14+
private String avatarBaseUrl;
1415
}

slack-api-model/src/main/java/com/slack/api/model/connect/ConnectUser.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ public class ConnectUser {
99
private String name;
1010
private Integer updated;
1111
private ConnectUserProfile profile;
12+
private String whoCanShareContactCard; // "EVERYONE" etc.
1213
}

0 commit comments

Comments
 (0)