Skip to content

Commit 648e70a

Browse files
authored
Merge pull request #248 from planetscale/update-workflow-req-structs
[Workflows] Use specific request types for each method, so they're extendable
2 parents da3d5ca + 9c605d0 commit 648e70a

File tree

2 files changed

+81
-32
lines changed

2 files changed

+81
-32
lines changed

planetscale/workflows.go

+72-18
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,60 @@ type GetWorkflowRequest struct {
126126
WorkflowNumber uint64 `json:"-"`
127127
}
128128

129+
type VerifyDataWorkflowRequest struct {
130+
Organization string `json:"-"`
131+
Database string `json:"-"`
132+
WorkflowNumber uint64 `json:"-"`
133+
}
134+
135+
type SwitchReplicasWorkflowRequest struct {
136+
Organization string `json:"-"`
137+
Database string `json:"-"`
138+
WorkflowNumber uint64 `json:"-"`
139+
}
140+
141+
type SwitchPrimariesWorkflowRequest struct {
142+
Organization string `json:"-"`
143+
Database string `json:"-"`
144+
WorkflowNumber uint64 `json:"-"`
145+
}
146+
147+
type ReverseTrafficWorkflowRequest struct {
148+
Organization string `json:"-"`
149+
Database string `json:"-"`
150+
WorkflowNumber uint64 `json:"-"`
151+
}
152+
153+
type CutoverWorkflowRequest struct {
154+
Organization string `json:"-"`
155+
Database string `json:"-"`
156+
WorkflowNumber uint64 `json:"-"`
157+
}
158+
159+
type ReverseCutoverWorkflowRequest struct {
160+
Organization string `json:"-"`
161+
Database string `json:"-"`
162+
WorkflowNumber uint64 `json:"-"`
163+
}
164+
165+
type CompleteWorkflowRequest struct {
166+
Organization string `json:"-"`
167+
Database string `json:"-"`
168+
WorkflowNumber uint64 `json:"-"`
169+
}
170+
171+
type RetryWorkflowRequest struct {
172+
Organization string `json:"-"`
173+
Database string `json:"-"`
174+
WorkflowNumber uint64 `json:"-"`
175+
}
176+
177+
type CancelWorkflowRequest struct {
178+
Organization string `json:"-"`
179+
Database string `json:"-"`
180+
WorkflowNumber uint64 `json:"-"`
181+
}
182+
129183
type CreateWorkflowRequest struct {
130184
Organization string `json:"-"`
131185
Database string `json:"-"`
@@ -144,15 +198,15 @@ type WorkflowsService interface {
144198
List(context.Context, *ListWorkflowsRequest) ([]*Workflow, error)
145199
Get(context.Context, *GetWorkflowRequest) (*Workflow, error)
146200
Create(context.Context, *CreateWorkflowRequest) (*Workflow, error)
147-
VerifyData(context.Context, *GetWorkflowRequest) (*Workflow, error)
148-
SwitchReplicas(context.Context, *GetWorkflowRequest) (*Workflow, error)
149-
SwitchPrimaries(context.Context, *GetWorkflowRequest) (*Workflow, error)
150-
ReverseTraffic(context.Context, *GetWorkflowRequest) (*Workflow, error)
151-
Cutover(context.Context, *GetWorkflowRequest) (*Workflow, error)
152-
ReverseCutover(context.Context, *GetWorkflowRequest) (*Workflow, error)
153-
Complete(context.Context, *GetWorkflowRequest) (*Workflow, error)
154-
Retry(context.Context, *GetWorkflowRequest) (*Workflow, error)
155-
Cancel(context.Context, *GetWorkflowRequest) (*Workflow, error)
201+
VerifyData(context.Context, *VerifyDataWorkflowRequest) (*Workflow, error)
202+
SwitchReplicas(context.Context, *SwitchReplicasWorkflowRequest) (*Workflow, error)
203+
SwitchPrimaries(context.Context, *SwitchPrimariesWorkflowRequest) (*Workflow, error)
204+
ReverseTraffic(context.Context, *ReverseTrafficWorkflowRequest) (*Workflow, error)
205+
Cutover(context.Context, *CutoverWorkflowRequest) (*Workflow, error)
206+
ReverseCutover(context.Context, *ReverseCutoverWorkflowRequest) (*Workflow, error)
207+
Complete(context.Context, *CompleteWorkflowRequest) (*Workflow, error)
208+
Retry(context.Context, *RetryWorkflowRequest) (*Workflow, error)
209+
Cancel(context.Context, *CancelWorkflowRequest) (*Workflow, error)
156210
}
157211

158212
type workflowsService struct {
@@ -215,7 +269,7 @@ func (ws *workflowsService) Create(ctx context.Context, createReq *CreateWorkflo
215269
return workflow, nil
216270
}
217271

218-
func (ws *workflowsService) VerifyData(ctx context.Context, verifyDataReq *GetWorkflowRequest) (*Workflow, error) {
272+
func (ws *workflowsService) VerifyData(ctx context.Context, verifyDataReq *VerifyDataWorkflowRequest) (*Workflow, error) {
219273
path := fmt.Sprintf("%s/verify-data", workflowAPIPath(verifyDataReq.Organization, verifyDataReq.Database, verifyDataReq.WorkflowNumber))
220274
req, err := ws.client.newRequest(http.MethodPatch, path, nil)
221275

@@ -232,7 +286,7 @@ func (ws *workflowsService) VerifyData(ctx context.Context, verifyDataReq *GetWo
232286
return workflow, nil
233287
}
234288

235-
func (ws *workflowsService) SwitchReplicas(ctx context.Context, switchReplicasReq *GetWorkflowRequest) (*Workflow, error) {
289+
func (ws *workflowsService) SwitchReplicas(ctx context.Context, switchReplicasReq *SwitchReplicasWorkflowRequest) (*Workflow, error) {
236290
path := fmt.Sprintf("%s/switch-replicas", workflowAPIPath(switchReplicasReq.Organization, switchReplicasReq.Database, switchReplicasReq.WorkflowNumber))
237291
req, err := ws.client.newRequest(http.MethodPatch, path, nil)
238292

@@ -249,7 +303,7 @@ func (ws *workflowsService) SwitchReplicas(ctx context.Context, switchReplicasRe
249303
return workflow, nil
250304
}
251305

252-
func (ws *workflowsService) SwitchPrimaries(ctx context.Context, switchPrimariesReq *GetWorkflowRequest) (*Workflow, error) {
306+
func (ws *workflowsService) SwitchPrimaries(ctx context.Context, switchPrimariesReq *SwitchPrimariesWorkflowRequest) (*Workflow, error) {
253307
path := fmt.Sprintf("%s/switch-primaries", workflowAPIPath(switchPrimariesReq.Organization, switchPrimariesReq.Database, switchPrimariesReq.WorkflowNumber))
254308
req, err := ws.client.newRequest(http.MethodPatch, path, nil)
255309

@@ -266,7 +320,7 @@ func (ws *workflowsService) SwitchPrimaries(ctx context.Context, switchPrimaries
266320
return workflow, nil
267321
}
268322

269-
func (ws *workflowsService) ReverseTraffic(ctx context.Context, reverseTrafficReq *GetWorkflowRequest) (*Workflow, error) {
323+
func (ws *workflowsService) ReverseTraffic(ctx context.Context, reverseTrafficReq *ReverseTrafficWorkflowRequest) (*Workflow, error) {
270324
path := fmt.Sprintf("%s/reverse-traffic", workflowAPIPath(reverseTrafficReq.Organization, reverseTrafficReq.Database, reverseTrafficReq.WorkflowNumber))
271325
req, err := ws.client.newRequest(http.MethodPatch, path, nil)
272326

@@ -283,7 +337,7 @@ func (ws *workflowsService) ReverseTraffic(ctx context.Context, reverseTrafficRe
283337
return workflow, nil
284338
}
285339

286-
func (ws *workflowsService) Cutover(ctx context.Context, cutoverReq *GetWorkflowRequest) (*Workflow, error) {
340+
func (ws *workflowsService) Cutover(ctx context.Context, cutoverReq *CutoverWorkflowRequest) (*Workflow, error) {
287341
path := fmt.Sprintf("%s/cutover", workflowAPIPath(cutoverReq.Organization, cutoverReq.Database, cutoverReq.WorkflowNumber))
288342
req, err := ws.client.newRequest(http.MethodPatch, path, nil)
289343

@@ -300,7 +354,7 @@ func (ws *workflowsService) Cutover(ctx context.Context, cutoverReq *GetWorkflow
300354
return workflow, nil
301355
}
302356

303-
func (ws *workflowsService) ReverseCutover(ctx context.Context, reverseCutoverReq *GetWorkflowRequest) (*Workflow, error) {
357+
func (ws *workflowsService) ReverseCutover(ctx context.Context, reverseCutoverReq *ReverseCutoverWorkflowRequest) (*Workflow, error) {
304358
path := fmt.Sprintf("%s/reverse-cutover", workflowAPIPath(reverseCutoverReq.Organization, reverseCutoverReq.Database, reverseCutoverReq.WorkflowNumber))
305359
req, err := ws.client.newRequest(http.MethodPatch, path, nil)
306360

@@ -317,7 +371,7 @@ func (ws *workflowsService) ReverseCutover(ctx context.Context, reverseCutoverRe
317371
return workflow, nil
318372
}
319373

320-
func (ws *workflowsService) Complete(ctx context.Context, completeReq *GetWorkflowRequest) (*Workflow, error) {
374+
func (ws *workflowsService) Complete(ctx context.Context, completeReq *CompleteWorkflowRequest) (*Workflow, error) {
321375
path := fmt.Sprintf("%s/complete", workflowAPIPath(completeReq.Organization, completeReq.Database, completeReq.WorkflowNumber))
322376
req, err := ws.client.newRequest(http.MethodPatch, path, nil)
323377

@@ -334,7 +388,7 @@ func (ws *workflowsService) Complete(ctx context.Context, completeReq *GetWorkfl
334388
return workflow, nil
335389
}
336390

337-
func (ws *workflowsService) Retry(ctx context.Context, retryReq *GetWorkflowRequest) (*Workflow, error) {
391+
func (ws *workflowsService) Retry(ctx context.Context, retryReq *RetryWorkflowRequest) (*Workflow, error) {
338392
path := fmt.Sprintf("%s/retry", workflowAPIPath(retryReq.Organization, retryReq.Database, retryReq.WorkflowNumber))
339393
req, err := ws.client.newRequest(http.MethodPatch, path, nil)
340394

@@ -351,7 +405,7 @@ func (ws *workflowsService) Retry(ctx context.Context, retryReq *GetWorkflowRequ
351405
return workflow, nil
352406
}
353407

354-
func (ws *workflowsService) Cancel(ctx context.Context, cancelReq *GetWorkflowRequest) (*Workflow, error) {
408+
func (ws *workflowsService) Cancel(ctx context.Context, cancelReq *CancelWorkflowRequest) (*Workflow, error) {
355409
path := workflowAPIPath(cancelReq.Organization, cancelReq.Database, cancelReq.WorkflowNumber)
356410
req, err := ws.client.newRequest(http.MethodDelete, path, nil)
357411

planetscale/workflows_test.go

+9-14
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func TestWorfklows_VerifyData(t *testing.T) {
193193

194194
ctx := context.Background()
195195

196-
workflow, err := client.Workflows.VerifyData(ctx, &GetWorkflowRequest{
196+
workflow, err := client.Workflows.VerifyData(ctx, &VerifyDataWorkflowRequest{
197197
Organization: "foo",
198198
Database: "bar",
199199
WorkflowNumber: 1,
@@ -230,7 +230,7 @@ func TestWorkflows_SwitchReplicas(t *testing.T) {
230230

231231
ctx := context.Background()
232232

233-
workflow, err := client.Workflows.SwitchReplicas(ctx, &GetWorkflowRequest{
233+
workflow, err := client.Workflows.SwitchReplicas(ctx, &SwitchReplicasWorkflowRequest{
234234
Organization: "foo",
235235
Database: "bar",
236236
WorkflowNumber: 1,
@@ -267,7 +267,7 @@ func TestWorkflows_SwitchPrimaries(t *testing.T) {
267267

268268
ctx := context.Background()
269269

270-
workflow, err := client.Workflows.SwitchPrimaries(ctx, &GetWorkflowRequest{
270+
workflow, err := client.Workflows.SwitchPrimaries(ctx, &SwitchPrimariesWorkflowRequest{
271271
Organization: "foo",
272272
Database: "bar",
273273
WorkflowNumber: 1,
@@ -304,7 +304,7 @@ func TestWorkflows_ReverseTraffic(t *testing.T) {
304304

305305
ctx := context.Background()
306306

307-
workflow, err := client.Workflows.ReverseTraffic(ctx, &GetWorkflowRequest{
307+
workflow, err := client.Workflows.ReverseTraffic(ctx, &ReverseTrafficWorkflowRequest{
308308
Organization: "foo",
309309
Database: "bar",
310310
WorkflowNumber: 1,
@@ -324,11 +324,6 @@ func TestWorkflows_ReverseTraffic(t *testing.T) {
324324
c.Assert(len(workflow.Tables), qt.Equals, 1)
325325
}
326326

327-
// patch "/workflows/:number/cutover", to: "workflows#cutover", as: :workflow_cutover
328-
// patch "/workflows/:number/reverse-cutover", to: "workflows#reverse_cutover", as: :workflow_reverse_cutover
329-
// patch "/workflows/:number/complete", to: "workflows#complete", as: :workflow_complete
330-
// patch "/workflows/:number/retry", to: "workflows#retry", as: :workflow_retry
331-
332327
func TestWorkflows_Cutover(t *testing.T) {
333328
c := qt.New(t)
334329

@@ -346,7 +341,7 @@ func TestWorkflows_Cutover(t *testing.T) {
346341

347342
ctx := context.Background()
348343

349-
workflow, err := client.Workflows.Cutover(ctx, &GetWorkflowRequest{
344+
workflow, err := client.Workflows.Cutover(ctx, &CutoverWorkflowRequest{
350345
Organization: "foo",
351346
Database: "bar",
352347
WorkflowNumber: 1,
@@ -383,7 +378,7 @@ func TestWorkflows_ReverseCutover(t *testing.T) {
383378

384379
ctx := context.Background()
385380

386-
workflow, err := client.Workflows.ReverseCutover(ctx, &GetWorkflowRequest{
381+
workflow, err := client.Workflows.ReverseCutover(ctx, &ReverseCutoverWorkflowRequest{
387382
Organization: "foo",
388383
Database: "bar",
389384
WorkflowNumber: 1,
@@ -420,7 +415,7 @@ func TestWorkflows_Complete(t *testing.T) {
420415

421416
ctx := context.Background()
422417

423-
workflow, err := client.Workflows.Complete(ctx, &GetWorkflowRequest{
418+
workflow, err := client.Workflows.Complete(ctx, &CompleteWorkflowRequest{
424419
Organization: "foo",
425420
Database: "bar",
426421
WorkflowNumber: 1,
@@ -457,7 +452,7 @@ func TestWorkflows_Retry(t *testing.T) {
457452

458453
ctx := context.Background()
459454

460-
workflow, err := client.Workflows.Retry(ctx, &GetWorkflowRequest{
455+
workflow, err := client.Workflows.Retry(ctx, &RetryWorkflowRequest{
461456
Organization: "foo",
462457
Database: "bar",
463458
WorkflowNumber: 1,
@@ -494,7 +489,7 @@ func TestWorkflows_Cancel(t *testing.T) {
494489

495490
ctx := context.Background()
496491

497-
workflow, err := client.Workflows.Cancel(ctx, &GetWorkflowRequest{
492+
workflow, err := client.Workflows.Cancel(ctx, &CancelWorkflowRequest{
498493
Organization: "foo",
499494
Database: "bar",
500495
WorkflowNumber: 1,

0 commit comments

Comments
 (0)