-
Notifications
You must be signed in to change notification settings - Fork 79
/
company_api_test.go
92 lines (83 loc) · 2.98 KB
/
company_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
80
81
82
83
84
85
86
87
88
89
90
91
92
package intercom
import (
"io/ioutil"
"testing"
)
func TestCompanyAPIFind(t *testing.T) {
http := TestCompanyHTTPClient{fixtureFilename: "fixtures/company.json", expectedURI: "/companies/54c42e7ea7a765fa7", t: t}
api := CompanyAPI{httpClient: &http}
company, err := api.find(CompanyIdentifiers{ID: "54c42e7ea7a765fa7"})
if err != nil {
t.Errorf("Error parsing fixture %s", err)
}
if company.ID != "54c42ed71623d8caa" {
t.Errorf("ID was %s, expected 54c42ed71623d8caa", company.ID)
}
if company.CompanyID != "762" {
t.Errorf("CompanyID was %s, expected 762", company.CompanyID)
}
if company.RemoteCreatedAt != 1413218536 {
t.Errorf("RemoteCreatedAt was %d, expected %d", company.RemoteCreatedAt, 1413218536)
}
if company.CustomAttributes["big_company"] != true {
t.Errorf("CustomAttributes was %v, expected %v", company.CustomAttributes, map[string]interface{}{"big_company": true})
}
}
func TestCompanyAPIListUsers(t *testing.T) {
http := TestCompanyHTTPClient{fixtureFilename: "fixtures/users.json", expectedURI: "/companies/54c42ed71623d8caa/users", t: t}
api := CompanyAPI{httpClient: &http}
params := companyUserListParams{Type: "user"}
companyUserList, err := api.listUsers("54c42ed71623d8caa", params)
if err != nil {
t.Errorf("Error parsing fixture %s", err)
}
users := companyUserList.Users
if users[0].ID != "54c42e7ea7a765fa7" {
t.Errorf("ID was %s, expected 54c42e7ea7a765fa7", users[0].ID)
}
}
func TestCompanyAPIFindByName(t *testing.T) {
http := TestCompanyHTTPClient{fixtureFilename: "fixtures/company.json", expectedURI: "/companies", t: t}
api := CompanyAPI{httpClient: &http}
company, _ := api.find(CompanyIdentifiers{Name: "Important Company"})
if company.Name != "Important Company" {
t.Errorf("Name was %s, expected Important Company", company.Name)
}
}
func TestCompanyAPIListDefault(t *testing.T) {
http := TestCompanyHTTPClient{fixtureFilename: "fixtures/companies.json", expectedURI: "/companies", t: t}
api := CompanyAPI{httpClient: &http}
companyList, _ := api.list(companyListParams{})
companies := companyList.Companies
if companies[0].ID != "54c42ed71623d8caa" {
t.Errorf("ID was %s, expected 54c42ed71623d8caa", companies[0].ID)
}
pages := companyList.Pages
if pages.Page != 1 {
t.Errorf("Page was %d, expected 1", pages.Page)
}
}
func TestCompanyAPISave(t *testing.T) {
http := TestCompanyHTTPClient{t: t, expectedURI: "/companies"}
api := CompanyAPI{httpClient: &http}
company := Company{CompanyID: "27"}
api.save(&company)
}
type TestCompanyHTTPClient struct {
TestHTTPClient
t *testing.T
fixtureFilename string
expectedURI string
}
func (t TestCompanyHTTPClient) Get(uri string, queryParams interface{}) ([]byte, error) {
if t.expectedURI != uri {
t.t.Errorf("URI was %s, expected %s", uri, t.expectedURI)
}
return ioutil.ReadFile(t.fixtureFilename)
}
func (t TestCompanyHTTPClient) Post(uri string, body interface{}) ([]byte, error) {
if uri != "/companies" {
t.t.Errorf("Wrong endpoint called")
}
return nil, nil
}