-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
130 additions
and
0 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 @@ | ||
gno.land/p/demo/pausable |
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,53 @@ | ||
package pausable | ||
|
||
import "gno.land/p/demo/ownable" | ||
|
||
type Pausable struct { | ||
paused bool | ||
*ownable.Ownable | ||
} | ||
|
||
// New returns a new Pausable struct with non-paused state as default | ||
func New() *Pausable { | ||
return &Pausable{ | ||
paused: false, | ||
Ownable: ownable.New(), | ||
} | ||
} | ||
|
||
// NewFromOwnable is the same as New, but with a pre-existing top-level ownable | ||
func NewFromOwnable(ownable *ownable.Ownable) *Pausable { | ||
return &Pausable{ | ||
paused: false, | ||
Ownable: ownable, | ||
} | ||
} | ||
|
||
// IsPaused checks if Pausable is paused | ||
func (p *Pausable) IsPaused() bool { | ||
return p.paused | ||
} | ||
|
||
// SetPaused sets the state of Pausable to true, meaning all pausable functions are paused | ||
func (p *Pausable) SetPaused() error { | ||
err := p.CallerIsOwner() | ||
|
||
if err != nil { | ||
return err | ||
} | ||
|
||
p.paused = true | ||
return nil | ||
} | ||
|
||
// SetUnpaused sets the state of Pausable to true, meaning all pausable functions are resumed | ||
func (p *Pausable) SetUnpaused() error { | ||
err := p.CallerIsOwner() | ||
|
||
if err != nil { | ||
return err | ||
} | ||
|
||
p.paused = false | ||
return nil | ||
} |
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,76 @@ | ||
package pausable | ||
|
||
import ( | ||
"gno.land/p/demo/ownable" | ||
"std" | ||
"testing" | ||
) | ||
|
||
var ( | ||
firstCaller = std.Address("g1l9aypkr8xfvs82zeux486ddzec88ty69lue9de") | ||
secondCaller = std.Address("g127jydsh6cms3lrtdenydxsckh23a8d6emqcvfa") | ||
) | ||
|
||
func TestNew(t *testing.T) { | ||
std.TestSetOrigCaller(firstCaller) | ||
|
||
result := New() | ||
|
||
if result.paused != false { | ||
t.Fatalf("Expected result to be unpaused, got %t\n", result.paused) | ||
} | ||
|
||
if result.Owner() != firstCaller { | ||
t.Fatalf("Expected %s, got %s\n", firstCaller, result.Owner()) | ||
} | ||
} | ||
|
||
func TestNewFromOwnable(t *testing.T) { | ||
std.TestSetOrigCaller(firstCaller) | ||
o := ownable.New() | ||
|
||
std.TestSetOrigCaller(secondCaller) | ||
result := NewFromOwnable(o) | ||
|
||
if result.Owner() != firstCaller { | ||
t.Fatalf("Expected %s, got %s\n", firstCaller, result.Owner()) | ||
} | ||
} | ||
|
||
func TestSetUnpaused(t *testing.T) { | ||
std.TestSetOrigCaller(firstCaller) | ||
|
||
result := New() | ||
result.SetUnpaused() | ||
|
||
if result.IsPaused() { | ||
t.Fatalf("Expected result to be unpaused, got %t\n", result.IsPaused()) | ||
} | ||
} | ||
|
||
func TestSetPaused(t *testing.T) { | ||
std.TestSetOrigCaller(firstCaller) | ||
|
||
result := New() | ||
result.SetPaused() | ||
|
||
if !result.IsPaused() { | ||
t.Fatalf("Expected result to be paused, got %t\n", result.IsPaused()) | ||
} | ||
} | ||
|
||
func TestIsPaused(t *testing.T) { | ||
std.TestSetOrigCaller(firstCaller) | ||
|
||
result := New() | ||
|
||
if result.IsPaused() { | ||
t.Fatalf("Expected result to be unpaused, got %t\n", result.IsPaused()) | ||
} | ||
|
||
result.SetPaused() | ||
|
||
if !result.IsPaused() { | ||
t.Fatalf("Expected result to be paused, got %t\n", result.IsPaused()) | ||
} | ||
} |