-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequest_picker_test.go
More file actions
284 lines (251 loc) · 8.56 KB
/
Copy pathrequest_picker_test.go
File metadata and controls
284 lines (251 loc) · 8.56 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
package cmd
import (
"context"
"errors"
"strings"
"testing"
"github.com/aaearon/grant-cli/internal/ui"
"github.com/aaearon/grant-cli/internal/workflows"
wfmodels "github.com/aaearon/grant-cli/internal/workflows/models"
)
// capturingMockAccessRequestService embeds mockAccessRequestService and captures list params.
type capturingMockAccessRequestService struct {
mockAccessRequestService
lastListParams workflows.ListRequestsParams
}
func (m *capturingMockAccessRequestService) ListRequests(_ context.Context, params workflows.ListRequestsParams) ([]wfmodels.AccessRequest, int, error) {
m.lastListParams = params
return m.listItems, m.listTotalCount, m.listErr
}
func withInteractiveTTY(t *testing.T, interactive bool) {
t.Helper()
orig := ui.IsTerminalFunc
t.Cleanup(func() { ui.IsTerminalFunc = orig })
ui.IsTerminalFunc = func(_ uintptr) bool { return interactive }
}
func TestResolveRequestIDInteractive_NonInteractive(t *testing.T) {
withInteractiveTTY(t, false)
svc := &capturingMockAccessRequestService{}
_, err := resolveRequestIDInteractive(t.Context(), svc, pickerScope{emptyMsg: "access requests"})
if err == nil {
t.Fatal("expected error")
}
if !errors.Is(err, ui.ErrNotInteractive) {
t.Errorf("expected ErrNotInteractive, got %v", err)
}
if !strings.Contains(err.Error(), "grant request list") {
t.Errorf("expected hint to 'grant request list', got %v", err)
}
}
func TestResolveRequestIDInteractive_EmptyList(t *testing.T) {
withInteractiveTTY(t, true)
svc := &capturingMockAccessRequestService{}
_, err := resolveRequestIDInteractive(t.Context(), svc, pickerScope{
filter: "(requestState eq PENDING)",
requestRole: "APPROVER",
emptyMsg: "pending requests assigned to you",
})
if err == nil {
t.Fatal("expected error on empty list")
}
if !strings.Contains(err.Error(), "pending requests assigned to you") {
t.Errorf("expected emptyMsg in error, got %v", err)
}
if svc.lastListParams.Filter != "(requestState eq PENDING)" {
t.Errorf("filter: got %q", svc.lastListParams.Filter)
}
if svc.lastListParams.RequestRole != "APPROVER" {
t.Errorf("requestRole: got %q", svc.lastListParams.RequestRole)
}
if svc.lastListParams.Sort != "createdAt desc" {
t.Errorf("sort: got %q", svc.lastListParams.Sort)
}
}
func TestResolveRequestIDInteractive_ListError(t *testing.T) {
withInteractiveTTY(t, true)
svc := &capturingMockAccessRequestService{
mockAccessRequestService: mockAccessRequestService{listErr: errors.New("boom")},
}
_, err := resolveRequestIDInteractive(t.Context(), svc, pickerScope{emptyMsg: "x"})
if err == nil || !strings.Contains(err.Error(), "boom") {
t.Fatalf("expected list error, got %v", err)
}
}
// stubResolver replaces resolveRequestIDFn for testing the command integration.
func stubResolver(t *testing.T, id string, err error) *struct {
scope pickerScope
called bool
} {
t.Helper()
capture := &struct {
scope pickerScope
called bool
}{}
orig := resolveRequestIDFn
t.Cleanup(func() { resolveRequestIDFn = orig })
resolveRequestIDFn = func(_ context.Context, _ accessRequestService, scope pickerScope) (string, error) {
capture.called = true
capture.scope = scope
return id, err
}
return capture
}
func TestRequestCancel_PickerFallback(t *testing.T) {
withInteractiveTTY(t, true)
svc := &mockAccessRequestService{
cancelResult: &wfmodels.AccessRequest{RequestID: "picked-id", RequestResult: wfmodels.RequestResultCanceled},
}
capture := stubResolver(t, "picked-id", nil)
cmd := NewRequestCommandWithDeps(svc)
root := newTestRootCommand()
root.AddCommand(cmd)
output, err := executeCommand(root, "request", "cancel")
if err != nil {
t.Fatalf("unexpected error: %v\noutput: %s", err, output)
}
if !capture.called {
t.Fatal("resolver was not called")
}
if capture.scope.requestRole != "CREATOR" {
t.Errorf("expected CREATOR scope, got %q", capture.scope.requestRole)
}
if !strings.Contains(capture.scope.filter, "STARTING") {
t.Errorf("expected filter with STARTING, got %q", capture.scope.filter)
}
if !strings.Contains(output, "picked-id") {
t.Errorf("expected picked-id in output: %s", output)
}
}
func TestRequestApprove_PickerFallback(t *testing.T) {
withInteractiveTTY(t, true)
svc := &mockAccessRequestService{
finalizeResult: &wfmodels.AccessRequest{RequestID: "picked-id", RequestResult: wfmodels.RequestResultApproved},
}
capture := stubResolver(t, "picked-id", nil)
cmd := NewRequestCommandWithDeps(svc)
root := newTestRootCommand()
root.AddCommand(cmd)
output, err := executeCommand(root, "request", "approve")
if err != nil {
t.Fatalf("unexpected error: %v\noutput: %s", err, output)
}
if !capture.called {
t.Fatal("resolver was not called")
}
if capture.scope.requestRole != "APPROVER" {
t.Errorf("expected APPROVER scope, got %q", capture.scope.requestRole)
}
if capture.scope.filter != "(requestState eq PENDING)" {
t.Errorf("unexpected filter: %q", capture.scope.filter)
}
if !strings.Contains(output, "approved") {
t.Errorf("expected approved in output: %s", output)
}
}
func TestRequestReject_PickerFallback(t *testing.T) {
withInteractiveTTY(t, true)
svc := &mockAccessRequestService{
finalizeResult: &wfmodels.AccessRequest{RequestID: "picked-id", RequestResult: wfmodels.RequestResultRejected},
}
capture := stubResolver(t, "picked-id", nil)
cmd := NewRequestCommandWithDeps(svc)
root := newTestRootCommand()
root.AddCommand(cmd)
output, err := executeCommand(root, "request", "reject")
if err != nil {
t.Fatalf("unexpected error: %v\noutput: %s", err, output)
}
if capture.scope.requestRole != "APPROVER" {
t.Errorf("expected APPROVER scope, got %q", capture.scope.requestRole)
}
if !strings.Contains(output, "rejected") {
t.Errorf("expected rejected in output: %s", output)
}
}
func TestRequestGet_PickerFallback(t *testing.T) {
withInteractiveTTY(t, true)
svc := &mockAccessRequestService{
getResult: &wfmodels.AccessRequest{
RequestID: "picked-id",
RequestState: wfmodels.RequestStateFinished,
RequestResult: wfmodels.RequestResultApproved,
CreatedBy: "user@test",
CreatedAt: "t",
UpdatedBy: "SYSTEM",
UpdatedAt: "t",
},
}
capture := stubResolver(t, "picked-id", nil)
cmd := NewRequestCommandWithDeps(svc)
root := newTestRootCommand()
root.AddCommand(cmd)
output, err := executeCommand(root, "request", "get")
if err != nil {
t.Fatalf("unexpected error: %v\noutput: %s", err, output)
}
if capture.scope.filter != "" {
t.Errorf("get scope should have no filter, got %q", capture.scope.filter)
}
if capture.scope.requestRole != "" {
t.Errorf("get scope should have no requestRole, got %q", capture.scope.requestRole)
}
if !strings.Contains(output, "picked-id") {
t.Errorf("expected picked-id in output: %s", output)
}
}
func TestRequestCancel_PickerError(t *testing.T) {
withInteractiveTTY(t, true)
svc := &mockAccessRequestService{}
stubResolver(t, "", errors.New("no open requests"))
cmd := NewRequestCommandWithDeps(svc)
root := newTestRootCommand()
root.AddCommand(cmd)
_, err := executeCommand(root, "request", "cancel")
if err == nil {
t.Fatal("expected error from picker")
}
if !strings.Contains(err.Error(), "no open requests") {
t.Errorf("expected picker error, got %v", err)
}
}
func TestEarlyNonInteractiveCheck_NoID(t *testing.T) {
withInteractiveTTY(t, false)
err := earlyNonInteractiveCheck("")
if err == nil {
t.Fatal("expected error")
}
if !errors.Is(err, ui.ErrNotInteractive) {
t.Errorf("expected ErrNotInteractive, got %v", err)
}
if !strings.Contains(err.Error(), "grant request list") {
t.Errorf("expected hint to 'grant request list', got %v", err)
}
}
func TestEarlyNonInteractiveCheck_WithID(t *testing.T) {
withInteractiveTTY(t, false)
if err := earlyNonInteractiveCheck("some-id"); err != nil {
t.Errorf("expected nil when ID provided, got %v", err)
}
}
func TestEarlyNonInteractiveCheck_Interactive(t *testing.T) {
withInteractiveTTY(t, true)
if err := earlyNonInteractiveCheck(""); err != nil {
t.Errorf("expected nil in interactive mode, got %v", err)
}
}
// TestRequestCancel_NonInteractiveNoArgs verifies bootstrap is not reached when
// stdin is non-interactive and no requestID is provided.
func TestRequestCancel_NonInteractiveNoArgs(t *testing.T) {
withInteractiveTTY(t, false)
// Pass nil svc so bootstrap would be attempted if early check is bypassed.
cmd := newRequestCancelCommand(nil)
root := newTestRootCommand()
root.AddCommand(cmd)
_, err := executeCommand(root, "cancel")
if err == nil {
t.Fatal("expected error")
}
if !errors.Is(err, ui.ErrNotInteractive) {
t.Errorf("expected ErrNotInteractive (bootstrap not reached), got %v", err)
}
}