-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Troy Jones
committed
Aug 30, 2023
1 parent
0dc1c0d
commit a10a008
Showing
3 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:enhancement | ||
dcv_delegation: add GET for DCV Delegation UUID | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package cloudflare | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"net/http" | ||
|
||
"github.com/goccy/go-json" | ||
) | ||
|
||
type DCVDelegation struct { | ||
UUID string `json:"uuid"` | ||
} | ||
|
||
// DCVDelegationResponse represents the response from the dcv_delegation/uuid endpoint. | ||
type DCVDelegationResponse struct { | ||
Result DCVDelegation `json:"result"` | ||
Response | ||
ResultInfo `json:"result_info"` | ||
} | ||
|
||
// GetDCVDelegation gets a zone DCV Delegation UUID | ||
// | ||
// TODO: Add API documentation | ||
func (api *API) GetDCVDelegation(ctx context.Context, rc *ResourceContainer) (DCVDelegation, ResultInfo, error) { | ||
uri := fmt.Sprintf("/zones/%s/dcv_delegation/uuid", rc.Identifier) | ||
|
||
res, err := api.makeRequestContext(ctx, http.MethodGet, uri, nil) | ||
if err != nil { | ||
return DCVDelegation{}, ResultInfo{}, err | ||
} | ||
var dcvResponse DCVDelegationResponse | ||
err = json.Unmarshal(res, &dcvResponse) | ||
if err != nil { | ||
return DCVDelegation{}, ResultInfo{}, fmt.Errorf("%s: %w", errUnmarshalError, err) | ||
} | ||
|
||
return dcvResponse.Result, dcvResponse.ResultInfo, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package cloudflare | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"net/http" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestGetDCVDelegation(t *testing.T) { | ||
setup() | ||
defer teardown() | ||
|
||
testUuid := "b9ab465427f949ed" | ||
|
||
handler := func(w http.ResponseWriter, r *http.Request) { | ||
assert.Equal(t, http.MethodGet, r.Method, "Expected method 'GET', got %s", r.Method) | ||
w.Header().Set("content-type", "application/json") | ||
fmt.Fprintf(w, `{ | ||
"success" : true, | ||
"errors": [], | ||
"messages": [], | ||
"result": { | ||
"uuid": "%s" | ||
} | ||
} | ||
`, testUuid) | ||
} | ||
|
||
mux.HandleFunc("/zones/"+testZoneID+"/dcv_delegation/uuid", handler) | ||
|
||
want := DCVDelegation{ | ||
UUID: testUuid, | ||
} | ||
|
||
actual, _, err := client.GetDCVDelegation(context.Background(), ZoneIdentifier(testZoneID)) | ||
|
||
if assert.NoError(t, err) { | ||
assert.Equal(t, want, actual) | ||
} | ||
} |