Skip to content

Commit a643902

Browse files
Merge pull request #170 from planetscale/improve-dr-list
Add ability to list deploy requests by state, branch & into_branch
2 parents 983a3ab + 3a15f7f commit a643902

File tree

2 files changed

+73
-1
lines changed

2 files changed

+73
-1
lines changed

planetscale/deploy_requests.go

+22-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"context"
55
"fmt"
66
"net/http"
7+
"net/url"
78
"time"
89

910
"github.com/pkg/errors"
@@ -63,6 +64,9 @@ type GetDeployRequestRequest struct {
6364
type ListDeployRequestsRequest struct {
6465
Organization string
6566
Database string
67+
State string
68+
Branch string
69+
IntoBranch string
6670
}
6771

6872
// DeployOperation encapsulates a deploy operation within a deployment from the
@@ -427,7 +431,24 @@ func (d *deployRequestsService) Diff(ctx context.Context, diffReq *DiffRequest)
427431
}
428432

429433
func (d *deployRequestsService) List(ctx context.Context, listReq *ListDeployRequestsRequest) ([]*DeployRequest, error) {
430-
req, err := d.client.newRequest(http.MethodGet, deployRequestsAPIPath(listReq.Organization, listReq.Database), nil)
434+
baseURL := deployRequestsAPIPath(listReq.Organization, listReq.Database)
435+
436+
queryParams := url.Values{}
437+
if listReq.State != "" {
438+
queryParams.Set("state", listReq.State)
439+
}
440+
if listReq.Branch != "" {
441+
queryParams.Set("branch", listReq.Branch)
442+
}
443+
if listReq.IntoBranch != "" {
444+
queryParams.Set("into_branch", listReq.IntoBranch)
445+
}
446+
447+
if len(queryParams) > 0 {
448+
baseURL += "?" + queryParams.Encode()
449+
}
450+
451+
req, err := d.client.newRequest(http.MethodGet, baseURL, nil)
431452
if err != nil {
432453
return nil, errors.Wrap(err, "error creating http request")
433454
}

planetscale/deploy_requests_test.go

+51
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"context"
55
"net/http"
66
"net/http/httptest"
7+
"net/url"
78
"testing"
89
"time"
910

@@ -283,6 +284,56 @@ func TestDeployRequests_List(t *testing.T) {
283284
c.Assert(requests, qt.DeepEquals, want)
284285
}
285286

287+
func TestDeployRequests_ListQueryParams(t *testing.T) {
288+
c := qt.New(t)
289+
290+
var receivedQueryParams url.Values
291+
292+
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
293+
receivedQueryParams = r.URL.Query()
294+
295+
w.WriteHeader(200)
296+
out := `{"data": [{"id": "test-deploy-request-id", "branch": "development", "into_branch": "some-branch", "notes": "", "created_at": "2021-01-14T10:19:23.000Z", "updated_at": "2021-01-14T10:19:23.000Z", "closed_at": "2021-01-14T10:19:23.000Z"}]}`
297+
_, err := w.Write([]byte(out))
298+
c.Assert(err, qt.IsNil)
299+
}))
300+
301+
client, err := NewClient(WithBaseURL(ts.URL))
302+
c.Assert(err, qt.IsNil)
303+
304+
ctx := context.Background()
305+
306+
requests, err := client.DeployRequests.List(ctx, &ListDeployRequestsRequest{
307+
Organization: testOrg,
308+
Database: testDatabase,
309+
State: "closed",
310+
Branch: "dev",
311+
IntoBranch: "main",
312+
})
313+
314+
testTime := time.Date(2021, time.January, 14, 10, 19, 23, 0, time.UTC)
315+
316+
want := []*DeployRequest{
317+
{
318+
ID: "test-deploy-request-id",
319+
Branch: "development",
320+
IntoBranch: "some-branch",
321+
Notes: "",
322+
CreatedAt: testTime,
323+
UpdatedAt: testTime,
324+
ClosedAt: &testTime,
325+
},
326+
}
327+
328+
c.Assert(err, qt.IsNil)
329+
c.Assert(requests, qt.DeepEquals, want)
330+
331+
// Assert the expected query parameters
332+
c.Assert(receivedQueryParams.Get("state"), qt.Equals, "closed")
333+
c.Assert(receivedQueryParams.Get("branch"), qt.Equals, "dev")
334+
c.Assert(receivedQueryParams.Get("into_branch"), qt.Equals, "main")
335+
}
336+
286337
func TestDeployRequests_SkipRevertDeploy(t *testing.T) {
287338
c := qt.New(t)
288339

0 commit comments

Comments
 (0)