2021-12-20 14:15:49 +00:00
|
|
|
package internal
|
|
|
|
|
|
|
|
import (
|
2023-05-05 07:49:38 +00:00
|
|
|
"context"
|
2021-12-20 14:15:49 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"net/url"
|
2023-05-05 07:49:38 +00:00
|
|
|
"strings"
|
2021-12-20 14:15:49 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/go-acme/lego/v4/challenge/dns01"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func setupTest(t *testing.T) (*Client, *http.ServeMux) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
mux := http.NewServeMux()
|
|
|
|
server := httptest.NewServer(mux)
|
|
|
|
t.Cleanup(server.Close)
|
|
|
|
|
|
|
|
client := NewClient("secret")
|
|
|
|
client.baseURL, _ = url.Parse(server.URL)
|
|
|
|
|
|
|
|
return client, mux
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClient_AddRecord(t *testing.T) {
|
|
|
|
client, mux := setupTest(t)
|
|
|
|
|
|
|
|
mux.HandleFunc("/zones/example.com/records", func(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
if req.Method != http.MethodPost {
|
|
|
|
http.Error(rw, "invalid method: "+req.Method, http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
if req.Header.Get(authorizationHeader) != "secret" {
|
2021-12-20 14:15:49 +00:00
|
|
|
http.Error(rw, `{"message":"Unauthenticated"}`, http.StatusUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
reqBody, err := io.ReadAll(req.Body)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedReqBody := `{"name":"_acme-challenge.example.com","type":"TXT","content":"\"w6uP8Tcg6K2QR905Rms8iXTlksL6OD1KOWBxTK7wxPI\"","ttl":120}`
|
2023-05-05 07:49:38 +00:00
|
|
|
if strings.TrimSpace(string(reqBody)) != expectedReqBody {
|
2021-12-20 14:15:49 +00:00
|
|
|
http.Error(rw, `{"message":"invalid request"}`, http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := `{
|
|
|
|
"data": {
|
|
|
|
"id": 1234567
|
|
|
|
},
|
|
|
|
"meta": {
|
|
|
|
"location": "https://api.ukfast.io/safedns/v1/zones/example.com/records/1234567"
|
|
|
|
}
|
|
|
|
}`
|
|
|
|
|
|
|
|
rw.WriteHeader(http.StatusCreated)
|
|
|
|
_, err = fmt.Fprint(rw, resp)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
record := Record{
|
|
|
|
Name: "_acme-challenge.example.com",
|
|
|
|
Type: "TXT",
|
|
|
|
Content: `"w6uP8Tcg6K2QR905Rms8iXTlksL6OD1KOWBxTK7wxPI"`,
|
|
|
|
TTL: dns01.DefaultTTL,
|
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
response, err := client.AddRecord(context.Background(), "example.com", record)
|
2021-12-20 14:15:49 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
expected := &AddRecordResponse{
|
|
|
|
Data: struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
}{
|
|
|
|
ID: 1234567,
|
|
|
|
},
|
|
|
|
Meta: struct {
|
|
|
|
Location string `json:"location"`
|
|
|
|
}{
|
|
|
|
Location: "https://api.ukfast.io/safedns/v1/zones/example.com/records/1234567",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
assert.Equal(t, expected, response)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClient_RemoveRecord(t *testing.T) {
|
|
|
|
client, mux := setupTest(t)
|
|
|
|
|
|
|
|
mux.HandleFunc("/zones/example.com/records/1234567", func(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
if req.Method != http.MethodDelete {
|
|
|
|
http.Error(rw, "invalid method: "+req.Method, http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
if req.Header.Get(authorizationHeader) != "secret" {
|
2021-12-20 14:15:49 +00:00
|
|
|
http.Error(rw, `{"message":"Unauthenticated"}`, http.StatusUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rw.WriteHeader(http.StatusNoContent)
|
|
|
|
})
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
err := client.RemoveRecord(context.Background(), "example.com", 1234567)
|
2021-12-20 14:15:49 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
}
|