This repository was archived by the owner on Jun 21, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtypes_test.go
72 lines (53 loc) · 1.44 KB
/
types_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
package clearbit
import (
"encoding/json"
"testing"
)
func TestEnrichmentCombinedResponse(t *testing.T) {
var combined CombinedResponse
unmarshalFixture(t, "enrichment_combined_response", &combined)
if combined.Person.ID == "" {
t.Fatal("Expected person to be present")
}
if combined.Company.ID == "" {
t.Fatal("Expected company to be present")
}
}
func TestEnrichmentPersonResponse(t *testing.T) {
var person Person
unmarshalFixture(t, "enrichment_person_response", &person)
if person.ID == "" {
t.Fatal("Expected person to be present")
}
}
func TestEnrichmentCompanyResponse(t *testing.T) {
var company Company
unmarshalFixture(t, "enrichment_company_response", &company)
if company.ID == "" {
t.Fatal("Expected company to be present")
}
}
func TestErrorResponse(t *testing.T) {
var error ErrorResponse
unmarshalFixture(t, "error_response", &error)
if error.Type != "params_invalid" {
t.Fatal("Expected error to be unmarshaled")
}
}
func TestTwitterID(t *testing.T) {
var id TwitterID
data := []byte(`123`)
if err := json.Unmarshal(data, &id); err != nil {
t.Fatalf("Failed to unmarshal %q into TwitterID: %s", data, err)
}
if id != "123" {
t.Fatalf("Unmarshaled id = %v, want %v", id, "123")
}
data = []byte(`"321"`)
if err := json.Unmarshal(data, &id); err != nil {
t.Fatalf("Failed to unmarshal %q into TwitterID: %s", data, err)
}
if id != "321" {
t.Fatalf("Unmarshaled id = %v, want %v", id, "321")
}
}