mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
package max
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRewardService_GetRewardsRequest(t *testing.T) {
|
|
key, secret, ok := integrationTestConfigured(t, "MAX")
|
|
if !ok {
|
|
t.SkipNow()
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
client := NewRestClient(ProductionAPIURL)
|
|
client.Auth(key, secret)
|
|
|
|
req := client.RewardService.NewGetRewardsRequest()
|
|
rewards, err := req.Do(ctx)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, rewards)
|
|
assert.NotEmpty(t, rewards)
|
|
|
|
t.Logf("rewards: %+v", rewards)
|
|
}
|
|
|
|
func TestRewardService_GetRewardsOfTypeRequest(t *testing.T) {
|
|
key, secret, ok := integrationTestConfigured(t, "MAX")
|
|
if !ok {
|
|
t.SkipNow()
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
client := NewRestClient(ProductionAPIURL)
|
|
client.Auth(key, secret)
|
|
|
|
req := client.RewardService.NewGetRewardsOfTypeRequest(RewardCommission)
|
|
rewards, err := req.Do(ctx)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, rewards)
|
|
assert.NotEmpty(t, rewards)
|
|
|
|
t.Logf("rewards: %+v", rewards)
|
|
|
|
for _, reward := range rewards {
|
|
assert.Equal(t, RewardCommission, reward.Type)
|
|
}
|
|
}
|