dnscontrol/pkg/cloudflare-go/url_normalization_settings_test.go
Tom Limoncelli 7fd6a74e0c
CLOUDFLAREAPI: CF_REDIRECT/CF_TEMP_REDIRECT should dtrt using Single Redirects (#3002)
Co-authored-by: Josh Zhang <jzhang1@stackoverflow.com>
2024-06-18 17:38:50 -04:00

86 lines
1.8 KiB
Go

package cloudflare
import (
"context"
"fmt"
"io"
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestURLNormalizationSettings(t *testing.T) {
setup()
defer teardown()
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, `{
"result": {
"type": "cloudflare",
"scope": "incoming"
},
"success": true,
"errors": [],
"messages": []
}`)
}
mux.HandleFunc("/zones/"+testZoneID+"/url_normalization", handler)
want := URLNormalizationSettings{
Type: "cloudflare",
Scope: "incoming",
}
got, err := client.URLNormalizationSettings(context.Background(), ZoneIdentifier(testZoneID))
if assert.NoError(t, err) {
assert.Equal(t, want, got)
}
}
func TestUpdateURLNormalizationSettings(t *testing.T) {
setup()
defer teardown()
handler := func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodPut, r.Method, "Expected method 'PUT', got %s", r.Method)
body, err := io.ReadAll(r.Body)
if err != nil {
panic(err)
}
defer r.Body.Close()
assert.Equal(t, `{"type":"cloudflare","scope":"incoming"}`, string(body))
w.Header().Set("content-type", "application/json")
fmt.Fprintf(w, `{
"result": {
"type": "cloudflare",
"scope": "incoming"
},
"success": true,
"errors": [],
"messages": []
}`)
}
mux.HandleFunc("/zones/"+testZoneID+"/url_normalization", handler)
params := URLNormalizationSettingsUpdateParams{
Type: "cloudflare",
Scope: "incoming",
}
want := URLNormalizationSettings{
Type: "cloudflare",
Scope: "incoming",
}
got, err := client.UpdateURLNormalizationSettings(context.Background(), ZoneIdentifier(testZoneID), params)
if assert.NoError(t, err) {
assert.Equal(t, want, got)
}
}