forked from kevinburke/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prices_number_test.go
77 lines (70 loc) · 2.27 KB
/
prices_number_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
package twilio
import (
"context"
"net/url"
"testing"
)
func TestGetPhoneNumberPriceGB(t *testing.T) {
t.Parallel()
client, server := getServer(phoneNumberPriceGB)
defer server.Close()
isoCountry := "GB"
expectedCountryName := "United Kingdom"
expectedPriceUnit := "USD"
numPrice, err := client.Pricing.PhoneNumbers.Countries.Get(context.Background(), isoCountry, nil)
if err != nil {
t.Fatal(err)
}
if numPrice == nil {
t.Fatal("expected voice price to be returned")
}
if numPrice.Country != expectedCountryName {
t.Errorf("Expected voice price country to be %s, but got %s\n", expectedCountryName, numPrice.Country)
}
if numPrice.IsoCountry != isoCountry {
t.Errorf("Expected voice price iso country to be %s, but got %s\n", isoCountry, numPrice.IsoCountry)
}
if numPrice.PriceUnit != expectedPriceUnit {
t.Errorf("Expected voice price unit to be %s, but got %s\n", expectedPriceUnit, numPrice.PriceUnit)
}
if numPrice.PhoneNumberPrices == nil {
t.Error("Expected voice price to contain PhoneNumberPrices")
}
numTypePriceMap := make(map[string]bool)
for _, price := range numPrice.PhoneNumberPrices {
numTypePriceMap[price.NumberType] = true
}
// numTypePriceMap => map[mobile:true national:true toll free:true local:true]
_, ok := numTypePriceMap["local"]
if ok == false {
t.Error("Expected number price to contain a price for a local number")
}
}
func TestGetPhoneNumbersPricePage(t *testing.T) {
t.Parallel()
client, server := getServer(phoneNumberCountriesPage)
defer server.Close()
data := url.Values{"PageSize": []string{"10"}}
page, err := client.Pricing.PhoneNumbers.Countries.GetPage(context.Background(), data)
if err != nil {
t.Fatal(err)
}
if len(page.Countries) == 0 {
t.Error("expected to get a list of countries, got back 0")
}
if len(page.Countries) != 10 {
t.Errorf("expected 10 countries, got %d", len(page.Countries))
}
if page.Meta.Key != "countries" {
t.Errorf("expected Key to be 'countries', got %s", page.Meta.Key)
}
if page.Meta.PageSize != 10 {
t.Errorf("expected PageSize to be 10, got %d", page.Meta.PageSize)
}
if page.Meta.Page != 0 {
t.Errorf("expected Page to be 0, got %d", page.Meta.Page)
}
if page.Meta.PreviousPageURL.Valid != false {
t.Errorf("expected previousPage.Valid to be false, got true")
}
}