Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
72 lines
1.1 KiB
Go
72 lines
1.1 KiB
Go
//go:build !relayer
|
|
|
|
package params_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
envtest "github.com/ignite/cli/v29/integration"
|
|
)
|
|
|
|
func TestCreateModuleConfigs(t *testing.T) {
|
|
var (
|
|
name = "mars"
|
|
namespace = "github.com/test/" + name
|
|
|
|
env = envtest.New(t)
|
|
app = env.ScaffoldApp(namespace)
|
|
servers = app.RandomizeServerPorts()
|
|
)
|
|
|
|
app.Scaffold(
|
|
"create a new module with configs",
|
|
false,
|
|
"module",
|
|
"foo",
|
|
"--module-configs",
|
|
"bla,baz:uint,bar:bool",
|
|
"--require-registration",
|
|
)
|
|
|
|
app.Scaffold(
|
|
"should prevent creating configs field that already exist",
|
|
true,
|
|
"configs",
|
|
"bla",
|
|
"buu:uint",
|
|
"--module",
|
|
"foo",
|
|
)
|
|
|
|
app.Scaffold(
|
|
"create a new module configs in the foo module",
|
|
false,
|
|
"configs",
|
|
"bol",
|
|
"buu:uint",
|
|
"plk:bool",
|
|
"--module",
|
|
"foo",
|
|
)
|
|
|
|
app.Scaffold(
|
|
"create a new module configs in the mars module",
|
|
false,
|
|
"configs",
|
|
"foo",
|
|
"bar:uint",
|
|
"baz:bool",
|
|
)
|
|
|
|
app.EnsureSteady()
|
|
|
|
ctx, cancel := context.WithCancel(env.Ctx())
|
|
defer cancel()
|
|
|
|
go func() {
|
|
app.MustServe(ctx)
|
|
}()
|
|
|
|
app.WaitChainUp(ctx, servers.API)
|
|
}
|