|
@ -1,15 +1,10 @@ |
|
|
package eth |
|
|
package eth |
|
|
|
|
|
|
|
|
import ( |
|
|
import ( |
|
|
"io/ioutil" |
|
|
|
|
|
|
|
|
"context" |
|
|
"math/big" |
|
|
"math/big" |
|
|
"os" |
|
|
|
|
|
"testing" |
|
|
"testing" |
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/keystore" |
|
|
|
|
|
"github.com/ethereum/go-ethereum/common" |
|
|
|
|
|
"github.com/ethereum/go-ethereum/crypto" |
|
|
|
|
|
"github.com/ethereum/go-ethereum/ethclient" |
|
|
|
|
|
"github.com/stretchr/testify/assert" |
|
|
"github.com/stretchr/testify/assert" |
|
|
"github.com/stretchr/testify/require" |
|
|
"github.com/stretchr/testify/require" |
|
|
) |
|
|
) |
|
@ -24,264 +19,207 @@ var allocationRatioConst [3]uint16 = [3]uint16{4000, 4000, 2000} |
|
|
|
|
|
|
|
|
var auctionClient *AuctionClient |
|
|
var auctionClient *AuctionClient |
|
|
|
|
|
|
|
|
/*var donationAddressStr = os.Getenv("DONATION_ADDRESS") |
|
|
|
|
|
var bootCoordinatorStr = os.Getenv("BOOT_COORDINATOR_ADDRESS") |
|
|
|
|
|
var auctionAddressStr = os.Getenv("AUCTION_ADDRESS") |
|
|
|
|
|
var tokenHezStr = os.Getenv("TOKEN_ADDRESS") |
|
|
|
|
|
var hermezStr = os.Getenv("HERMEZ_ADDRESS") |
|
|
|
|
|
var governanceAddressStr = os.Getenv("GOV_ADDRESS") |
|
|
|
|
|
var governancePrivateKey = os.Getenv("GOV_PK") |
|
|
|
|
|
var ehtClientDialURL = os.Getenv("ETHCLIENT_DIAL_URL")*/ |
|
|
|
|
|
var integration = os.Getenv("INTEGRATION") |
|
|
|
|
|
|
|
|
|
|
|
var donationAddressStr = "0x6c365935CA8710200C7595F0a72EB6023A7706Cd" |
|
|
|
|
|
var bootCoordinatorStr = "0xc783df8a850f42e7f7e57013759c285caa701eb6" |
|
|
|
|
|
var auctionAddressStr = "0x3619DbE27d7c1e7E91aA738697Ae7Bc5FC3eACA5" |
|
|
|
|
|
var tokenHezStr = "0xf4e77E5Da47AC3125140c470c71cBca77B5c638c" //nolint:gosec
|
|
|
|
|
|
var hermezStr = "0xc4905364b78a742ccce7B890A89514061E47068D" |
|
|
|
|
|
var governanceAddressStr = "0xead9c93b79ae7c1591b1fb5323bd777e86e150d4" |
|
|
|
|
|
var governancePrivateKey = "d49743deccbccc5dc7baa8e69e5be03298da8688a15dd202e20f15d5e0e9a9fb" |
|
|
|
|
|
var ehtClientDialURL = "http://localhost:8545" |
|
|
|
|
|
var DONATION = common.HexToAddress(donationAddressStr) |
|
|
|
|
|
var BOOTCOORDINATOR = common.HexToAddress(bootCoordinatorStr) |
|
|
|
|
|
var TOKENHEZ = common.HexToAddress(tokenHezStr) |
|
|
|
|
|
var HERMEZROLLUP = common.HexToAddress(hermezStr) |
|
|
|
|
|
|
|
|
var genesisBlock = 91 |
|
|
|
|
|
|
|
|
var minBidStr = "10000000000000000000" |
|
|
var minBidStr = "10000000000000000000" |
|
|
var URL = "http://localhost:3000" |
|
|
var URL = "http://localhost:3000" |
|
|
var newURL = "http://localhost:3002" |
|
|
var newURL = "http://localhost:3002" |
|
|
var BLOCKSPERSLOT = uint8(40) |
|
|
var BLOCKSPERSLOT = uint8(40) |
|
|
var password = "pass" |
|
|
|
|
|
|
|
|
|
|
|
func TestNewAction(t *testing.T) { |
|
|
|
|
|
key, err := crypto.HexToECDSA(governancePrivateKey) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
dir, err := ioutil.TempDir("", "tmpks") |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
ks := keystore.NewKeyStore(dir, keystore.StandardScryptN, keystore.StandardScryptP) |
|
|
|
|
|
account, err := ks.ImportECDSA(key, password) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
err = ks.Unlock(account, password) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
// Init eth client
|
|
|
|
|
|
ethClient, err := ethclient.Dial(ehtClientDialURL) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
ethereumClient := NewEthereumClient(ethClient, &account, ks, nil) |
|
|
|
|
|
auctionAddress := common.HexToAddress(auctionAddressStr) |
|
|
|
|
|
tokenAddress := common.HexToAddress(tokenHezStr) |
|
|
|
|
|
if integration != "" { |
|
|
|
|
|
auctionClient = NewAuctionClient(ethereumClient, auctionAddress, tokenAddress) |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func TestAuctionGetCurrentSlotNumber(t *testing.T) { |
|
|
func TestAuctionGetCurrentSlotNumber(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
currentSlot, err := auctionClient.AuctionGetCurrentSlotNumber() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
currentSlotInt := int(currentSlot) |
|
|
|
|
|
assert.Equal(t, currentSlotConst, currentSlotInt) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
currentSlot, err := auctionClient.AuctionGetCurrentSlotNumber() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
currentSlotInt := int(currentSlot) |
|
|
|
|
|
assert.Equal(t, currentSlotConst, currentSlotInt) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionConstants(t *testing.T) { |
|
|
func TestAuctionConstants(t *testing.T) { |
|
|
INITMINBID := new(big.Int) |
|
|
INITMINBID := new(big.Int) |
|
|
INITMINBID.SetString(minBidStr, 10) |
|
|
INITMINBID.SetString(minBidStr, 10) |
|
|
if auctionClient != nil { |
|
|
|
|
|
auctionConstants, err := auctionClient.AuctionConstants() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, auctionConstants.BlocksPerSlot, BLOCKSPERSLOT) |
|
|
|
|
|
// assert.Equal(t, auctionConstants.GenesisBlockNum, GENESISBLOCKNUM)
|
|
|
|
|
|
assert.Equal(t, auctionConstants.HermezRollup, HERMEZROLLUP) |
|
|
|
|
|
assert.Equal(t, auctionConstants.InitialMinimalBidding, INITMINBID) |
|
|
|
|
|
assert.Equal(t, auctionConstants.TokenHEZ, TOKENHEZ) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auctionConstants, err := auctionClient.AuctionConstants() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, auctionConstants.BlocksPerSlot, BLOCKSPERSLOT) |
|
|
|
|
|
// assert.Equal(t, auctionConstants.GenesisBlockNum, GENESISBLOCKNUM)
|
|
|
|
|
|
assert.Equal(t, auctionConstants.HermezRollup, hermezRollupAddressConst) |
|
|
|
|
|
assert.Equal(t, auctionConstants.InitialMinimalBidding, INITMINBID) |
|
|
|
|
|
assert.Equal(t, auctionConstants.TokenHEZ, tokenHezAddressConst) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionVariables(t *testing.T) { |
|
|
func TestAuctionVariables(t *testing.T) { |
|
|
INITMINBID := new(big.Int) |
|
|
INITMINBID := new(big.Int) |
|
|
INITMINBID.SetString(minBidStr, 10) |
|
|
INITMINBID.SetString(minBidStr, 10) |
|
|
defaultSlotSetBid := [6]*big.Int{INITMINBID, INITMINBID, INITMINBID, INITMINBID, INITMINBID, INITMINBID} |
|
|
defaultSlotSetBid := [6]*big.Int{INITMINBID, INITMINBID, INITMINBID, INITMINBID, INITMINBID, INITMINBID} |
|
|
if auctionClient != nil { |
|
|
|
|
|
auctionVariables, err := auctionClient.AuctionVariables() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, auctionVariables.AllocationRatio, allocationRatioConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.BootCoordinator, BOOTCOORDINATOR) |
|
|
|
|
|
assert.Equal(t, auctionVariables.ClosedAuctionSlots, closedAuctionSlotsConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.DefaultSlotSetBid, defaultSlotSetBid) |
|
|
|
|
|
assert.Equal(t, auctionVariables.DonationAddress, DONATION) |
|
|
|
|
|
assert.Equal(t, auctionVariables.OpenAuctionSlots, openAuctionSlotsConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.Outbidding, outbiddingConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.SlotDeadline, slotDeadlineConst) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auctionVariables, err := auctionClient.AuctionVariables() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, auctionVariables.AllocationRatio, allocationRatioConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.BootCoordinator, bootCoordinatorAddressConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.ClosedAuctionSlots, closedAuctionSlotsConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.DefaultSlotSetBid, defaultSlotSetBid) |
|
|
|
|
|
assert.Equal(t, auctionVariables.DonationAddress, donationAddressConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.OpenAuctionSlots, openAuctionSlotsConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.Outbidding, outbiddingConst) |
|
|
|
|
|
assert.Equal(t, auctionVariables.SlotDeadline, slotDeadlineConst) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetSlotDeadline(t *testing.T) { |
|
|
func TestAuctionGetSlotDeadline(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
slotDeadline, err := auctionClient.AuctionGetSlotDeadline() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, slotDeadlineConst, slotDeadline) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
slotDeadline, err := auctionClient.AuctionGetSlotDeadline() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, slotDeadlineConst, slotDeadline) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionSetSlotDeadline(t *testing.T) { |
|
|
func TestAuctionSetSlotDeadline(t *testing.T) { |
|
|
newSlotDeadline := uint8(25) |
|
|
newSlotDeadline := uint8(25) |
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionSetSlotDeadline(newSlotDeadline) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
slotDeadline, err := auctionClient.AuctionGetSlotDeadline() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newSlotDeadline, slotDeadline) |
|
|
|
|
|
_, err = auctionClient.AuctionSetSlotDeadline(slotDeadlineConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionSetSlotDeadline(newSlotDeadline) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
slotDeadline, err := auctionClient.AuctionGetSlotDeadline() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newSlotDeadline, slotDeadline) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, newSlotDeadline, auctionEvents.NewSlotDeadline[0].NewSlotDeadline) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetOpenAuctionSlots(t *testing.T) { |
|
|
func TestAuctionGetOpenAuctionSlots(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
openAuctionSlots, err := auctionClient.AuctionGetOpenAuctionSlots() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, openAuctionSlotsConst, openAuctionSlots) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
openAuctionSlots, err := auctionClient.AuctionGetOpenAuctionSlots() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, openAuctionSlotsConst, openAuctionSlots) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionSetOpenAuctionSlots(t *testing.T) { |
|
|
func TestAuctionSetOpenAuctionSlots(t *testing.T) { |
|
|
newOpenAuctionSlots := uint16(4500) |
|
|
newOpenAuctionSlots := uint16(4500) |
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionSetOpenAuctionSlots(newOpenAuctionSlots) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
openAuctionSlots, err := auctionClient.AuctionGetOpenAuctionSlots() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newOpenAuctionSlots, openAuctionSlots) |
|
|
|
|
|
_, err = auctionClient.AuctionSetOpenAuctionSlots(openAuctionSlotsConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionSetOpenAuctionSlots(newOpenAuctionSlots) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
openAuctionSlots, err := auctionClient.AuctionGetOpenAuctionSlots() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newOpenAuctionSlots, openAuctionSlots) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, newOpenAuctionSlots, auctionEvents.NewOpenAuctionSlots[0].NewOpenAuctionSlots) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetClosedAuctionSlots(t *testing.T) { |
|
|
func TestAuctionGetClosedAuctionSlots(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
closedAuctionSlots, err := auctionClient.AuctionGetClosedAuctionSlots() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, closedAuctionSlotsConst, closedAuctionSlots) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
closedAuctionSlots, err := auctionClient.AuctionGetClosedAuctionSlots() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, closedAuctionSlotsConst, closedAuctionSlots) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionSetClosedAuctionSlots(t *testing.T) { |
|
|
func TestAuctionSetClosedAuctionSlots(t *testing.T) { |
|
|
newClosedAuctionSlots := uint16(5) |
|
|
|
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionSetClosedAuctionSlots(newClosedAuctionSlots) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
closedAuctionSlots, err := auctionClient.AuctionGetClosedAuctionSlots() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newClosedAuctionSlots, closedAuctionSlots) |
|
|
|
|
|
_, err = auctionClient.AuctionSetClosedAuctionSlots(closedAuctionSlotsConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
newClosedAuctionSlots := uint16(1) |
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionSetClosedAuctionSlots(newClosedAuctionSlots) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
closedAuctionSlots, err := auctionClient.AuctionGetClosedAuctionSlots() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newClosedAuctionSlots, closedAuctionSlots) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, newClosedAuctionSlots, auctionEvents.NewClosedAuctionSlots[0].NewClosedAuctionSlots) |
|
|
|
|
|
_, err = auctionClient.AuctionSetClosedAuctionSlots(closedAuctionSlots) |
|
|
|
|
|
require.Nil(t, err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetOutbidding(t *testing.T) { |
|
|
func TestAuctionGetOutbidding(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
outbidding, err := auctionClient.AuctionGetOutbidding() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, outbiddingConst, outbidding) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
outbidding, err := auctionClient.AuctionGetOutbidding() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, outbiddingConst, outbidding) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionSetOutbidding(t *testing.T) { |
|
|
func TestAuctionSetOutbidding(t *testing.T) { |
|
|
newOutbidding := uint16(0xb) |
|
|
newOutbidding := uint16(0xb) |
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionSetOutbidding(newOutbidding) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
outbidding, err := auctionClient.AuctionGetOutbidding() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newOutbidding, outbidding) |
|
|
|
|
|
_, err = auctionClient.AuctionSetOutbidding(outbiddingConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionSetOutbidding(newOutbidding) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
outbidding, err := auctionClient.AuctionGetOutbidding() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newOutbidding, outbidding) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, newOutbidding, auctionEvents.NewOutbidding[0].NewOutbidding) |
|
|
|
|
|
_, err = auctionClient.AuctionSetOutbidding(outbiddingConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetAllocationRatio(t *testing.T) { |
|
|
func TestAuctionGetAllocationRatio(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
allocationRatio, err := auctionClient.AuctionGetAllocationRatio() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, allocationRatioConst, allocationRatio) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
allocationRatio, err := auctionClient.AuctionGetAllocationRatio() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, allocationRatioConst, allocationRatio) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionSetAllocationRatio(t *testing.T) { |
|
|
func TestAuctionSetAllocationRatio(t *testing.T) { |
|
|
newAllocationRatio := [3]uint16{3000, 3000, 4000} |
|
|
newAllocationRatio := [3]uint16{3000, 3000, 4000} |
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionSetAllocationRatio(newAllocationRatio) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
allocationRatio, err := auctionClient.AuctionGetAllocationRatio() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newAllocationRatio, allocationRatio) |
|
|
|
|
|
_, err = auctionClient.AuctionSetAllocationRatio(allocationRatioConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionSetAllocationRatio(newAllocationRatio) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
allocationRatio, err := auctionClient.AuctionGetAllocationRatio() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, newAllocationRatio, allocationRatio) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, newAllocationRatio, auctionEvents.NewAllocationRatio[0].NewAllocationRatio) |
|
|
|
|
|
_, err = auctionClient.AuctionSetAllocationRatio(allocationRatioConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetDonationAddress(t *testing.T) { |
|
|
func TestAuctionGetDonationAddress(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
donationAddress, err := auctionClient.AuctionGetDonationAddress() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
donationAddressConst := common.HexToAddress(donationAddressStr) |
|
|
|
|
|
assert.Equal(t, &donationAddressConst, donationAddress) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
donationAddress, err := auctionClient.AuctionGetDonationAddress() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, &donationAddressConst, donationAddress) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetBootCoordinator(t *testing.T) { |
|
|
func TestAuctionGetBootCoordinator(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
bootCoordinator, err := auctionClient.AuctionGetBootCoordinator() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
bootCoordinatorConst := common.HexToAddress(bootCoordinatorStr) |
|
|
|
|
|
assert.Equal(t, &bootCoordinatorConst, bootCoordinator) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
bootCoordinator, err := auctionClient.AuctionGetBootCoordinator() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, &bootCoordinatorAddressConst, bootCoordinator) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionSetDonationAddress(t *testing.T) { |
|
|
func TestAuctionSetDonationAddress(t *testing.T) { |
|
|
newDonationAddress := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionSetDonationAddress(newDonationAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
donationAddress, err := auctionClient.AuctionGetDonationAddress() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, &newDonationAddress, donationAddress) |
|
|
|
|
|
donationAddressConst := common.HexToAddress(donationAddressStr) |
|
|
|
|
|
_, err = auctionClient.AuctionSetDonationAddress(donationAddressConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
newDonationAddress := governanceAddressConst |
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionSetDonationAddress(newDonationAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
donationAddress, err := auctionClient.AuctionGetDonationAddress() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, &newDonationAddress, donationAddress) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, newDonationAddress, auctionEvents.NewDonationAddress[0].NewDonationAddress) |
|
|
|
|
|
_, err = auctionClient.AuctionSetDonationAddress(donationAddressConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionSetBootCoordinator(t *testing.T) { |
|
|
func TestAuctionSetBootCoordinator(t *testing.T) { |
|
|
newBootCoordinator := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionSetBootCoordinator(newBootCoordinator) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
bootCoordinator, err := auctionClient.AuctionGetBootCoordinator() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, &newBootCoordinator, bootCoordinator) |
|
|
|
|
|
bootCoordinatorConst := common.HexToAddress(bootCoordinatorStr) |
|
|
|
|
|
_, err = auctionClient.AuctionSetBootCoordinator(bootCoordinatorConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
newBootCoordinator := governanceAddressConst |
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionSetBootCoordinator(newBootCoordinator) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
bootCoordinator, err := auctionClient.AuctionGetBootCoordinator() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, &newBootCoordinator, bootCoordinator) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, newBootCoordinator, auctionEvents.NewBootCoordinator[0].NewBootCoordinator) |
|
|
|
|
|
_, err = auctionClient.AuctionSetBootCoordinator(bootCoordinatorAddressConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetSlotSet(t *testing.T) { |
|
|
func TestAuctionGetSlotSet(t *testing.T) { |
|
|
slot := int64(10) |
|
|
slot := int64(10) |
|
|
if auctionClient != nil { |
|
|
|
|
|
slotSet, err := auctionClient.AuctionGetSlotSet(slot) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, slotSet, big.NewInt(4)) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
slotSet, err := auctionClient.AuctionGetSlotSet(slot) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, slotSet, big.NewInt(4)) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetDefaultSlotSetBid(t *testing.T) { |
|
|
func TestAuctionGetDefaultSlotSetBid(t *testing.T) { |
|
|
slotSet := uint8(3) |
|
|
slotSet := uint8(3) |
|
|
if auctionClient != nil { |
|
|
|
|
|
minBid, err := auctionClient.AuctionGetDefaultSlotSetBid(slotSet) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, minBid.String(), minBidStr) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
minBid, err := auctionClient.AuctionGetDefaultSlotSetBid(slotSet) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, minBid.String(), minBidStr) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionChangeDefaultSlotSetBid(t *testing.T) { |
|
|
func TestAuctionChangeDefaultSlotSetBid(t *testing.T) { |
|
@ -289,87 +227,146 @@ func TestAuctionChangeDefaultSlotSetBid(t *testing.T) { |
|
|
set := uint8(3) |
|
|
set := uint8(3) |
|
|
newInitialMinBid := new(big.Int) |
|
|
newInitialMinBid := new(big.Int) |
|
|
newInitialMinBid.SetString("20000000000000000000", 10) |
|
|
newInitialMinBid.SetString("20000000000000000000", 10) |
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionChangeDefaultSlotSetBid(slotSet, newInitialMinBid) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
minBid, err := auctionClient.AuctionGetDefaultSlotSetBid(set) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, minBid, newInitialMinBid) |
|
|
|
|
|
newMinBid := new(big.Int) |
|
|
|
|
|
newMinBid.SetString("10000000000000000000", 10) |
|
|
|
|
|
_, err = auctionClient.AuctionChangeDefaultSlotSetBid(slotSet, newMinBid) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionChangeDefaultSlotSetBid(slotSet, newInitialMinBid) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
minBid, err := auctionClient.AuctionGetDefaultSlotSetBid(set) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, minBid, newInitialMinBid) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, slotSet, auctionEvents.NewDefaultSlotSetBid[0].SlotSet) |
|
|
|
|
|
assert.Equal(t, newInitialMinBid, auctionEvents.NewDefaultSlotSetBid[0].NewInitialMinBid) |
|
|
|
|
|
newMinBid := new(big.Int) |
|
|
|
|
|
newMinBid.SetString("10000000000000000000", 10) |
|
|
|
|
|
_, err = auctionClient.AuctionChangeDefaultSlotSetBid(slotSet, newMinBid) |
|
|
|
|
|
require.Nil(t, err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionGetClaimableHEZ(t *testing.T) { |
|
|
func TestAuctionGetClaimableHEZ(t *testing.T) { |
|
|
forgerAddress := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
if auctionClient != nil { |
|
|
|
|
|
claimableHEZ, err := auctionClient.AuctionGetClaimableHEZ(forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, claimableHEZ.Int64(), int64(0)) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
forgerAddress := governanceAddressConst |
|
|
|
|
|
|
|
|
|
|
|
claimableHEZ, err := auctionClient.AuctionGetClaimableHEZ(forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, claimableHEZ.Int64(), int64(0)) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionIsRegisteredCoordinator(t *testing.T) { |
|
|
func TestAuctionIsRegisteredCoordinator(t *testing.T) { |
|
|
forgerAddress := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
if auctionClient != nil { |
|
|
|
|
|
registered, err := auctionClient.AuctionIsRegisteredCoordinator(forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, registered, false) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
forgerAddress := governanceAddressConst |
|
|
|
|
|
|
|
|
|
|
|
registered, err := auctionClient.AuctionIsRegisteredCoordinator(forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, registered, false) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionRegisterCoordinator(t *testing.T) { |
|
|
func TestAuctionRegisterCoordinator(t *testing.T) { |
|
|
forgerAddress := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionRegisterCoordinator(forgerAddress, URL) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
forgerAddress := governanceAddressConst |
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionRegisterCoordinator(forgerAddress, URL) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.NewCoordinator[0].ForgerAddress) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.NewCoordinator[0].WithdrawalAddress) |
|
|
|
|
|
assert.Equal(t, URL, auctionEvents.NewCoordinator[0].CoordinatorURL) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionIsRegisteredCoordinatorTrue(t *testing.T) { |
|
|
func TestAuctionIsRegisteredCoordinatorTrue(t *testing.T) { |
|
|
forgerAddress := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
if auctionClient != nil { |
|
|
|
|
|
registered, err := auctionClient.AuctionIsRegisteredCoordinator(forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, registered, true) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
forgerAddress := governanceAddressConst |
|
|
|
|
|
|
|
|
|
|
|
registered, err := auctionClient.AuctionIsRegisteredCoordinator(forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, registered, true) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionUpdateCoordinatorInfo(t *testing.T) { |
|
|
func TestAuctionUpdateCoordinatorInfo(t *testing.T) { |
|
|
forgerAddress := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
if auctionClient != nil { |
|
|
|
|
|
_, err := auctionClient.AuctionUpdateCoordinatorInfo(forgerAddress, forgerAddress, newURL) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
forgerAddress := governanceAddressConst |
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionUpdateCoordinatorInfo(forgerAddress, forgerAddress, newURL) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.CoordinatorUpdated[0].ForgerAddress) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.CoordinatorUpdated[0].WithdrawalAddress) |
|
|
|
|
|
assert.Equal(t, newURL, auctionEvents.CoordinatorUpdated[0].CoordinatorURL) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionBid(t *testing.T) { |
|
|
func TestAuctionBid(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
currentSlot, err := auctionClient.AuctionGetCurrentSlotNumber() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
bidAmount := new(big.Int) |
|
|
|
|
|
bidAmount.SetString("11000000000000000000", 10) |
|
|
|
|
|
forgerAddress := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
_, err = auctionClient.AuctionBid(currentSlot+4, bidAmount, forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
currentSlot, err := auctionClient.AuctionGetCurrentSlotNumber() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
bidAmount := new(big.Int) |
|
|
|
|
|
bidAmount.SetString("12000000000000000000", 10) |
|
|
|
|
|
forgerAddress := governanceAddressConst |
|
|
|
|
|
_, err = auctionClient.AuctionBid(currentSlot+4, bidAmount, forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, bidAmount, auctionEvents.NewBid[0].BidAmount) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.NewBid[0].CoordinatorForger) |
|
|
|
|
|
assert.Equal(t, currentSlot+4, auctionEvents.NewBid[0].Slot) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func TestAuctionGetSlotNumber(t *testing.T) { |
|
|
|
|
|
slotConst := 4 |
|
|
|
|
|
blockNum := int(BLOCKSPERSLOT)*slotConst + genesisBlock |
|
|
|
|
|
|
|
|
|
|
|
slot, err := auctionClient.AuctionGetSlotNumber(int64(blockNum)) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, slot, big.NewInt(int64(slotConst))) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func TestAuctionCanForge(t *testing.T) { |
|
|
|
|
|
slotConst := 4 |
|
|
|
|
|
blockNum := int(BLOCKSPERSLOT)*slotConst + genesisBlock |
|
|
|
|
|
|
|
|
|
|
|
canForge, err := auctionClient.AuctionCanForge(governanceAddressConst, int64(blockNum)) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, canForge, true) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestAuctionMultiBid(t *testing.T) { |
|
|
func TestAuctionMultiBid(t *testing.T) { |
|
|
if auctionClient != nil { |
|
|
|
|
|
currentSlot, err := auctionClient.AuctionGetCurrentSlotNumber() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
slotSet := [6]bool{false, true, false, true, false, true} |
|
|
|
|
|
maxBid := new(big.Int) |
|
|
|
|
|
maxBid.SetString("11000000000000000000", 10) |
|
|
|
|
|
minBid := new(big.Int) |
|
|
|
|
|
minBid.SetString("11000000000000000000", 10) |
|
|
|
|
|
budget := new(big.Int) |
|
|
|
|
|
budget.SetString("110000000000000000000", 10) |
|
|
|
|
|
forgerAddress := common.HexToAddress(governanceAddressStr) |
|
|
|
|
|
_, err = auctionClient.AuctionMultiBid(currentSlot+5, currentSlot+10, slotSet, maxBid, minBid, budget, forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
currentSlot, err := auctionClient.AuctionGetCurrentSlotNumber() |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
slotSet := [6]bool{true, false, true, false, true, false} |
|
|
|
|
|
maxBid := new(big.Int) |
|
|
|
|
|
maxBid.SetString("15000000000000000000", 10) |
|
|
|
|
|
minBid := new(big.Int) |
|
|
|
|
|
minBid.SetString("11000000000000000000", 10) |
|
|
|
|
|
budget := new(big.Int) |
|
|
|
|
|
budget.SetString("45200000000000000000", 10) |
|
|
|
|
|
forgerAddress := governanceAddressConst |
|
|
|
|
|
_, err = auctionClient.AuctionMultiBid(currentSlot+4, currentSlot+10, slotSet, maxBid, minBid, budget, forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.NewBid[0].CoordinatorForger) |
|
|
|
|
|
assert.Equal(t, currentSlot+4, auctionEvents.NewBid[0].Slot) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.NewBid[1].CoordinatorForger) |
|
|
|
|
|
assert.Equal(t, currentSlot+6, auctionEvents.NewBid[1].Slot) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.NewBid[2].CoordinatorForger) |
|
|
|
|
|
assert.Equal(t, currentSlot+8, auctionEvents.NewBid[2].Slot) |
|
|
|
|
|
assert.Equal(t, forgerAddress, auctionEvents.NewBid[3].CoordinatorForger) |
|
|
|
|
|
assert.Equal(t, currentSlot+10, auctionEvents.NewBid[3].Slot) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func TestAuctionGetClaimableHEZ2(t *testing.T) { |
|
|
|
|
|
forgerAddress := governanceAddressConst |
|
|
|
|
|
amount := new(big.Int) |
|
|
|
|
|
amount.SetString("11000000000000000000", 10) |
|
|
|
|
|
|
|
|
|
|
|
claimableHEZ, err := auctionClient.AuctionGetClaimableHEZ(forgerAddress) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
assert.Equal(t, claimableHEZ, amount) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func TestAuctionClaimHEZ(t *testing.T) { |
|
|
|
|
|
amount := new(big.Int) |
|
|
|
|
|
amount.SetString("11000000000000000000", 10) |
|
|
|
|
|
|
|
|
|
|
|
_, err := auctionClient.AuctionClaimHEZ(governanceAddressConst) |
|
|
|
|
|
require.Nil(t, err) |
|
|
|
|
|
header, _ := auctionClient.client.client.HeaderByNumber(context.Background(), nil) |
|
|
|
|
|
auctionEvents, _, _ := auctionClient.AuctionEventsByBlock(header.Number.Int64()) |
|
|
|
|
|
assert.Equal(t, amount, auctionEvents.HEZClaimed[0].Amount) |
|
|
|
|
|
assert.Equal(t, governanceAddressConst, auctionEvents.HEZClaimed[0].Owner) |
|
|
} |
|
|
} |