lego/providers/dns/nifcloud/internal/client_test.go
Ludovic Fernandez 42941ccea6
Refactor the core of the lib (#700)
- Packages
- Isolate code used by the CLI into the package `cmd`
- (experimental) Add e2e tests for HTTP01, TLS-ALPN-01 and DNS-01, use [Pebble](https://github.com/letsencrypt/pebble) and [challtestsrv](https://github.com/letsencrypt/boulder/tree/master/test/challtestsrv) 
- Support non-ascii domain name (punnycode)
- Check all challenges in a predictable order
- No more global exported variables
- Archive revoked certificates
- Fixes revocation for subdomains and non-ascii domains
- Disable pending authorizations
- use pointer for RemoteError/ProblemDetails
- Poll authz URL instead of challenge URL
- The ability for a DNS provider to solve the challenge sequentially
- Check all nameservers in a predictable order
- Option to disable the complete propagation Requirement
- CLI, support for renew with CSR
- CLI, add SAN on renew
- Add command to list certificates.
- Logs every iteration of waiting for the propagation
- update DNSimple client
- update github.com/miekg/dns
2018-12-06 22:50:17 +01:00

179 lines
4.7 KiB
Go

package internal
import (
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func runTestServer(responseBody string, statusCode int) *httptest.Server {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(statusCode)
fmt.Fprintln(w, responseBody)
}))
return server
}
func TestChangeResourceRecordSets(t *testing.T) {
responseBody := `<?xml version="1.0" encoding="UTF-8"?>
<ChangeResourceRecordSetsResponse xmlns="https://route53.amazonaws.com/doc/2012-12-12/">
<ChangeInfo>
<Id>xxxxx</Id>
<Status>INSYNC</Status>
<SubmittedAt>2015-08-05T00:00:00.000Z</SubmittedAt>
</ChangeInfo>
</ChangeResourceRecordSetsResponse>
`
server := runTestServer(responseBody, http.StatusOK)
defer server.Close()
client, err := NewClient("A", "B")
require.NoError(t, err)
client.BaseURL = server.URL
res, err := client.ChangeResourceRecordSets("example.com", ChangeResourceRecordSetsRequest{})
require.NoError(t, err)
assert.Equal(t, "xxxxx", res.ChangeInfo.ID)
assert.Equal(t, "INSYNC", res.ChangeInfo.Status)
assert.Equal(t, "2015-08-05T00:00:00.000Z", res.ChangeInfo.SubmittedAt)
}
func TestChangeResourceRecordSetsErrors(t *testing.T) {
testCases := []struct {
desc string
responseBody string
statusCode int
expected string
}{
{
desc: "API error",
responseBody: `<?xml version="1.0" encoding="UTF-8"?>
<ErrorResponse>
<Error>
<Type>Sender</Type>
<Code>AuthFailed</Code>
<Message>The request signature we calculated does not match the signature you provided.</Message>
</Error>
</ErrorResponse>
`,
statusCode: http.StatusUnauthorized,
expected: "an error occurred: The request signature we calculated does not match the signature you provided.",
},
{
desc: "response body error",
responseBody: "foo",
statusCode: http.StatusOK,
expected: "an error occurred while unmarshaling the response body to XML: EOF",
},
{
desc: "error message error",
responseBody: "foo",
statusCode: http.StatusInternalServerError,
expected: "an error occurred while unmarshaling the error body to XML: EOF",
},
}
for _, test := range testCases {
test := test
t.Run(test.desc, func(t *testing.T) {
server := runTestServer(test.responseBody, test.statusCode)
defer server.Close()
client, err := NewClient("A", "B")
require.NoError(t, err)
client.BaseURL = server.URL
res, err := client.ChangeResourceRecordSets("example.com", ChangeResourceRecordSetsRequest{})
assert.Nil(t, res)
assert.EqualError(t, err, test.expected)
})
}
}
func TestGetChange(t *testing.T) {
responseBody := `<?xml version="1.0" encoding="UTF-8"?>
<GetChangeResponse xmlns="https://route53.amazonaws.com/doc/2012-12-12/">
<ChangeInfo>
<Id>xxxxx</Id>
<Status>INSYNC</Status>
<SubmittedAt>2015-08-05T00:00:00.000Z</SubmittedAt>
</ChangeInfo>
</GetChangeResponse>
`
server := runTestServer(responseBody, http.StatusOK)
defer server.Close()
client, err := NewClient("A", "B")
require.NoError(t, err)
client.BaseURL = server.URL
res, err := client.GetChange("12345")
require.NoError(t, err)
assert.Equal(t, "xxxxx", res.ChangeInfo.ID)
assert.Equal(t, "INSYNC", res.ChangeInfo.Status)
assert.Equal(t, "2015-08-05T00:00:00.000Z", res.ChangeInfo.SubmittedAt)
}
func TestGetChangeErrors(t *testing.T) {
testCases := []struct {
desc string
responseBody string
statusCode int
expected string
}{
{
desc: "API error",
responseBody: `<?xml version="1.0" encoding="UTF-8"?>
<ErrorResponse>
<Error>
<Type>Sender</Type>
<Code>AuthFailed</Code>
<Message>The request signature we calculated does not match the signature you provided.</Message>
</Error>
</ErrorResponse>
`,
statusCode: http.StatusUnauthorized,
expected: "an error occurred: The request signature we calculated does not match the signature you provided.",
},
{
desc: "response body error",
responseBody: "foo",
statusCode: http.StatusOK,
expected: "an error occurred while unmarshaling the response body to XML: EOF",
},
{
desc: "error message error",
responseBody: "foo",
statusCode: http.StatusInternalServerError,
expected: "an error occurred while unmarshaling the error body to XML: EOF",
},
}
for _, test := range testCases {
test := test
t.Run(test.desc, func(t *testing.T) {
server := runTestServer(test.responseBody, test.statusCode)
defer server.Close()
client, err := NewClient("A", "B")
require.NoError(t, err)
client.BaseURL = server.URL
res, err := client.GetChange("12345")
assert.Nil(t, res)
assert.EqualError(t, err, test.expected)
})
}
}