This repository has been archived by the owner on Mar 6, 2023. It is now read-only.
forked from jazibjohar/intercom-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact_test.go
123 lines (104 loc) · 3.84 KB
/
contact_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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package intercom
import (
"testing"
"github.com/pborman/uuid"
)
func TestContactFindByID(t *testing.T) {
contact, _ := (&ContactService{Repository: TestContactAPI{t: t}}).FindByID("46adad3f09126dca")
if contact.ID != "46adad3f09126dca" {
t.Errorf("Contact not found")
}
}
func TestContactFindByUserID(t *testing.T) {
contact, _ := (&ContactService{Repository: TestContactAPI{t: t}}).FindByUserID("134d")
if contact.UserID != "134d" {
t.Errorf("Contact not found")
}
}
func TestContactList(t *testing.T) {
contactList, _ := (&ContactService{Repository: TestContactAPI{t: t}}).ListByEmail("[email protected]", PageParams{})
contacts := contactList.Contacts
if contacts[0].ID != "46adad3f09126dca" {
t.Errorf("Contact not listed")
}
}
func TestContactListEmail(t *testing.T) {
contactList, _ := (&ContactService{Repository: TestContactAPI{t: t}}).List(PageParams{})
contacts := contactList.Contacts
if contacts[0].ID != "46adad3f09126dca" {
t.Errorf("Contact not listed")
}
}
func TestContactCreate(t *testing.T) {
contactService := ContactService{Repository: TestContactAPI{t: t}}
contact := Contact{Email: "[email protected]"}
c, _ := contactService.Create(&contact)
if c.Email != contact.Email {
t.Errorf("expected returned contact to have email %s, got %s", contact.Email, c.Email)
}
}
func TestContactUpdate(t *testing.T) {
contactService := ContactService{Repository: TestContactAPI{t: t}}
contact := Contact{Email: "[email protected]"}
c, _ := contactService.Update(&contact)
if c.Email != contact.Email {
t.Errorf("expected returned contact to have email %s, got %s", contact.Email, c.Email)
}
}
func TestContactConvert(t *testing.T) {
contactService := ContactService{Repository: TestContactAPI{t: t}}
contact := Contact{UserID: "aaaa", Email: "[email protected]"}
user := User{ID: "abc13", UserID: "c135"}
u, _ := contactService.Convert(&contact, &user)
if u.Email != contact.Email {
t.Errorf("expected returned user to have email %s, got %s", contact.Email, u.Email)
}
if u.UserID != user.UserID {
t.Errorf("expected returned user to have user id %s, got %s", user.UserID, u.UserID)
}
}
func TestContactDelete(t *testing.T) {
contactService := ContactService{Repository: TestContactAPI{t: t}}
contact := Contact{UserID: "aaaa", Email: "[email protected]"}
contactService.Delete(&contact)
}
func TestContactMessageAddress(t *testing.T) {
contact := Contact{UserID: "aaaa", Email: "[email protected]"}
address := contact.MessageAddress()
if address.ID != "" {
t.Errorf("Contact address had ID")
}
if address.Type != "contact" {
t.Errorf("Contact address was not of type contact, was %s", address.Type)
}
if address.Email != "[email protected]" {
t.Errorf("Contact address had wrong Email")
}
if address.UserID != "aaaa" {
t.Errorf("Contact address had wrong UserID")
}
}
type TestContactAPI struct {
t *testing.T
}
func (t TestContactAPI) find(params UserIdentifiers) (Contact, error) {
return Contact{ID: params.ID, Email: params.Email, UserID: params.UserID}, nil
}
func (t TestContactAPI) list(params contactListParams) (ContactList, error) {
return ContactList{Contacts: []Contact{Contact{ID: "46adad3f09126dca", Email: "[email protected]", UserID: "aa123"}}}, nil
}
func (t TestContactAPI) scroll(scrollParam string) (ContactList, error) {
return ContactList{Contacts: []Contact{Contact{ID: "46adad3f09126dca", Email: "[email protected]", UserID: "aa123"}}}, nil
}
func (t TestContactAPI) create(c *Contact) (Contact, error) {
return Contact{ID: c.ID, Email: c.Email, UserID: uuid.New()}, nil
}
func (t TestContactAPI) update(c *Contact) (Contact, error) {
return Contact{ID: c.ID, Email: c.Email, UserID: c.UserID}, nil
}
func (t TestContactAPI) convert(c *Contact, u *User) (User, error) {
return User{ID: u.ID, Email: c.Email, UserID: u.UserID}, nil
}
func (t TestContactAPI) delete(id string) (Contact, error) {
return Contact{ID: id}, nil
}