forked from saintpete/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
accounts_test.go
119 lines (111 loc) · 2.74 KB
/
accounts_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
package twilio
import (
"net/url"
"strconv"
"testing"
"time"
"golang.org/x/net/context"
)
func TestAccountGet(t *testing.T) {
t.Parallel()
client, server := getServer(accountInstance)
defer server.Close()
sid := "AC58f1e8f2b1c6b88ca90a012a4be0c279"
acct, err := client.Accounts.Get(context.Background(), sid)
if err != nil {
t.Fatal(err)
}
if acct.Sid != sid {
t.Errorf("wrong sid")
}
if acct.Type != "Full" {
t.Errorf("wrong type")
}
}
func TestAccountCreate(t *testing.T) {
t.Parallel()
client, server := getServer(accountCreateResponse)
defer server.Close()
data := url.Values{}
newname := "new account name 1478105087"
data.Set("FriendlyName", newname)
acct, err := client.Accounts.Create(context.Background(), data)
if err != nil {
t.Fatal(err)
}
if acct.FriendlyName != newname {
t.Errorf("new account name incorrect")
}
}
func TestAccountUpdateLive(t *testing.T) {
if testing.Short() {
t.Skip("skipping HTTP request in short mode")
}
t.Parallel()
sid := "ACdd54a711c3d4031ac500c5236ab121d7"
data := url.Values{}
newname := "new account name " + strconv.FormatInt(time.Now().UTC().Unix(), 10)
data.Set("FriendlyName", newname)
acct, err := envClient.Accounts.Update(context.Background(), sid, data)
if err != nil {
t.Fatal(err)
}
if acct.FriendlyName != newname {
t.Errorf("new account name incorrect")
}
}
func TestAccountUpdateInMemory(t *testing.T) {
t.Parallel()
client, server := getServer(accountInstance)
defer server.Close()
sid := "AC58f1e8f2b1c6b88ca90a012a4be0c279"
data := url.Values{}
data.Set("FriendlyName", "kevin account woo")
acct, err := client.Accounts.Update(context.Background(), sid, data)
if err != nil {
t.Fatal(err)
}
if acct.FriendlyName != "kevin account woo" {
t.Errorf("new account name incorrect")
}
}
func TestAccountGetPage(t *testing.T) {
t.Parallel()
client, server := getServer(accountList)
defer server.Close()
data := url.Values{}
data.Set("PageSize", "2")
page, err := client.Accounts.GetPage(context.Background(), data)
if err != nil {
t.Fatal(err)
}
if len(page.Accounts) != 2 {
t.Errorf("expected accounts len to be 2")
}
if page.Accounts[0].Sid != "AC0cd9be8fd5e6e4fa0a04f50ac1caca4e" {
t.Errorf("wrong sid")
}
}
func TestAccountGetPageIterator(t *testing.T) {
if testing.Short() {
t.Skip("skipping HTTP request in short mode")
}
t.Parallel()
data := url.Values{}
data.Set("PageSize", "2")
iter := envClient.Accounts.GetPageIterator(data)
page, err := iter.Next(context.Background())
if err != nil {
t.Fatal(err)
}
if len(page.Accounts) != 2 {
t.Errorf("expected accounts len to be 2")
}
page, err = iter.Next(context.Background())
if err != nil {
t.Fatal(err)
}
if len(page.Accounts) != 2 {
t.Errorf("expected accounts len to be 2")
}
}