z_delete_thread_03_filetest.gno
0.86 Kb · 37 lines
1// PKGPATH: gno.land/r/gnoland/boards2/v1/filetests/z_delete_thread_03_filetest
2
3package z_delete_thread_03_filetest
4
5import (
6 "testing"
7
8 "gno.land/p/gnoland/boards"
9
10 boards2 "gno.land/r/gnoland/boards2/v1"
11)
12
13const (
14 owner address = "g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh"
15 user address = "g1us8428u2a5satrlxzagqqa5m6vmuze025anjlj" // @test2
16)
17
18var (
19 bid boards.ID
20 pid boards.ID
21)
22
23func init(cur realm) {
24 testing.SetRealm(testing.NewUserRealm(owner))
25 bid = boards2.CreateBoard(cross(cur), "test-board", false, false)
26 pid = boards2.CreateThread(cross(cur), bid, "Foo", "bar")
27}
28
29func main(cur realm) {
30 // Call using a user that has not permission to delete threads
31 testing.SetRealm(testing.NewUserRealm(user))
32
33 boards2.DeleteThread(cross(cur), bid, pid)
34}
35
36// Error:
37// unauthorized, user g1us8428u2a5satrlxzagqqa5m6vmuze025anjlj doesn't have the required permission