- Getting started
- Connect to environment
- Creating environments
- Modifying environments
- Configuring
- Utilities
- Chaos
- Coverage
- Remote run
Read here about how to spin up a local cluster if you don't have one
Let's create a simple environment by combining different deployment parts
Create examples/simple/env.go
package main
import (
"fmt"
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/pkg"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/ethereum"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/mockserver"
)
func main() {
err := environment.New(&environment.Config{
KeepConnection: false,
RemoveOnInterrupt: false,
}).
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, nil)).
Run()
if err != nil {
panic(err)
}
}
Then run go run examples/simple/env.go
Now you have your environment running, you can connect to it later
We've already created an environment previously, now we can connect
If you are planning to use environment locally not in tests and keep connection, modify KeepConnection
in environment.Config
we used
KeepConnection: true,
Add ENV_NAMESPACE=${your_env_namespace}
var and run go run examples/simple/env.go
again
You can get the namespace name from logs on creation time
You can spin up environment and block on forwarder if you'd like to run some other code
package main
import (
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/ethereum"
)
func main() {
err := environment.New(&environment.Config{
Labels: []string{"type=construction-in-progress"},
NamespacePrefix: "new-environment",
KeepConnection: true,
RemoveOnInterrupt: true,
}).
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, nil)).
Run()
if err != nil {
panic(err)
}
}
Send any signal to remove the namespace then, for example Ctrl+C
SIGINT
Let's add a new deployment part, it should implement an interface
// ConnectedChart interface to interact both with cdk8s apps and helm charts
type ConnectedChart interface {
// IsDeploymentNeeded
// true - we deploy/connect and expose environment data
// false - we are using external environment, but still exposing data
IsDeploymentNeeded() bool
// GetName name of the deployed part
GetName() string
// GetPath get Helm chart path, repo or local path
GetPath() string
// GetProps get code props if it's typed environment
GetProps() any
// GetValues get values.yml props as map, if it's Helm
GetValues() *map[string]any
// ExportData export deployment part data in the env
ExportData(e *Environment) error
}
When creating new deployment part, you can use any public Helm chart or a local path in Helm props
func New(props *Props) environment.ConnectedChart {
if props == nil {
props = defaultProps()
}
return Chart{
HelmProps: &HelmProps{
Name: "sol",
Path: "plugin-qa/solana-validator", // ./local_path/chartdir will work too
Values: &props.Values,
},
Props: props,
}
}
Now let's tie them together
package main
import (
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/examples/deployment_part"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"time"
)
func main() {
e := environment.New(&environment.Config{
NamespacePrefix: "adding-new-deployment-part",
TTL: 3 * time.Hour,
KeepConnection: true,
RemoveOnInterrupt: true,
}).
AddHelm(deployment_part.New(nil)).
AddHelm(plugin.New(0, map[string]any{
"replicas": 5,
"env": map[string]any{
"SOLANA_ENABLED": "true",
"EVM_ENABLED": "false",
"EVM_RPC_ENABLED": "false",
"PLUGIN_DEV": "false",
"FEATURE_OFFCHAIN_REPORTING2": "true",
"feature_offchain_reporting": "false",
"P2P_NETWORKING_STACK": "V2",
"P2PV2_LISTEN_ADDRESSES": "0.0.0.0:6690",
"P2PV2_DELTA_DIAL": "5s",
"P2PV2_DELTA_RECONCILE": "5s",
"p2p_listen_port": "0",
},
}))
if err := e.Run(); err != nil {
panic(err)
}
}
Then run it examples/deployment_part/cmd/env.go
Let's add a new deployment part, it should implement the same interface
// ConnectedChart interface to interact both with cdk8s apps and helm charts
type ConnectedChart interface {
// IsDeploymentNeeded
// true - we deploy/connect and expose environment data
// false - we are using external environment, but still exposing data
IsDeploymentNeeded() bool
// GetName name of the deployed part
GetName() string
// GetPath get Helm chart path, repo or local path
GetPath() string
// GetProps get code props if it's typed environment
GetProps() any
// GetValues get values.yml props as map, if it's Helm
GetValues() *map[string]any
// ExportData export deployment part data in the env
ExportData(e *Environment) error
}
Now let's tie them together
package main
import (
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/examples/deployment_part_cdk8s"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/ethereum"
)
func main() {
e := environment.New(nil).
AddChart(deployment_part_cdk8s.New(&deployment_part_cdk8s.Props{})).
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, map[string]any{
"replicas": 2,
}))
if err := e.Run(); err != nil {
panic(err)
}
e.Shutdown()
}
Then run it examples/deployment_part_cdk8s/cmd/env.go
You can split environment deployment in several parts if you need to first copy something into a pod or use connected clients first
package main
import (
"fmt"
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/cdk8s/blockscout"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/ethereum"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/mockserver"
mockservercfg "github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/mockserver-cfg"
)
func main() {
e := environment.New(nil)
err := e.
AddChart(blockscout.New(&blockscout.Props{})). // you can also add cdk8s charts if you like Go code
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, nil)).
Run()
if err != nil {
panic(err)
}
// do some other stuff with deployed charts
pl, err := e.Client.ListPods(e.Cfg.Namespace, "app=plugin-0")
if err != nil {
panic(err)
}
dstPath := fmt.Sprintf("%s/%s:/", e.Cfg.Namespace, pl.Items[0].Name)
if _, _, _, err = e.Client.CopyToPod(e.Cfg.Namespace, "./examples/multistage/someData.txt", dstPath, "node"); err != nil {
panic(err)
}
// deploy another part
err = e.
AddHelm(mockservercfg.New(nil)).
AddHelm(mockserver.New(nil)).
Run()
defer func() {
errr := e.Shutdown()
panic(errr)
}()
if err != nil {
panic(err)
}
}
In case you need to modify environment in tests you can always construct manifest again and apply it
That's working for cdk8s
components too
package main
import (
"fmt"
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/cdk8s/blockscout"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/ethereum"
)
func main() {
e := environment.New(&environment.Config{
NamespacePrefix: "modified-env",
Labels: []string{fmt.Sprintf("envType=Modified")},
}).
AddChart(blockscout.New(&blockscout.Props{
WsURL: "ws://geth:8546",
HttpURL: "http://geth:8544",
})).
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, map[string]any{
"replicas": 1,
}))
err := e.Run()
if err != nil {
panic(err)
}
e.ClearCharts()
err = e.
AddChart(blockscout.New(&blockscout.Props{
HttpURL: "http://geth:9000",
})).
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, map[string]any{
"replicas": 1,
})).
Run()
if err != nil {
panic(err)
}
}
We can modify only a part of environment
package main
import (
"fmt"
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/ethereum"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/mockserver"
mockservercfg "github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/mockserver-cfg"
)
func main() {
e := environment.New(&environment.Config{
NamespacePrefix: "modified-env",
Labels: []string{fmt.Sprintf("envType=Modified")},
}).
AddHelm(mockservercfg.New(nil)).
AddHelm(mockserver.New(nil)).
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, map[string]any{
"replicas": 1,
}))
err := e.Run()
if err != nil {
panic(err)
}
e.Cfg.KeepConnection = true
e.Cfg.RemoveOnInterrupt = true
e, err = e.
ReplaceHelm("plugin-0", plugin.New(0, map[string]any{
"replicas": 2,
}))
if err != nil {
panic(err)
}
err = e.Run()
if err != nil {
panic(err)
}
}
List of environment variables available
const (
EnvVarNamespace = "ENV_NAMESPACE"
EnvVarNamespaceDescription = "Namespace name to connect to"
EnvVarNamespaceExample = "plugin-test-epic"
// deprecated (for now left for backwards compatibility)
EnvVarCLImage = "PLUGIN_IMAGE"
EnvVarCLImageDescription = "Plugin image repository"
EnvVarCLImageExample = "public.ecr.aws/plugin/plugin"
// deprecated (for now left for backwards compatibility)
EnvVarCLTag = "PLUGIN_VERSION"
EnvVarCLTagDescription = "Plugin image tag"
EnvVarCLTagExample = "1.5.1-root"
EnvVarUser = "PLUGIN_ENV_USER"
EnvVarUserDescription = "Owner of an environment"
EnvVarUserExample = "Satoshi"
EnvVarCLCommitSha = "PLUGIN_COMMIT_SHA"
EnvVarCLCommitShaDescription = "The sha of the commit that you're running tests on. Mostly used for CI"
EnvVarCLCommitShaExample = "${{ github.sha }}"
EnvVarTestTrigger = "TEST_TRIGGERED_BY"
EnvVarTestTriggerDescription = "How the test was triggered, either manual or CI."
EnvVarTestTriggerExample = "CI"
EnvVarLogLevel = "TEST_LOG_LEVEL"
EnvVarLogLevelDescription = "Environment logging level"
EnvVarLogLevelExample = "info | debug | trace"
EnvVarSlackKey = "SLACK_API_KEY"
EnvVarSlackKeyDescription = "The OAuth Slack API key to report tests results with"
EnvVarSlackKeyExample = "xoxb-example-key"
EnvVarSlackChannel = "SLACK_CHANNEL"
EnvVarSlackChannelDescription = "The Slack code for the channel you want to send the notification to"
EnvVarSlackChannelExample = "C000000000"
EnvVarSlackUser = "SLACK_USER"
EnvVarSlackUserDescription = "The Slack code for the user you want to notify"
EnvVarSlackUserExample = "U000000000"
)
// Config is an environment common configuration, labels, annotations, connection types, readiness check, etc.
type Config struct {
// TTL is time to live for the environment, used with kube-janitor
TTL time.Duration
// NamespacePrefix is a static namespace prefix
NamespacePrefix string
// Namespace is full namespace name
Namespace string
// Labels is a set of labels applied to the namespace in a format of "key=value"
Labels []string
nsLabels *map[string]*string
// ReadyCheckData is settings for readiness probes checks for all deployment components
// checking that all pods are ready by default with 8 minutes timeout
// &client.ReadyCheckData{
// ReadinessProbeCheckSelector: "",
// Timeout: 15 * time.Minute,
// }
ReadyCheckData *client.ReadyCheckData
// DryRun if true, app will just generate a manifest in local dir
DryRun bool
// InsideK8s used for long-running soak tests where you connect to env from the inside
InsideK8s bool
// KeepConnection keeps connection until interrupted with a signal, useful when prototyping and debugging a new env
KeepConnection bool
// RemoveOnInterrupt automatically removes an environment on interrupt
RemoveOnInterrupt bool
}
You can collect the logs while running tests, or if you have created an enrionment already
package main
import (
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/ethereum"
)
func main() {
e := environment.New(nil).
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, nil))
if err := e.Run(); err != nil {
panic(err)
}
if err := e.DumpLogs("logs/mytest"); err != nil {
panic(err)
}
}
It can be useful to get current env resources summary for test reporting
package main
import (
"fmt"
"github.com/rs/zerolog/log"
"github.com/goplugin/plugin-testing-framework/k8s/environment"
"github.com/goplugin/plugin-testing-framework/k8s/pkg"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/plugin"
"github.com/goplugin/plugin-testing-framework/k8s/pkg/helm/ethereum"
)
func main() {
e := environment.New(&environment.Config{
Labels: []string{fmt.Sprintf("envType=%s", pkg.EnvTypeEVM5)},
}).
AddHelm(ethereum.New(nil)).
AddHelm(plugin.New(0, nil))
err := e.Run()
if err != nil {
panic(err)
}
// default k8s selector
summ, err := e.ResourcesSummary("app in (plugin-0, geth)")
if err != nil {
panic(err)
}
log.Warn().Interface("Resources", summ).Send()
e.Shutdown()
}
Check our tests to see how we using Chaosmesh
Build your target image with those 2 steps to allow automatic coverage discovery
FROM ...
# add those 2 steps to instrument the code
RUN curl -s https://api.github.com/repos/qiniu/goc/releases/latest | grep "browser_download_url.*-linux-amd64.tar.gz" | cut -d : -f 2,3 | tr -d \" | xargs -n 1 curl -L | tar -zx && chmod +x goc && mv goc /usr/local/bin
# -o my_service means service will be called "my_service" in goc coverage service
# --center http://goc:7777 means that on deploy, your instrumented service will automatically register to a local goc node inside your deployment (namespace)
RUN goc build -o my_service . --center http://goc:7777
CMD ["./my_service"]
Add goc
to your deployment, check example with dummy
service deployment:
package main
import (
"time"
"github.com/goplugin/plugin-testing-framework/k8s/environment"
goc "github.com/goplugin/plugin-testing-framework/k8s/pkg/cdk8s/goc"
dummy "github.com/goplugin/plugin-testing-framework/k8s/pkg/cdk8s/http_dummy"
)
func main() {
e := environment.New(nil).
AddChart(goc.New()).
AddChart(dummy.New())
if err := e.Run(); err != nil {
panic(err)
}
// run your test logic here
time.Sleep(1 * time.Minute)
if err := e.SaveCoverage(); err != nil {
panic(err)
}
// clear the coverage, rerun the tests again if needed
if err := e.ClearCoverage(); err != nil {
panic(err)
}
}
After tests are finished, coverage is collected for every service, check cover
directory
Keep in mind that configuring Plugin image/version & Pyroscope via env vars is deprecated. The latter won't even work anymore. That means that this method should be avoided in new environments. Instead, use the TOML config method described below.
AddHelm(plugin.New(0, nil))
It's recommended to use a TOML config file to configure Plugin and Pyroscope:
// read the config file
config := testconfig.GetConfig("Load", "Automation")
var overrideFn = func(_ interface{}, target interface{}) {
ctf_config.MustConfigOverridePluginVersion(&config.PluginImage, target)
ctf_config.MightConfigOverridePyroscopeKey(&config.Pyroscope, target)
}
AddHelm(plugin.NewWithOverride(0, map[string]interface{}{
"replicas": 1,
}, &config, overrideFn))
Using that will cause the override function to be executed on the default propos thus overriding the default values with the values from the config file. If config.PluginImage
is nil
or it's missing either Image
or Version
code will panic. If Pyroscope is disabled or key is not set it will be ignored.