-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployee_test.go
54 lines (40 loc) · 1.72 KB
/
employee_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
package employmenthero
import (
"bytes"
"context"
"io/ioutil"
"net/http"
"testing"
"github.com/Thinkei/employmenthero-go/mocks"
"github.com/stretchr/testify/assert"
)
func TestListEmployees(t *testing.T) {
r := ioutil.NopCloser(bytes.NewReader([]byte(`{"data":{"items":[{"id":"3cfd1633-4920-xxxy-be7e-98i13159x74", "account_email": "dev@employmenthero.com", "title": "dev", "role": "employee", "first_name":"Hoa", "last_name": "Nguyen", "Address": "Sydney, NSW"}],"item_per_page":20,"page_index":1,"total_pages":1,"total_items":1}}`)))
mocks.GetDoFunc = func(*http.Request) (*http.Response, error) {
return &http.Response{
StatusCode: 200,
Body: r,
}, nil
}
response, err := c.ListEmployees(context.TODO(), "organisation_uid", ListParams{})
assert.Equal(t, response.Data.ItemPerPage, 20)
assert.Equal(t, response.Data.PageIndex, 1)
assert.Equal(t, response.Data.TotalItems, 1)
assert.Equal(t, response.Data.TotalPages, 1)
expectedResult := []Employee{{Id: "3cfd1633-4920-xxxy-be7e-98i13159x74", AccountEmail: "dev@employmenthero.com", Title: "dev", Role: "employee", FirstName: "Hoa", LastName: "Nguyen", Address: "Sydney, NSW"}}
assert.Equal(t, response.Data.Items, expectedResult)
assert.Nil(t, err)
}
func TestGetEmployee(t *testing.T) {
r := ioutil.NopCloser(bytes.NewReader([]byte(`{"data":{"id":"3cfd1633-4920-xxxy-be7e-98i13159x74"}}`)))
mocks.GetDoFunc = func(*http.Request) (*http.Response, error) {
return &http.Response{
StatusCode: 200,
Body: r,
}, nil
}
response, err := c.GetEmployee(context.TODO(), "organisation_uid", "employee_uid")
expectedResult := Employee{Id: "3cfd1633-4920-xxxy-be7e-98i13159x74"}
assert.Equal(t, response.Data, expectedResult)
assert.Nil(t, err)
}