2019-12-05 13:53:10 +00:00
|
|
|
package keeper_test
|
2019-11-25 19:46:02 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2019-12-21 01:04:04 +00:00
|
|
|
"time"
|
2019-11-25 19:46:02 +00:00
|
|
|
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
2019-12-05 13:53:10 +00:00
|
|
|
|
|
|
|
"github.com/kava-labs/kava/app"
|
|
|
|
"github.com/kava-labs/kava/x/auction/keeper"
|
|
|
|
"github.com/kava-labs/kava/x/auction/types"
|
2019-11-25 19:46:02 +00:00
|
|
|
)
|
|
|
|
|
2019-12-21 01:04:04 +00:00
|
|
|
// func TestKeeper_ForwardAuction(t *testing.T) {
|
|
|
|
// // Setup
|
|
|
|
// _, addrs := app.GeneratePrivKeyAddressPairs(2)
|
|
|
|
// seller := addrs[0]
|
|
|
|
// buyer := addrs[1]
|
|
|
|
|
|
|
|
// tApp := app.NewTestApp()
|
|
|
|
// tApp.InitializeFromGenesisStates(
|
|
|
|
// app.NewAuthGenState(addrs, []sdk.Coins{cs(c("token1", 100), c("token2", 100)), cs(c("token1", 100), c("token2", 100))}),
|
|
|
|
// )
|
|
|
|
|
|
|
|
// ctx := tApp.NewContext(false, abci.Header{})
|
|
|
|
// keeper := tApp.GetAuctionKeeper()
|
|
|
|
|
|
|
|
// // Create an auction (lot: 20 t1, initialBid: 0 t2)
|
|
|
|
// auctionID, err := keeper.StartForwardAuction(ctx, seller, c("token1", 20), c("token2", 0)) // lot, initialBid
|
|
|
|
// require.NoError(t, err)
|
|
|
|
// // Check seller's coins have decreased
|
|
|
|
// tApp.CheckBalance(t, ctx, seller, cs(c("token1", 80), c("token2", 100)))
|
|
|
|
|
|
|
|
// // PlaceBid (bid: 10 t2, lot: same as starting)
|
|
|
|
// require.NoError(t, keeper.PlaceBid(ctx, 0, buyer, c("token2", 10), c("token1", 20))) // bid, lot
|
|
|
|
// // Check buyer's coins have decreased
|
|
|
|
// tApp.CheckBalance(t, ctx, buyer, cs(c("token1", 100), c("token2", 90)))
|
|
|
|
// // Check seller's coins have increased
|
|
|
|
// tApp.CheckBalance(t, ctx, seller, cs(c("token1", 80), c("token2", 110)))
|
|
|
|
|
|
|
|
// // Close auction at just after auction expiry
|
|
|
|
// ctx = ctx.WithBlockHeight(int64(types.DefaultMaxBidDuration))
|
|
|
|
// require.NoError(t, keeper.CloseAuction(ctx, auctionID))
|
|
|
|
// // Check buyer's coins increased
|
|
|
|
// tApp.CheckBalance(t, ctx, buyer, cs(c("token1", 120), c("token2", 90)))
|
|
|
|
// }
|
|
|
|
|
|
|
|
// func TestKeeper_ReverseAuction(t *testing.T) {
|
|
|
|
// // Setup
|
|
|
|
// _, addrs := app.GeneratePrivKeyAddressPairs(2)
|
|
|
|
// seller := addrs[0]
|
|
|
|
// buyer := addrs[1]
|
|
|
|
|
|
|
|
// tApp := app.NewTestApp()
|
|
|
|
// tApp.InitializeFromGenesisStates(
|
|
|
|
// app.NewAuthGenState(addrs, []sdk.Coins{cs(c("token1", 100), c("token2", 100)), cs(c("token1", 100), c("token2", 100))}),
|
|
|
|
// )
|
|
|
|
|
|
|
|
// ctx := tApp.NewContext(false, abci.Header{})
|
|
|
|
// keeper := tApp.GetAuctionKeeper()
|
|
|
|
|
|
|
|
// // Start auction
|
|
|
|
// auctionID, err := keeper.StartReverseAuction(ctx, buyer, c("token1", 20), c("token2", 99)) // buyer, bid, initialLot
|
|
|
|
// require.NoError(t, err)
|
|
|
|
// // Check buyer's coins have decreased
|
|
|
|
// tApp.CheckBalance(t, ctx, buyer, cs(c("token1", 100), c("token2", 1)))
|
|
|
|
|
|
|
|
// // Place a bid
|
|
|
|
// require.NoError(t, keeper.PlaceBid(ctx, 0, seller, c("token1", 20), c("token2", 10))) // bid, lot
|
|
|
|
// // Check seller's coins have decreased
|
|
|
|
// tApp.CheckBalance(t, ctx, seller, cs(c("token1", 80), c("token2", 100)))
|
|
|
|
// // Check buyer's coins have increased
|
|
|
|
// tApp.CheckBalance(t, ctx, buyer, cs(c("token1", 120), c("token2", 90)))
|
|
|
|
|
|
|
|
// // Close auction at just after auction expiry
|
|
|
|
// ctx = ctx.WithBlockHeight(int64(types.DefaultMaxBidDuration))
|
|
|
|
// require.NoError(t, keeper.CloseAuction(ctx, auctionID))
|
|
|
|
// // Check seller's coins increased
|
|
|
|
// tApp.CheckBalance(t, ctx, seller, cs(c("token1", 80), c("token2", 110)))
|
|
|
|
// }
|
|
|
|
|
|
|
|
// func TestKeeper_ForwardReverseAuction(t *testing.T) {
|
|
|
|
// // Setup
|
|
|
|
// _, addrs := app.GeneratePrivKeyAddressPairs(3)
|
|
|
|
// seller := addrs[0]
|
|
|
|
// buyer := addrs[1]
|
|
|
|
// recipient := addrs[2]
|
|
|
|
|
|
|
|
// tApp := app.NewTestApp()
|
|
|
|
// tApp.InitializeFromGenesisStates(
|
|
|
|
// app.NewAuthGenState(addrs, []sdk.Coins{cs(c("token1", 100), c("token2", 100)), cs(c("token1", 100), c("token2", 100)), cs(c("token1", 100), c("token2", 100))}),
|
|
|
|
// )
|
|
|
|
|
|
|
|
// ctx := tApp.NewContext(false, abci.Header{})
|
|
|
|
// keeper := tApp.GetAuctionKeeper()
|
|
|
|
|
|
|
|
// // Start auction
|
|
|
|
// auctionID, err := keeper.StartForwardReverseAuction(ctx, seller, c("token1", 20), c("token2", 50), recipient) // seller, lot, maxBid, otherPerson
|
|
|
|
// require.NoError(t, err)
|
|
|
|
// // Check seller's coins have decreased
|
|
|
|
// tApp.CheckBalance(t, ctx, seller, cs(c("token1", 80), c("token2", 100)))
|
|
|
|
|
|
|
|
// // Place a bid
|
|
|
|
// require.NoError(t, keeper.PlaceBid(ctx, 0, buyer, c("token2", 50), c("token1", 15))) // bid, lot
|
|
|
|
// // Check bidder's coins have decreased
|
|
|
|
// tApp.CheckBalance(t, ctx, buyer, cs(c("token1", 100), c("token2", 50)))
|
|
|
|
// // Check seller's coins have increased
|
|
|
|
// tApp.CheckBalance(t, ctx, seller, cs(c("token1", 80), c("token2", 150)))
|
|
|
|
// // Check "recipient" has received coins
|
|
|
|
// tApp.CheckBalance(t, ctx, recipient, cs(c("token1", 105), c("token2", 100)))
|
|
|
|
|
|
|
|
// // Close auction at just after auction expiry
|
|
|
|
// ctx = ctx.WithBlockHeight(int64(types.DefaultMaxBidDuration))
|
|
|
|
// require.NoError(t, keeper.CloseAuction(ctx, auctionID))
|
|
|
|
// // Check buyer's coins increased
|
|
|
|
// tApp.CheckBalance(t, ctx, buyer, cs(c("token1", 115), c("token2", 50)))
|
|
|
|
// }
|
|
|
|
|
|
|
|
func SetGetDeleteAuction(t *testing.T) {
|
2019-11-25 19:46:02 +00:00
|
|
|
// setup keeper, create auction
|
2019-12-05 13:53:10 +00:00
|
|
|
tApp := app.NewTestApp()
|
|
|
|
keeper := tApp.GetAuctionKeeper()
|
|
|
|
ctx := tApp.NewContext(true, abci.Header{})
|
2019-12-21 01:04:04 +00:00
|
|
|
someTime := time.Date(43, time.January, 1, 0, 0, 0, 0, time.UTC) // need to specify UTC as tz info is lost on unmarshal
|
|
|
|
auction := types.NewForwardAuction("some_module", c("usdx", 100), "kava", someTime)
|
2019-11-25 19:46:02 +00:00
|
|
|
id := types.ID(5)
|
|
|
|
auction.SetID(id)
|
|
|
|
|
|
|
|
// write and read from store
|
|
|
|
keeper.SetAuction(ctx, &auction)
|
|
|
|
readAuction, found := keeper.GetAuction(ctx, id)
|
|
|
|
|
|
|
|
// check before and after match
|
|
|
|
require.True(t, found)
|
|
|
|
require.Equal(t, &auction, readAuction)
|
|
|
|
// check auction is in queue
|
2019-12-21 01:04:04 +00:00
|
|
|
// iter := keeper.GetQueueIterator(ctx, 100000)
|
|
|
|
// require.Equal(t, 1, len(convertIteratorToSlice(keeper, iter)))
|
|
|
|
// iter.Close()
|
2019-11-25 19:46:02 +00:00
|
|
|
|
|
|
|
// delete auction
|
2019-12-05 13:53:10 +00:00
|
|
|
keeper.DeleteAuction(ctx, id)
|
2019-11-25 19:46:02 +00:00
|
|
|
|
|
|
|
// check auction does not exist
|
|
|
|
_, found = keeper.GetAuction(ctx, id)
|
|
|
|
require.False(t, found)
|
|
|
|
// check auction not in queue
|
2019-12-21 01:04:04 +00:00
|
|
|
// iter = keeper.GetQueueIterator(ctx, 100000)
|
|
|
|
// require.Equal(t, 0, len(convertIteratorToSlice(keeper, iter)))
|
|
|
|
// iter.Close()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIncrementNextAuctionID(t *testing.T) {
|
|
|
|
// setup keeper
|
|
|
|
tApp := app.NewTestApp()
|
|
|
|
keeper := tApp.GetAuctionKeeper()
|
|
|
|
ctx := tApp.NewContext(true, abci.Header{})
|
|
|
|
|
|
|
|
// store id
|
|
|
|
id := types.ID(123456)
|
|
|
|
keeper.SetNextAuctionID(ctx, id)
|
|
|
|
|
|
|
|
require.NoError(t, keeper.IncrementNextAuctionID(ctx))
|
|
|
|
|
|
|
|
// check id was incremented
|
|
|
|
readID, err := keeper.GetNextAuctionID(ctx)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, id+1, readID)
|
2019-11-25 19:46:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-12-21 01:04:04 +00:00
|
|
|
// func TestIterateAuctions(t *testing.T) {
|
|
|
|
// // setup keeper
|
|
|
|
// tApp := app.NewTestApp()
|
|
|
|
// keeper := tApp.GetAuctionKeeper()
|
|
|
|
// ctx := tApp.NewContext(true, abci.Header{})
|
|
|
|
|
|
|
|
// auctions := []types.Auction{
|
|
|
|
// &types.ForwardAuction{},
|
|
|
|
// }
|
|
|
|
// for _, a := range auctions {
|
|
|
|
// keeper.SetAuction(ctx, a)
|
|
|
|
// }
|
|
|
|
|
|
|
|
// var readAuctions []types.Auction
|
|
|
|
// keeper.IterateAuctions(ctx, func(a types.Auction) bool {
|
|
|
|
// readAuctions = append(readAuctions, a)
|
|
|
|
// return false
|
|
|
|
// })
|
|
|
|
|
|
|
|
// require.Equal(t, auctions, readAuctions)
|
|
|
|
// }
|
|
|
|
|
|
|
|
func TestIterateAuctionsByTime(t *testing.T) {
|
2019-11-25 19:46:02 +00:00
|
|
|
// setup keeper
|
2019-12-05 13:53:10 +00:00
|
|
|
tApp := app.NewTestApp()
|
|
|
|
keeper := tApp.GetAuctionKeeper()
|
|
|
|
ctx := tApp.NewContext(true, abci.Header{})
|
|
|
|
|
2019-12-21 01:04:04 +00:00
|
|
|
// create a list of times
|
|
|
|
queue := []struct {
|
|
|
|
endTime time.Time
|
2019-11-25 19:46:02 +00:00
|
|
|
auctionID types.ID
|
2019-12-21 01:04:04 +00:00
|
|
|
}{
|
|
|
|
{time.Date(84, time.January, 1, 0, 0, 0, 0, time.UTC), 34345345},
|
|
|
|
{time.Date(98, time.January, 2, 0, 0, 0, 0, time.UTC), 5},
|
|
|
|
{time.Date(98, time.January, 2, 13, 5, 0, 0, time.UTC), 6},
|
|
|
|
{time.Date(98, time.January, 2, 16, 0, 0, 0, time.UTC), 1},
|
|
|
|
{time.Date(98, time.January, 2, 16, 0, 0, 0, time.UTC), 3},
|
|
|
|
{time.Date(98, time.January, 2, 16, 0, 0, 0, time.UTC), 4},
|
|
|
|
{time.Date(98, time.January, 2, 16, 0, 0, 1, time.UTC), 0}, // TODO tidy up redundant entries
|
|
|
|
}
|
|
|
|
cutoffTime := time.Date(98, time.January, 2, 16, 0, 0, 0, time.UTC)
|
|
|
|
|
|
|
|
var expectedQueue []types.ID
|
|
|
|
for _, i := range queue {
|
|
|
|
if i.endTime.After(cutoffTime) { // only append items where endTime ≤ cutoffTime
|
|
|
|
break
|
|
|
|
}
|
|
|
|
expectedQueue = append(expectedQueue, i.auctionID)
|
2019-11-25 19:46:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// write and read queue
|
2019-12-21 01:04:04 +00:00
|
|
|
for _, v := range queue {
|
2019-12-05 13:53:10 +00:00
|
|
|
keeper.InsertIntoQueue(ctx, v.endTime, v.auctionID)
|
2019-11-25 19:46:02 +00:00
|
|
|
}
|
2019-12-21 01:04:04 +00:00
|
|
|
var readQueue []types.ID
|
|
|
|
keeper.IterateAuctionsByTime(ctx, cutoffTime, func(id types.ID) bool {
|
|
|
|
readQueue = append(readQueue, id)
|
|
|
|
return false
|
|
|
|
})
|
2019-11-25 19:46:02 +00:00
|
|
|
|
2019-12-21 01:04:04 +00:00
|
|
|
require.Equal(t, expectedQueue, readQueue)
|
2019-11-25 19:46:02 +00:00
|
|
|
}
|
|
|
|
|
2019-12-05 13:53:10 +00:00
|
|
|
func convertIteratorToSlice(keeper keeper.Keeper, iterator sdk.Iterator) []types.ID {
|
2019-11-25 19:46:02 +00:00
|
|
|
var queue []types.ID
|
|
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
|
|
var auctionID types.ID
|
2019-12-05 13:53:10 +00:00
|
|
|
types.ModuleCdc.MustUnmarshalBinaryLengthPrefixed(iterator.Value(), &auctionID)
|
2019-11-25 19:46:02 +00:00
|
|
|
queue = append(queue, auctionID)
|
|
|
|
}
|
|
|
|
return queue
|
|
|
|
}
|
2019-12-05 13:53:10 +00:00
|
|
|
|
|
|
|
func c(denom string, amount int64) sdk.Coin { return sdk.NewInt64Coin(denom, amount) }
|
|
|
|
func cs(coins ...sdk.Coin) sdk.Coins { return sdk.NewCoins(coins...) }
|