-
Notifications
You must be signed in to change notification settings - Fork 50
296 lines (278 loc) · 9.36 KB
/
ci.yml
File metadata and controls
296 lines (278 loc) · 9.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
SLACK_CHANNEL: ${{ vars.SLACK_CHANNEL_TEST }}
permissions: {}
jobs:
test_actions:
permissions:
contents: 'read'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [actionlint, zizmor]
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Run ${{ matrix.target }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make ${{ matrix.target }}
slack_action_payload:
permissions:
contents: 'read'
runs-on: ubuntu-latest
name: Test Slack Action ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
-
name: "Payload has empty text"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: ""
expect_failure: false
-
name: "Payload is undefined"
expect_failure: true
-
name: "Payload has text"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: "Hello, world!"
expect_failure: false
-
name: "Payload has number text"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: 123
expect_failure: false
-
name: "Payload has boolean text"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: true
expect_failure: false
-
name: "Payload has complex object"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: "Deployment started :eyes:"
attachments:
- color: "dbab09"
fields:
- title: "Status"
short: true
value: "In Progress"
expect_failure: false
-
name: "Payload has invalid JSON"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: |
{ 3: "thing", null }
expect_failure: false
-
name: "Payload missing channel"
payload: |
text: "Hello, world!"
expect_failure: true
-
name: "Payload with very long text"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: "This is a very long message that exceeds normal limits and should test how the system handles extremely long text content that might cause issues with Slack API limits or YAML parsing. It contains many characters and should be properly handled by the validation logic."
expect_failure: false
-
name: "Payload with special characters"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: "Message with special chars: & < > \" ' \n \t \r"
expect_failure: false
-
name: "Payload with different method"
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: "Testing different method"
method: chat.postEphemeral
expect_failure: false
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Slack Action Payload
id: slack
continue-on-error: true
uses: ./.github/actions/slack
with:
slack_token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: ${{ matrix.payload}}
method: ${{ matrix.method || 'chat.postMessage' }}
dry_run: true
- name: "Verify outcome"
env:
result: ${{ steps.slack.outcome }}
expect_failure: ${{ matrix.expect_failure }}
run: |
if [[ "${expect_failure}" == "true" && "${result}" != "failure" ]]; then
echo "Expected failure!"
exit 1
fi
if [[ "${expect_failure}" == "false" && "${result}" != "success" ]]; then
echo "Expected success!"
exit 1
fi
slack_action_dry_run:
runs-on: ubuntu-latest
name: Test Slack Action ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
-
name: "Dry run is undefined"
expect_message: true
-
name: "Dry run is 'false'"
expect_message: true
dry_run: "false"
-
name: "Dry run is false"
expect_message: true
dry_run: false
-
name: "Dry run is 'true'"
expect_message: false
dry_run: "true"
-
name: "Dry run is true"
expect_message: false
dry_run: true
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: "Test Slack Action: ${{ matrix.name }}"
id: slack
continue-on-error: true
uses: ./.github/actions/slack
with:
# We explicitly don't pass the slack token so that we can test
# If the action actually attempts to send a message. This would
# fail and we can assert that an attempt was made to send the message.
slack_token: ''
payload: |
channel: ${{ vars.SLACK_CHANNEL_TEST }}
text: "Dry run is '${{ matrix.dry_run }}'"
method: chat.postMessage
dry_run: ${{ matrix.dry_run }}
- name: "Verify outcome"
env:
result: ${{ steps.slack.outcome }}
expect_message: ${{ matrix.expect_message }}
run: |
if [[ "${expect_message}" == "true" && "${result}" != "failure" ]]; then
echo "Expected message to be sent!"
exit 1
fi
if [[ "${expect_message}" == "false" && "${result}" == "failure" ]]; then
echo "Expected message to not be sent!"
exit 1
fi
slack_workflow_notification:
runs-on: ubuntu-latest
name: Test Slack Workflow Notification ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: with no context or links
conclusion: success
text: "push afd4d2f (Update Makefile-docker (#23610)"
text_link: "https://github.com/mozilla/addons"
- name: Test with context but no links
conclusion: failure
text: "push afd4d2f (Update Makefile-docker (#23610)"
text_link: "https://github.com/mozilla/addons"
context: |
{
"one": "thing"
}
- name: with links but no context
conclusion: success
text: "push afd4d2f (Update Makefile-docker (#23610)"
text_link: "https://github.com/mozilla/addons"
links: |
{
"link1": "https://github.com/mozilla/addons",
"link2": "https://github.com/mozilla/addons"
}
- name: with both context and links
conclusion: cancelled
text: "push afd4d2f (Update Makefile-docker (#23610)"
text_link: "https://github.com/mozilla/addons"
context: |
{
"one": "thing with spaces",
"two": "thing with \\ special ; '' \" characters",
"three": "thing with *bold* and _italic_"
}
links: |
{
"link1": "https://github.com/mozilla/addons",
"link2": "https://github.com/mozilla/addons",
"link3": "https://github.com/mozilla/addons"
}
- name: with skipped conclusion
conclusion: skipped
text: "push afd4d2f (Update Makefile-docker (#23610)"
text_link: "https://github.com/mozilla/addons"
- name: with null text_link
conclusion: success
text: "push afd4d2f (Update Makefile-docker (#23610)"
text_link: "null"
- name: with empty context and links
conclusion: failure
text: "push afd4d2f (Update Makefile-docker (#23610)"
text_link: "https://github.com/mozilla/addons"
context: "{}"
links: "{}"
- name: with custom separator
conclusion: success
text: "push afd4d2f (Update Makefile-docker (#23610)"
text_link: "https://github.com/mozilla/addons"
context: |
{
"key1": "value1",
"key2": "value2"
}
links: |
{
"link1": "https://github.com/mozilla/addons"
}
separator: " • "
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Slack Workflow Notification
uses: ./.github/actions/slack-workflow-notification
with:
slack_token: ${{ secrets.SLACK_BOT_TOKEN }}
slack_channel: ${{ vars.SLACK_CHANNEL_TEST }}
conclusion: ${{ matrix.conclusion }}
text: ${{ matrix.text }}
text_link: ${{ matrix.text_link }}
context: ${{ matrix.context }}
links: ${{ matrix.links }}
separator: ${{ matrix.separator }}
dry_run: true