storj/satellite/payments/coinpayments/transactions_test.go
Egon Elbre 2268cc1df3 all: fix linter complaints
Change-Id: Ia01404dbb6bdd19a146fa10ff7302e08f87a8c95
2020-10-13 15:59:01 +03:00

49 lines
1.1 KiB
Go

// Copyright (C) 2020 Storj Labs, Inc.
// See LICENSE for copying information.
package coinpayments
import (
"math/big"
"testing"
"github.com/stretchr/testify/assert"
"storj.io/common/testcontext"
)
func TestListInfos(t *testing.T) {
// This test is deliberately skipped as it requires credentials to coinpayments.net
t.SkipNow()
ctx := testcontext.New(t)
defer ctx.Cleanup()
payments := NewClient(Credentials{
PublicKey: "ask-littleskunk-on-keybase",
PrivateKey: "ask-littleskunk-on-keybase",
}).Transactions()
// verify that bad ids fail
infos, err := payments.ListInfos(ctx, TransactionIDList{"an_unlikely_id"})
assert.Error(t, err)
assert.Len(t, infos, 0)
// verify that ListInfos can handle more than 25 good ids
ids := TransactionIDList{}
for x := 0; x < 27; x++ {
tx, err := payments.Create(ctx,
&CreateTX{
Amount: *big.NewFloat(100),
CurrencyIn: CurrencySTORJ,
CurrencyOut: CurrencySTORJ,
BuyerEmail: "test@test.com",
},
)
ids = append(ids, tx.ID)
assert.NoError(t, err)
}
infos, err = payments.ListInfos(ctx, ids)
assert.NoError(t, err)
assert.Len(t, infos, 27)
}