Skip to content

Commit 8a37843

Browse files
authored
Merge pull request #408 from seratch/tests-20200324
Run all the tests (2020/03/24)
2 parents 9ac8762 + e7bb409 commit 8a37843

File tree

7 files changed

+37
-4
lines changed

7 files changed

+37
-4
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@
8585
"pref.username_policy",
8686
"pref.enterprise_team_creation_request",
8787
"pref.loading_only_admins",
88-
"pref.display_real_names"
88+
"pref.display_real_names",
89+
"pref.required_minimum_mobile_version_changed"
8990
],
9091
"user": [
9192
"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
@@ -156,6 +156,10 @@
156156
{
157157
"date_created": "2020-03-13T09:07:32-07:00",
158158
"body": "Some people may be having an issue with Slack. We’re currently investigating and will have more information shortly. Thank you for your patience."
159+
},
160+
{
161+
"date_created": "2020-03-24T17:18:02-07:00",
162+
"body": "We\u0027re looking into reports of access issues for some people using web browsers. Please hold tight. In the meantime, using a different type of web browser or the desktop app will hopefully get you back into your workspace."
159163
}
160164
]
161165
}

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,24 @@
178178
"body": "Some customers may be having trouble loading Slack or parts of the Slack interface. We\u0027re very sorry for the disruption and we have all hands on deck as we investigate. Thank you for bearing with us."
179179
}
180180
]
181+
},
182+
{
183+
"id": 831,
184+
"date_created": "2020-03-24T17:18:02-07:00",
185+
"date_updated": "2020-03-24T17:18:02-07:00",
186+
"title": "Some people unable to access their workspace while using a web browser",
187+
"type": "incident",
188+
"status": "active",
189+
"url": "https://status.slack.com/2020-03/2a3df6d0a868da4e",
190+
"services": [
191+
"Connections"
192+
],
193+
"notes": [
194+
{
195+
"date_created": "2020-03-24T17:18:02-07:00",
196+
"body": "We\u0027re looking into reports of access issues for some people using web browsers. Please hold tight. In the meantime, using a different type of web browser or the desktop app will hopefully get you back into your workspace."
197+
}
198+
]
181199
}
182200
]
183201
}

json-logs/samples/api/rtm.start.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,11 @@
317317
"saved_view": "",
318318
"ia_slackbot_survey_timestamp_48h": 12345,
319319
"ia_slackbot_survey_timestamp_7d": 12345,
320-
"dnd_weekdays_off_allday": false
320+
"dnd_weekdays_off_allday": false,
321+
"onboarding_state": 12345,
322+
"has_received_mention_or_reaction": false,
323+
"has_starred_item": false,
324+
"has_drafted_message": false
321325
},
322326
"created": 12345,
323327
"manual_presence": ""

scripts/run_all_bolt_tests.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
./mvnw install -Dmaven.test.skip=true && \
3+
./mvnw test -pl bolt -pl slack-app-backend -pl bolt-servlet -pl bolt-aws-lambda -pl bolt-micronaut -pl bolt-helidon

scripts/run_all_client_tests.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
./mvnw test -pl slack-api-model -pl slack-api-client

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ private WorkspaceOrOrg() {
3030
public static final String corporate_exports_enabled = "corporate_exports_enabled";
3131
public static final String manual_export_started = "manual_export_started";
3232
public static final String manual_export_completed = "manual_export_completed";
33+
public static final String manual_user_export_started = "manual_user_export_started";
34+
public static final String manual_user_export_completed = "manual_user_export_completed";
3335
public static final String scheduled_export_started = "scheduled_export_started";
3436
public static final String scheduled_export_completed = "scheduled_export_completed";
3537
public static final String channels_export_started = "channels_export_started";
@@ -95,8 +97,7 @@ private WorkspaceOrOrg() {
9597
public static final String pref_loading_only_admins = "pref.loading_only_admins";
9698
public static final String pref_display_real_names = "pref.display_real_names";
9799
public static final String pref_enterprise_mobile_device_check = "pref.enterprise_mobile_device_check";
98-
public static final String manual_user_export_started = "manual_user_export_started";
99-
public static final String manual_user_export_completed = "manual_user_export_completed";
100+
public static final String pref_required_minimum_mobile_version_changed = "pref.required_minimum_mobile_version_changed";
100101
}
101102

102103
public static class User {

0 commit comments

Comments
 (0)