Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(gnovm): gno test help long description #1010

Merged
merged 4 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/gno.land/r/demo/groups/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### - test package

./build/gnodev test examples/gno.land/r/demo/groups/
./build/gno test examples/gno.land/r/demo/groups/

### - add pkg

Expand Down
2 changes: 1 addition & 1 deletion gnovm/cmd/gno/lint.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func newLintCmd(io *commands.IO) *commands.Command {

func (c *lintCfg) RegisterFlags(fs *flag.FlagSet) {
fs.BoolVar(&c.verbose, "verbose", false, "verbose output when lintning")
fs.StringVar(&c.rootDir, "root-dir", "", "clone location of github.com/gnolang/gno (gnodev tries to guess it)")
fs.StringVar(&c.rootDir, "root-dir", "", "clone location of github.com/gnolang/gno (gno tries to guess it)")
fs.IntVar(&c.setExitStatus, "set_exit_status", 1, "set exit status to 1 if any issues are found")
}

Expand Down
2 changes: 1 addition & 1 deletion gnovm/cmd/gno/repl.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (c *replCfg) RegisterFlags(fs *flag.FlagSet) {
&c.rootDir,
"root-dir",
"",
"clone location of github.com/gnolang/gno (gnodev tries to guess it)",
"clone location of github.com/gnolang/gno (gno tries to guess it)",
)

fs.StringVar(
Expand Down
50 changes: 48 additions & 2 deletions gnovm/cmd/gno/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,52 @@ func newTestCmd(io *commands.IO) *commands.Command {
Name: "test",
ShortUsage: "test [flags] <package> [<package>...]",
ShortHelp: "Runs the tests for the specified packages",
LongHelp: `Runs the tests for the specified packages.

'Gno test' recompiles each package along with any files with names matching the
file pattern "*_test.gno" or "*_filetest.gno".

The only <package> supported for now is a directory (relative or absolute).
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True only for absolute path if #945 is merged 🙏


- "*_test.gno" files work like "*_test.go" files, but they contain only test
functions. Benchmark and fuzz functions aren't supported yet. Similarly, only
tests that belong to the same package are supported for now (no "xxx_test").

The package path used to execute the "*_test.gno" file is fetched from the
module name found in 'gno.mod', or else it is randomly generated like
"gno.land/r/XXXXXXXX".

- "*_filetest.gno" files on the other hand are kind of unique. They exist to
provide a way to interact and assert a gno contract, thanks to a set of
specific instructions that can be added using code comments.

"*_filetest.gno" must be declared in the 'main' package and so must have a
'main' function, that will be executed to test the target contract.

List of available instructions that can be used in "*_filetest.gno" files:
- "PKGPATH:" is a single line instruction that can be used to define the
package used to interact with the tested package. If not specified, "main" is
used.
- "MAXALLOC:" is a signle line instruction that can be used to define a limit
to the VM allocator. If this limit is exceeded, the VM will panic. Default to
0, no limit.
- "SEND:" is a single line instruction that can be used to send an amount of
token along with the transaction. The format is for example "1000000ugnot".
Default is empty.
- "Output:\n" (*) is a multiple lines instruction that can be used to assert
the output of the "*_filetest.gno" file. Any prints executed inside the
'main' function must match the lines that follows the "Output:\n"
instruction, or else the test fails.
- "Error:\n" works similarly to "Output:\n", except that it asserts the
stderr of the program, which in that case, comes from the VM because of a
panic, rather than the 'main' function.
- "Realm:\n" (*) is a multiple lines instruction that can be used to assert
what has been recorded in the store following the execution of the 'main'
function.

(*) The 'update-golden-test' flag can be set to fill out the content of the
instruction with the actual content of the test instead of failing.
`,
},
cfg,
func(_ context.Context, args []string) error {
Expand Down Expand Up @@ -72,14 +118,14 @@ func (c *testCfg) RegisterFlags(fs *flag.FlagSet) {
&c.updateGoldenTests,
"update-golden-tests",
false,
"writes actual as wanted in test comments",
`writes actual as wanted for "Output:" and "Realm:" instructions`,
moul marked this conversation as resolved.
Show resolved Hide resolved
)

fs.StringVar(
&c.rootDir,
"root-dir",
"",
"clone location of github.com/gnolang/gno (gnodev tries to guess it)",
"clone location of github.com/gnolang/gno (gno tries to guess it)",
)

fs.StringVar(
Expand Down
Loading