-
Notifications
You must be signed in to change notification settings - Fork 2
/
transaction_test.go
90 lines (76 loc) · 1.82 KB
/
transaction_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
//go:build integration
// +build integration
package nodeless
import (
"context"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetTransactions(t *testing.T) {
var tests = []struct {
name string
// Only expecting a single store from the testnet account
transaction Transaction
err error
}{
{"basic", Transaction{ID: integrationSecrets.TransactionID}, nil},
}
client, err := New(Config{
APIKey: integrationSecrets.APIKey,
UseTestnet: true,
})
assert.NoError(t, err)
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ctx := context.Background()
transactions, err := client.GetTransactions(ctx)
if err != nil {
assert.Equal(t, tt.err, err)
return
}
assert.NoError(t, err)
assert.NotNil(t, transactions)
var expectedTx *Transaction
for _, tx := range transactions {
if strings.EqualFold(tx.ID, tt.transaction.ID) {
expectedTx = &tx
break
}
}
if expectedTx == nil {
t.Errorf("did not get expected transaction %s", tt.transaction.ID)
t.Logf("got: %#v\n", transactions)
return
}
})
}
}
func TestGetTransaction(t *testing.T) {
var tests = []struct {
name string
transaction Transaction
err error
}{
{"basic", Transaction{ID: integrationSecrets.TransactionID}, nil},
}
client, err := New(Config{
APIKey: integrationSecrets.APIKey,
UseTestnet: true,
})
assert.NoError(t, err)
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ctx := context.Background()
transaction, err := client.GetTransaction(ctx, tt.transaction.ID)
if err != nil {
assert.Equal(t, tt.err, err)
return
}
assert.NoError(t, err)
assert.NotNil(t, transaction)
assert.Equal(t, tt.transaction.ID, transaction.ID)
assert.NotEmpty(t, transaction.CreatedAt)
})
}
}