-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…ing-new-pool GSW-401 feat: spend 500 gns when creating new pool
- Loading branch information
Showing
17 changed files
with
436 additions
and
320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package gov | ||
|
||
import "std" | ||
|
||
const ( | ||
GNS_TOKEN_ADDRESS = std.DerivePkgAddr("gno.land/r/gns") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
package pool | ||
|
||
import ( | ||
"std" | ||
"testing" | ||
|
||
"gno.land/p/demo/testutils" | ||
|
||
_ "gno.land/r/grc20_wrapper" | ||
|
||
gns "gno.land/r/gns" | ||
) | ||
|
||
var ( | ||
pc01 = testutils.TestAddress("pc01") // pool creator | ||
gsa = testutils.TestAddress("gsa") | ||
|
||
poolAddr = std.DerivePkgAddr("gno.land/r/pool") | ||
posAddr = std.DerivePkgAddr("gno.land/r/position") | ||
) | ||
|
||
var ( | ||
fooPath = "gno.land/r/foo" // token1 | ||
barPath = "gno.land/r/bar" // token2 | ||
bazPath = "gno.land/r/baz" | ||
sqrtPrice bigint = 130621891405341611593710811006 | ||
|
||
tickLower = int32(9000) | ||
tickUpper = int32(11000) | ||
liquidityExpect = bigint(100_000_000) | ||
|
||
currentTick = int32(10000) | ||
) | ||
|
||
func init() { | ||
std.TestSetOrigCaller(gsa) | ||
InitManual() | ||
} | ||
|
||
func TestCreatePool(t *testing.T) { | ||
std.TestSetOrigCaller(pc01) | ||
|
||
pc01Before := gns.BalanceOf(a2u(pc01)) | ||
gsaBefore := gns.BalanceOf(a2u(gsa)) | ||
shouldEQ(t, gsaBefore, 0) | ||
|
||
CreatePool(fooPath, barPath, uint16(100), sqrtPrice) | ||
CreatePool(fooPath, barPath, uint16(500), sqrtPrice) | ||
CreatePool(fooPath, barPath, uint16(3000), sqrtPrice) | ||
CreatePool(fooPath, barPath, uint16(10000), sqrtPrice) | ||
|
||
pc01After := gns.BalanceOf(a2u(pc01)) | ||
gsaAfter := gns.BalanceOf(a2u(gsa)) | ||
|
||
shouldEQ(t, gsaAfter-gsaBefore, 2000) | ||
shouldEQ(t, pc01Before-pc01After, 2000) | ||
shouldEQ(t, len(pools), 4) | ||
} | ||
|
||
func TestCreatePoolNotEnoughGNS(t *testing.T) { | ||
shouldPanicWithMsg(t, func() { CreatePool(fooPath, bazPath, uint16(100), sqrtPrice) }, "insufficient balance") | ||
shouldEQ(t, len(pools), 4) | ||
} | ||
|
||
func shouldEQ(t *testing.T, got, expected interface{}) { | ||
if got != expected { | ||
t.Errorf("got %v, expected %v", got, expected) | ||
} | ||
} | ||
|
||
func shouldPanicWithMsg(t *testing.T, f func(), msg string) { | ||
defer func() { | ||
if r := recover(); r == nil { | ||
t.Errorf("The code did not panic") | ||
} else { | ||
if r != msg { | ||
t.Errorf("excepted panic(%v), got(%v)", msg, r) | ||
} | ||
} | ||
}() | ||
f() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.