Search Apps Documentation Source Content File Folder Download Copy Actions Download

z_get_board_01_filetest.gno

0.68 Kb · 30 lines
 1// PKGPATH: gno.land/r/gnoland/boards2/v1/filetests/z_get_board_01_filetest
 2
 3package z_get_board_01_filetest
 4
 5import (
 6	"testing"
 7
 8	"gno.land/p/gnoland/boards"
 9
10	boards2 "gno.land/r/gnoland/boards2/v1"
11)
12
13const owner address = "g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh"
14
15var bid boards.ID
16
17func init(cur realm) {
18	testing.SetRealm(testing.NewUserRealm(owner))
19	bid = boards2.CreateBoard(cross(cur), "test123", false, false)
20}
21
22func main(cur realm) {
23	testing.SetRealm(testing.NewCodeRealm("gno.land/r/gnoland/test"))
24
25	// Calling as a non Boards2 sub realm should fail
26	boards2.GetBoard(cross(cur), bid)
27}
28
29// Error:
30// forbidden, caller should live within "gno.land/r/gnoland/boards2/" namespace