-
Notifications
You must be signed in to change notification settings - Fork 474
/
Copy pathclient_test.go
41 lines (34 loc) · 932 Bytes
/
client_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
package filelink
import (
"testing"
assert "github.com/stretchr/testify/require"
stripe "github.com/stripe/stripe-go/v82"
_ "github.com/stripe/stripe-go/v82/testing"
)
func TestFileLinkGet(t *testing.T) {
fileLink, err := Get("link_123", nil)
assert.Nil(t, err)
assert.NotNil(t, fileLink)
}
func TestFileLinkList(t *testing.T) {
i := List(&stripe.FileLinkListParams{})
// Verify that we can get at least one fileLink
assert.True(t, i.Next())
assert.Nil(t, i.Err())
assert.NotNil(t, i.FileLink())
assert.NotNil(t, i.FileLinkList())
}
func TestFileLinkNew(t *testing.T) {
fileLink, err := New(&stripe.FileLinkParams{
File: stripe.String("file_123"),
})
assert.Nil(t, err)
assert.NotNil(t, fileLink)
}
func TestFileLinkUpdate(t *testing.T) {
params := &stripe.FileLinkParams{}
params.AddMetadata("key", "value")
fileLink, err := Update("link_123", params)
assert.Nil(t, err)
assert.NotNil(t, fileLink)
}