|
4 | 4 | "context"
|
5 | 5 | "net/http"
|
6 | 6 | "net/http/httptest"
|
| 7 | + "net/url" |
7 | 8 | "testing"
|
8 | 9 | "time"
|
9 | 10 |
|
@@ -283,6 +284,56 @@ func TestDeployRequests_List(t *testing.T) {
|
283 | 284 | c.Assert(requests, qt.DeepEquals, want)
|
284 | 285 | }
|
285 | 286 |
|
| 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 | + |
286 | 337 | func TestDeployRequests_SkipRevertDeploy(t *testing.T) {
|
287 | 338 | c := qt.New(t)
|
288 | 339 |
|
|
0 commit comments