-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathaccess_test.go
More file actions
608 lines (568 loc) · 33.6 KB
/
access_test.go
File metadata and controls
608 lines (568 loc) · 33.6 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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
// Copyright 2022-2026 Salesforce, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package triggers
import (
"context"
"fmt"
"testing"
"github.com/slackapi/slack-cli/internal/cmdutil"
"github.com/slackapi/slack-cli/internal/iostreams"
"github.com/slackapi/slack-cli/internal/prompts"
"github.com/slackapi/slack-cli/internal/shared"
"github.com/slackapi/slack-cli/internal/shared/types"
"github.com/slackapi/slack-cli/test/testutil"
"github.com/spf13/cobra"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
)
func TestTriggersAccessCommand(t *testing.T) {
var appSelectTeardown func()
var user1Profile = types.UserProfile{DisplayName: "USER1"}
var user2Profile = types.UserProfile{DisplayName: "USER2"}
testutil.TableTestCommand(t, testutil.CommandTests{
"pass flags to set access to app collaborators": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--app-collaborators"},
ExpectedOutputs: []string{fmt.Sprintf("Trigger '%s'", fakeTriggerID), "app collaborator"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionEveryone, []string{}, nil).Once()
// set access type to collaborators
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, mock.Anything, mock.Anything, types.PermissionAppCollaborators, "").
Return([]string{"collaborator_ID"}, nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionAppCollaborators, []string{"collaborator_ID"}, nil).Once()
// display user info for updated access
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to set access to everyone/public for a workspace app": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--everyone"},
ExpectedOutputs: []string{fmt.Sprintf(
"Trigger '%s'", fakeTriggerID),
"everyone in the workspace",
},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionAppCollaborators, []string{"collaborator_ID"}, nil).Once()
// display user info for current access
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// set access type to everyone
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, fakeTriggerID, mock.Anything, types.PermissionEveryone, "").
Return([]string{}, nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionEveryone, []string{}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to set access to everyone/public for an org app": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--everyone"},
ExpectedOutputs: []string{
fmt.Sprintf("Trigger '%s'", fakeTriggerID),
"everyone in all workspaces in this org granted to this app",
},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdOrgApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionAppCollaborators, []string{"collaborator_ID"}, nil).Once()
// display user info for current access
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// set access type to everyone
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, fakeTriggerID, mock.Anything, types.PermissionEveryone, "").
Return([]string{}, nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionEveryone, []string{}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to grant access to specific users (previous access: app collaborators)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--users", "user1, user2", "--grant", "--include-app-collaborators=false"},
ExpectedOutputs: []string{"Users added", fmt.Sprintf("Trigger '%s'", fakeTriggerID), "these users", "USER1", "USER2"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionAppCollaborators, []string{"collaborator_ID"}, nil).Once()
// display user info for current access
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// set access type to named_entities
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, fakeTriggerID, "USER1,USER2", types.PermissionNamedEntities, "users").
Return([]string{}, nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1", "USER2"}, nil).Once()
// display user info for updated access
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER1").
Return(&types.UserInfo{RealName: "User One", Name: "USER1", Profile: user1Profile}, nil).Once()
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER2").
Return(&types.UserInfo{RealName: "User Two", Name: "USER2", Profile: user2Profile}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to grant access to specific channels (previous access: app collaborators)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--channels", "channel1, channel2", "--grant", "--include-app-collaborators=false"},
ExpectedOutputs: []string{"Channels added", fmt.Sprintf("Trigger '%s'", fakeTriggerID), "all members of these channels", "CHANNEL1", "CHANNEL2"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionAppCollaborators, []string{"collaborator_ID"}, nil).Once()
// display user info for current access
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// set access type to named_entities
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, fakeTriggerID, "CHANNEL1,CHANNEL2", types.PermissionNamedEntities, "channels").
Return([]string{}, nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"CHANNEL1", "CHANNEL2"}, nil).Once()
// display channel info for updated access
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL1").
Return(&types.ChannelInfo{ID: "CHANNEL1", Name: "Channel One"}, nil).Once()
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL2").
Return(&types.ChannelInfo{ID: "CHANNEL2", Name: "Channel Two"}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to grant access to specific team (previous access: app collaborators)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--workspaces", "team1", "--grant"},
ExpectedOutputs: []string{"Workspace added", fmt.Sprintf("Trigger '%s'", fakeTriggerID), "all members of this workspace", "TEAM1"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionAppCollaborators, []string{"collaborator_ID"}, nil).Once()
// display user info for current access
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// confirm to add app collaborators
clientsMock.IO.On("ConfirmPrompt", mock.Anything, "Include app collaborators?", mock.Anything).Return(true, nil)
// set access type to named_entities
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, fakeTriggerID, "collaborator_ID", types.PermissionNamedEntities, "users").
Return([]string{}, nil)
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "TEAM1", "workspaces").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"collaborator_ID", "TEAM1"}, nil).Once()
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// display workspace info for updated access
clientsMock.API.On("TeamsInfo", mock.Anything, mock.Anything, "TEAM1").
Return(&types.TeamInfo{ID: "TEAM1", Name: "Team One"}, nil).Once()
// no-op add-collaborators
clientsMock.API.On("ListCollaborators", mock.Anything, mock.Anything, mock.Anything).Return([]types.SlackUser{}, nil)
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to grant access to specific teams with include-app-collaborators flag provided (previous access: app collaborators)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--workspaces", "team1", "--grant", "--include-app-collaborators"},
ExpectedOutputs: []string{"Workspace added", fmt.Sprintf("Trigger '%s'", fakeTriggerID), "all members of this workspace", "TEAM1"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionAppCollaborators, []string{"collaborator_ID"}, nil).Once()
// display user info for current access
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// set access type to named_entities
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, fakeTriggerID, "collaborator_ID", types.PermissionNamedEntities, "users").
Return([]string{}, nil)
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "TEAM1", "workspaces").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"collaborator_ID", "TEAM1"}, nil).Once()
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// display workspace info for updated access
clientsMock.API.On("TeamsInfo", mock.Anything, mock.Anything, "TEAM1").
Return(&types.TeamInfo{ID: "TEAM1", Name: "Team One"}, nil).Once()
// no-op add-collaborators
clientsMock.API.On("ListCollaborators", mock.Anything, mock.Anything, mock.Anything).Return([]types.SlackUser{}, nil)
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to grant access to specific users and channels (previous access: app collaborators)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--users", "user1, user2", "--channels", "channel1, channel2", "--grant"},
ExpectedOutputs: []string{"Users added", "Channels added", fmt.Sprintf("Trigger '%s'", fakeTriggerID), "these users", "all members of these channels", "USER1", "USER2", "CHANNEL1", "CHANNEL2"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionAppCollaborators, []string{"collaborator_ID"}, nil).Once()
// display user info for current access
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "collaborator_ID").
Return(&types.UserInfo{}, nil).Once()
// confirm to add app collaborators
clientsMock.IO.On("ConfirmPrompt", mock.Anything, "Include app collaborators?", mock.Anything).Return(true, nil)
// set access type to named_entities
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, fakeTriggerID, "collaborator_ID", types.PermissionNamedEntities, "users").Maybe().
Return([]string{}, nil)
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "USER1,USER2", types.PermissionNamedEntities, "users").Maybe().
Return([]string{}, nil)
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, fakeTriggerID, "CHANNEL1,CHANNEL2", types.PermissionNamedEntities, "channels").Maybe().
Return([]string{}, nil)
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "CHANNEL1,CHANNEL2", "channels").Maybe().
Return(nil)
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "USER1,USER2", "users").Maybe().
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1", "USER2", "CHANNEL1", "CHANNEL2"}, nil).Once()
// display user info for updated access
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER1").
Return(&types.UserInfo{RealName: "User One", Name: "USER1", Profile: user1Profile}, nil).Once()
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER2").
Return(&types.UserInfo{RealName: "User Two", Name: "USER2", Profile: user2Profile}, nil).Once()
// display channel info for updated access
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL1").
Return(&types.ChannelInfo{ID: "CHANNEL1", Name: "Channel One"}, nil).Once()
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL2").
Return(&types.ChannelInfo{ID: "CHANNEL2", Name: "Channel Two"}, nil).Once()
// no-op add-collaborators
clientsMock.API.On("ListCollaborators", mock.Anything, mock.Anything, mock.Anything).Return([]types.SlackUser{}, nil)
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to grant access to specific users (previous access: named_entities)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--users", "USER2", "--grant"},
ExpectedOutputs: []string{"User added", fmt.Sprintf("Trigger '%s'", fakeTriggerID), "these users", "USER1", "USER2"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1"}, nil).Once()
// display user info for current access
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "USER1").
Return(&types.UserInfo{}, nil).Once()
// add users to named_entities ACL
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "USER2", "users").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1", "USER2"}, nil).Once()
// display user info for updated access
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER1").
Return(&types.UserInfo{RealName: "User One", Name: "USER1", Profile: user1Profile}, nil).Once()
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER2").
Return(&types.UserInfo{RealName: "User Two", Name: "USER2", Profile: user2Profile}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to grant access to specific channels (previous access: named_entities)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--channels", "CHANNEL2", "--grant"},
ExpectedOutputs: []string{"Channel added", fmt.Sprintf("Trigger '%s'", fakeTriggerID), "all members of these channels", "CHANNEL1", "CHANNEL2"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"CHANNEL1"}, nil).Once()
// display user info for current access
// clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "USER1").
// Return(&types.UserInfo{}, nil).Once()
// add users to named_entities ACL
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "CHANNEL2", "channels").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"CHANNEL1", "CHANNEL2"}, nil).Once()
// display channel info for updated access
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL1").
Return(&types.ChannelInfo{ID: "CHANNEL1", Name: "Channel One"}, nil).Once()
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL2").
Return(&types.ChannelInfo{ID: "CHANNEL2", Name: "Channel Two"}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to grant access to specific users, channels and workspaces (previous access: named_entities)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--users", "user1, user2", "--channels", "channel2", "--workspaces", "team1", "--grant"},
ExpectedOutputs: []string{"Users added", "Channel added", fmt.Sprintf("Trigger '%s'", fakeTriggerID), "these users", "all members of these channels", "all members of this workspace", "USER1", "USER2", "CHANNEL1", "CHANNEL2", "TEAM1"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"CHANNEL1"}, nil).Once()
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "CHANNEL2", "channels").
Return(nil)
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "USER1,USER2", "users").
Return(nil)
clientsMock.API.On("TriggerPermissionsAddEntities", mock.Anything, mock.Anything, fakeTriggerID, "TEAM1", "workspaces").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1", "USER2", "CHANNEL1", "CHANNEL2", "TEAM1"}, nil).Once()
// display user info for updated access
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER1").
Return(&types.UserInfo{RealName: "User One", Name: "USER1", Profile: user1Profile}, nil).Once()
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER2").
Return(&types.UserInfo{RealName: "User Two", Name: "USER2", Profile: user2Profile}, nil).Once()
// display channel info for updated access
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL1").
Return(&types.ChannelInfo{ID: "CHANNEL1", Name: "Channel One"}, nil).Once()
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL2").
Return(&types.ChannelInfo{ID: "CHANNEL2", Name: "Channel Two"}, nil).Once()
// display workspace info for updated access
clientsMock.API.On("TeamsInfo", mock.Anything, mock.Anything, "TEAM1").
Return(&types.TeamInfo{ID: "TEAM1", Name: "Team One"}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to revoke access from specific users (previous access: named_entities)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--users", "USER2", "--revoke"},
ExpectedOutputs: []string{fmt.Sprintf("Trigger '%s'", fakeTriggerID), "this user", "USER1"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1", "USER2"}, nil).Once()
// display user info for current access
clientsMock.API.On("UserInfo", mock.Anything, mock.Anything, "USER1").
Return(&types.UserInfo{}, nil).Once()
// remove users from named_entities ACL
clientsMock.API.On("TriggerPermissionsRemoveEntities", mock.Anything, mock.Anything, fakeTriggerID, "USER2", "users").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1"}, nil).Once()
// display user info for updated access
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER1").
Return(&types.UserInfo{RealName: "User One", Name: "USER1", Profile: user1Profile}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to revoke access from specific channels (previous access: named_entities)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--channels", "CHANNEL2", "--revoke"},
ExpectedOutputs: []string{fmt.Sprintf("Trigger '%s'", fakeTriggerID), "all members of this channel", "CHANNEL1"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"CHANNEL1", "CHANNEL2"}, nil).Once()
// remove channel from named_entities ACL
clientsMock.API.On("TriggerPermissionsRemoveEntities", mock.Anything, mock.Anything, fakeTriggerID, "CHANNEL2", "channels").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"CHANNEL1"}, nil).Once()
// display channel info for updated access
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL1").
Return(&types.ChannelInfo{ID: "CHANNEL1", Name: "Channel One"}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to revoke access from specific workspace (previous access: named_entities)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--workspaces", "TEAM2", "--revoke"},
ExpectedOutputs: []string{fmt.Sprintf("Trigger '%s'", fakeTriggerID), "all members of this workspace", "TEAM1"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"TEAM1", "TEAM2"}, nil).Once()
// remove workspace from named_entities ACL
clientsMock.API.On("TriggerPermissionsRemoveEntities", mock.Anything, mock.Anything, fakeTriggerID, "TEAM2", "workspaces").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"TEAM1"}, nil).Once()
// display team info for updated access
clientsMock.API.On("TeamsInfo", mock.Anything, mock.Anything, "TEAM1").
Return(&types.TeamInfo{ID: "TEAM1", Name: "Team One"}, nil).Once()
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"pass flags to revoke access from specific users and channels (previous access: named_entities)": {
CmdArgs: []string{"--trigger-id", fakeTriggerID, "--users", "USER2", "--channels", "CHANNEL2", "--revoke"},
ExpectedOutputs: []string{fmt.Sprintf("Trigger '%s'", fakeTriggerID), "this user", "all members of this channel", "USER1", "CHANNEL1"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// get current access type
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1", "USER2", "CHANNEL1", "CHANNEL2"}, nil).Once()
// remove user from named_entities ACL
clientsMock.API.On("TriggerPermissionsRemoveEntities", mock.Anything, mock.Anything, fakeTriggerID, "USER2", "users").
Return(nil)
// remove channel from named_entities ACL
clientsMock.API.On("TriggerPermissionsRemoveEntities", mock.Anything, mock.Anything, fakeTriggerID, "CHANNEL2", "channels").
Return(nil)
// get access type from backend to display
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionNamedEntities, []string{"USER1", "CHANNEL1"}, nil).Once()
clientsMock.API.On("UsersInfo", mock.Anything, mock.Anything, "USER1").
Return(&types.UserInfo{RealName: "User One", Name: "USER1", Profile: user1Profile}, nil).Once()
clientsMock.AddDefaultMocks()
// display channel info for updated access
clientsMock.API.On("ChannelsInfo", mock.Anything, mock.Anything, "CHANNEL1").
Return(&types.ChannelInfo{ID: "CHANNEL1", Name: "Channel One"}, nil).Once()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
"set trigger ID through prompt": {
CmdArgs: []string{"--everyone"},
ExpectedOutputs: []string{fmt.Sprintf("Trigger '%s'", fakeTriggerID), "everyone"},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
appSelectTeardown = setupMockAccessAppSelection(installedProdApp)
// trigger ID prompt lists available triggers, including current access
clientsMock.API.On("WorkflowsTriggersList", mock.Anything, mock.Anything, mock.Anything).Return(
[]types.DeployedTrigger{{Name: "Trigger 1", ID: fakeTriggerID, Type: "Shortcut", Workflow: types.TriggerWorkflow{AppID: fakeAppID}}}, "", nil)
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionEveryone, []string{}, nil).Once()
// set and display access
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionEveryone, []string{}, nil).Once()
clientsMock.API.On("TriggerPermissionsSet", mock.Anything, mock.Anything, mock.Anything, mock.Anything, types.PermissionEveryone, "").
Return([]string{}, nil)
clientsMock.API.On("TriggerPermissionsList", mock.Anything, mock.Anything, mock.Anything).
Return(types.PermissionEveryone, []string{}, nil).Once()
clientsMock.IO.On("SelectPrompt", mock.Anything, "Choose a trigger:", mock.Anything, iostreams.MatchPromptConfig(iostreams.SelectPromptConfig{
Flag: clientsMock.Config.Flags.Lookup("trigger-id"),
})).Return(iostreams.SelectPromptResponse{
Prompt: true,
Option: "(Ft012345, TRIGGER_INFO)",
Index: 0,
}, nil)
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
},
Teardown: func() {
appSelectTeardown()
},
},
}, func(clients *shared.ClientFactory) *cobra.Command {
cmd := NewAccessCommand(clients)
cmd.PreRunE = func(cmd *cobra.Command, args []string) error { return nil }
return cmd
})
}
func TestTriggersAccessCommand_AppSelection(t *testing.T) {
var appSelectTeardown func()
testutil.TableTestCommand(t, testutil.CommandTests{
"select an non-installed app": {
CmdArgs: []string{"--workflow", "#/workflows/my_workflow"},
ExpectedErrorStrings: []string{cmdutil.DeployedAppNotInstalledMsg},
Setup: func(t *testing.T, ctx context.Context, clientsMock *shared.ClientsMock, clients *shared.ClientFactory) {
clientsMock.AddDefaultMocks()
err := clients.AppClient().SaveDeployed(ctx, fakeApp)
require.NoError(t, err, "Cant write apps.json")
appSelectTeardown = setupMockAccessAppSelection(
prompts.SelectedApp{Auth: types.SlackAuth{}, App: types.App{}},
)
},
Teardown: func() {
appSelectTeardown()
},
},
}, func(clients *shared.ClientFactory) *cobra.Command {
cmd := NewAccessCommand(clients)
cmd.PreRunE = func(cmd *cobra.Command, args []string) error { return nil }
return cmd
})
}
func setupMockAccessAppSelection(selectedApp prompts.SelectedApp) func() {
appSelectMock := prompts.NewAppSelectMock()
var originalPromptFunc = accessAppSelectPromptFunc
accessAppSelectPromptFunc = appSelectMock.AppSelectPrompt
appSelectMock.On("AppSelectPrompt", mock.Anything, mock.Anything, prompts.ShowAllEnvironments, prompts.ShowInstalledAppsOnly).Return(selectedApp, nil)
return func() {
accessAppSelectPromptFunc = originalPromptFunc
}
}