-
Notifications
You must be signed in to change notification settings - Fork 7
/
api_test.go
79 lines (61 loc) · 1.91 KB
/
api_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package dnsmadeeasy
import (
"bytes"
"errors"
"fmt"
"net/http"
"testing"
)
func makeClient(t *testing.T) *Client {
client, err := NewClient("aaaaaa1a-11a1-1aa1-a101-11a1a11aa1aa",
"11a0a11a-a1a1-111a-a11a-a11110a11111")
if err != nil {
t.Fatalf("err: %v", err)
}
if client.AKey != "aaaaaa1a-11a1-1aa1-a101-11a1a11aa1aa" {
t.Fatalf("api key not set on client: %s", client.AKey)
}
if client.SKey != "11a0a11a-a1a1-111a-a11a-a11110a11111" {
t.Fatalf("secret key not set on client: %s", client.SKey)
}
return client
}
func TestClient_NewRequest(t *testing.T) {
c := makeClient(t)
body := bytes.NewBuffer(nil)
req, err := c.NewRequest("POST", "/bar", body, "Thu, 04 Dec 2014 11:02:57 GMT")
if err != nil {
t.Fatalf("bad: %v", err)
}
if req.URL.String() != "https://api.dnsmadeeasy.com/V2.0/bar" {
t.Fatalf("bad base url: %v", req.URL.String())
}
if req.Header.Get("X-Dnsme-Apikey") != "aaaaaa1a-11a1-1aa1-a101-11a1a11aa1aa" {
t.Fatalf("bad auth header: %v", req.Header)
}
if req.Header.Get("X-Dnsme-Requestdate") != "Thu, 04 Dec 2014 11:02:57 GMT" {
t.Fatalf("bad auth header: %v", req.Header)
}
if req.Header.Get("X-Dnsme-Hmac") != "7a8c517d5eab84e524a537ce3a73e565cabf8f6a" {
t.Fatalf("bad auth header: %v", req.Header)
}
if req.Method != "POST" {
t.Fatalf("bad method: %v", req.Method)
}
}
type ClosingBuffer struct {
*bytes.Buffer
}
func (cb *ClosingBuffer) Close() error {
return nil
}
var errExample = &http.Response{
Body: &ClosingBuffer{bytes.NewBufferString(`{"error":["Record with this type (A), name (test), and value (1.1.1.9) already exists."]}`)},
}
func Test_ParseError(t *testing.T) {
should := errors.New("API Error (0): Record with this type (A), name (test), and value (1.1.1.9) already exists.")
actual := parseError(errExample)
if fmt.Sprintf("%v", should) != fmt.Sprintf("%v", actual) {
t.Fatalf("parseError\nshould: |%v|\nactual: |%v|\n", should, actual)
}
}