Search Apps Documentation Source Content File Folder Download Copy Actions Download

z_create_reply_00_filetest.gno

0.93 Kb · 46 lines
 1// PKGPATH: gno.land/r/gnoland/boards2/v1/filetests/z_create_reply_00_filetest
 2
 3package z_create_reply_00_filetest
 4
 5import (
 6	"strings"
 7	"testing"
 8
 9	"gno.land/p/gnoland/boards"
10
11	boards2 "gno.land/r/gnoland/boards2/v1"
12)
13
14const (
15	owner   address = "g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh"
16	path            = "test-board/1/2"
17	comment         = "Test comment"
18)
19
20var (
21	bid boards.ID
22	tid boards.ID
23)
24
25func init(cur realm) {
26	testing.SetRealm(testing.NewUserRealm(owner))
27	bid = boards2.CreateBoard(cross(cur), "test-board", false, false)
28	tid = boards2.CreateThread(cross(cur), bid, "Foo", "bar")
29}
30
31func main(cur realm) {
32	testing.SetRealm(testing.NewUserRealm(owner))
33
34	rid := boards2.CreateReply(cross(cur), bid, tid, 0, comment)
35
36	// Ensure that returned ID is right
37	println(rid == 2)
38
39	// Render content must contain the reply
40	content := boards2.Render(path)
41	println(strings.Contains(content, "\n> "+comment))
42}
43
44// Output:
45// true
46// true