mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-11-11 08:50:39 +08:00
86 lines
1.8 KiB
Go
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)
|
|
}
|
|
}
|