8000 GitHub - ascii8/nktest at v0.4.1
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ascii8/nktest

Repository files navigation

nktest

Package nktest provides a Nakama test runner that makes it easy to build and test Nakama module plugins with complex or advanced game logic using nothing but go test.

See also github.com/ascii8/nakama-go package for a web/realtime Nakama Go client.

Tests Go Report Card Reference Releases

overview

This package uses Podman to create "rootless" containers (specifically, docker.io/heroiclabs/nakama-pluginbuilder and docker.io/heroiclabs/nakama) to build Nakama's Go plugins and launch the necessary server components (PostgreSQL and Nakama).

Provides a stable, repeatable, and quick mechanism for launching testable end-to-end Nakama servers for game modules (Go, Lua, or Javascript).

Provides additional transport and logger types for use with Go clients to readily aid in debugging Nakama's API calls.

quickstart

Add to package/module:

go get github.com/ascii8/nktest

From Go's TestMain, use the nktest.Runner to build Go modules, and to setup/teardown PostgreSQL and Nakama server containers:

import "github.com/ascii8/nktest"

// TestMain handles setting up and tearing down the postgres and nakama
// containers.
func TestMain(m *testing.M) {
	// create a global context that can be used from within Test* funcs
	var cancel func()
	globalCtx, cancel = context.WithCancel(context.Background())
	go func() {
		// catch signals, canceling context to cause cleanup
		ch := make(chan os.Signal, 1)
		signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM)
		select {
		case <-globalCtx.Done():
		case sig := <-ch:
			fmt.Fprintf(os.Stdout, "SIGNAL: %s\n", sig)
			cancel()
		}
	}()
	code := 0
	pull := os.Getenv("PULL")
	myTestRunner = nktest.New(
		// force pull when environment variable is set
		nktest.WithAlwaysPull(pull != "" && pull != "false" && pull != "0"),
		// use host port mapping (makes the Nakama server available on default
		// ports, for use with Example* test funcs
		nktest.WithHostPortMap(),
		// add a build config for the nksample subdirectory with Go's environment
		// variables passed to the nakama server container, and mounting the user's
		// Go build and mod cache's as volumes on the container (drastically speeds
		// up build times)
		nktest.WithBuildConfig("./nksample", nktest.WithDefaultGoEnv(), nktest.WithDefaultGoVolumes()),
	)
	// run the test runner -- see https://pkg.go.dev/testing#hdr-Main
	if err := myTestRunner.Run(globalCtx); err == nil {
		code = m.Run()
	} else {
		fmt.Fprintf(os.Stderr, "error: %v\n", err)
		code = 1
	}
	cancel()
	// brief pause to allow all the containers and related resources to be stopped/removed
	<-time.After(2200 * time.Millisecond)
	os.Exit(code)
}

Then, from within a Test* func:

func TestNakama(t *testing.T) {
	// create local context
	ctx, cancel := context.WithCancel(globalCtx)
	defer cancel()
	// create a logging proxy
	urlstr, err := myTestRunner.RunProxy(ctx, nktest.WithLogf(t.Logf))
	if err != nil {
		t.Fatalf("expected no error, got: %v", err)
	}
	// create the request
	urlstr += "/healthcheck"
	t.Logf("url: %s", urlstr)
	req, err := http.NewRequestWithContext(ctx, "GET", urlstr, nil)
	if err != nil {
		t.Fatalf("expected no error, got: %v", err)
	}
	// create a client with compression disabled (makes debugging the API
	// requests/responses easier)
	cl := &http.Client{
		Transport: &http.Transport{
			DisableCompression: true,
		},
	}
	// execute the request
	res, err := cl.Do(req)
	if err != nil {
		t.Fatalf("expected no error, got: %v", err)
	}
	defer res.Body.Close()
	// check response
	if res.StatusCode != http.StatusOK {
		t.Errorf("expected %d, got: %d", http.StatusOK, res.StatusCode)
	}
	t.Logf("healthcheck is %d", res.StatusCode)
	// display connection information
	t.Logf("grpc: %s", nkTest.GrpcLocal())
	t.Logf("http: %s", nkTest.HttpLocal())
	t.Logf("console: %s", nkTest.ConsoleLocal())
	t.Logf("http_key: %s", nkTest.HttpKey())
	t.Logf("server_key: %s", nkTest.ServerKey())
	t.Logf("proxy: %s", urlstr)
}

Use the WithHostPortMap() option, to publish the Postgres and Nakama server's default ports on the host, and making it easy to write Example* tests.

For a better out-of-the-box testing experience, see the github.com/ascii8/nakama-go package for a full featured Go Nakama client.

examples

See the Go package documentation for package level examples.

why

While Nakama provides a number of different languages with which to build out game modules, building large-scale, complex logic for Nakama is best done using Go. For experienced (and even inexperienced!) Go developers, the go test command is simple, efficient and well understood, and works across platforms.

And, for fully automated deployments of Nakama and game modules, a large amount of quick and reliable testing is needed to ensure rapid application development, and continuous integration/deployment (CI/CD).

As such, there was clear motivation to make it easy and repeatable to test entirely from go test,

why podman

The first version of nktest used Docker, but builds and tests were slow as it was not possible to mount the user's Go build/mod cache directories without stomping on the local UID/GID and subsequently affecting the read/write permissions. Thus the change to Podman, which is able to run containers without root permissions, and can keep user UID/GID's on files.

0