Files
releases/runtime/plugins_test.go
T
Will Beason 3be1d08b87 Change check-lint to use golangci-lint (#3465)
golint is deprecated. The author of the code no longer supports the
codebase. golangci-lint is faster than golint, and is in use by other
opa repositories (e.g. Gatekeeper).

This commit changes tools.go to reference golangci (so it ends up in
vendor) and modifies check-lint to use golangci instead.

Breaking API Changes:

- plugins/rest/rest.go: Fix typo "AllowInsureTLS" -> "AllowInsecureTLS"
- storage/errors.go: Removed unused IndexingNotSupportedErr

Signed-off-by: Will Beason <willbeason@google.com>
2021-05-19 07:52:02 +02:00

193 lines
4.0 KiB
Go

// Copyright 2018 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package runtime
import (
"context"
"fmt"
"path/filepath"
"strings"
"testing"
"time"
"github.com/open-policy-agent/opa/plugins"
"github.com/open-policy-agent/opa/util"
"github.com/open-policy-agent/opa/util/test"
)
type Tester struct {
startErr error
}
func (t *Tester) Start(ctx context.Context) error {
return t.startErr
}
func (t *Tester) Stop(ctx context.Context) {}
func (t *Tester) Reconfigure(ctx context.Context, config interface{}) {}
type Config struct {
ConfigErr bool `json:"configerr"`
}
type Factory struct{}
func (f Factory) Validate(_ *plugins.Manager, config []byte) (interface{}, error) {
cfg := Config{}
if err := util.Unmarshal(config, &cfg); err != nil {
return nil, err
}
if cfg.ConfigErr {
return nil, fmt.Errorf("test error")
}
return cfg, nil
}
func (f Factory) New(_ *plugins.Manager, config interface{}) plugins.Plugin {
return &Tester{}
}
func TestRegisterPlugin(t *testing.T) {
params := NewParams()
fs := map[string]string{
"/config.yaml": `{"plugins": {"test": {}}}`,
}
test.WithTempFS(fs, func(testDirRoot string) {
RegisterPlugin("test", Factory{})
params.ConfigFile = filepath.Join(testDirRoot, "/config.yaml")
rt, err := NewRuntime(context.Background(), params)
if err != nil {
t.Fatalf(err.Error())
}
if err := rt.Manager.Start(context.Background()); err != nil {
t.Fatalf("Unable to initialize plugins: %v", err.Error())
}
p := rt.Manager.Plugin("test")
if p == nil {
t.Fatal("expected plugin to be registered")
}
})
}
func TestRegisterPluginNotStartedWithoutConfig(t *testing.T) {
params := NewParams()
fs := map[string]string{
"/config.yaml": `{"plugins": {}}`,
}
test.WithTempFS(fs, func(testDirRoot string) {
RegisterPlugin("test", Factory{})
params.ConfigFile = filepath.Join(testDirRoot, "/config.yaml")
rt, err := NewRuntime(context.Background(), params)
if err != nil {
t.Fatalf(err.Error())
}
if err := rt.Manager.Start(context.Background()); err != nil {
t.Fatalf("Unable to initialize plugins: %v", err.Error())
}
p := rt.Manager.Plugin("test")
if p != nil {
t.Fatal("expected plugin to be missing")
}
})
}
func TestRegisterPluginBadBootConfig(t *testing.T) {
params := NewParams()
fs := map[string]string{
"/config.yaml": `{"plugins": {"test": {"configerr": true}}}`,
}
test.WithTempFS(fs, func(testDirRoot string) {
RegisterPlugin("test", Factory{})
params.ConfigFile = filepath.Join(testDirRoot, "/config.yaml")
_, err := NewRuntime(context.Background(), params)
if err == nil || !strings.Contains(err.Error(), "config error: test") {
t.Fatal("expected config error but got:", err)
}
})
}
func TestWaitPluginsReady(t *testing.T) {
fs := map[string]string{
"/config.yaml": `{"plugins": {"test": {}}}`,
}
test.WithTempFS(fs, func(testDirRoot string) {
RegisterPlugin("test", Factory{})
params := NewParams()
params.ConfigFile = filepath.Join(testDirRoot, "/config.yaml")
rt, err := NewRuntime(context.Background(), params)
if err != nil {
t.Fatalf(err.Error())
}
if err := rt.Manager.Start(context.Background()); err != nil {
t.Fatalf("Unable to initialize plugins: %v", err.Error())
}
rt.Manager.UpdatePluginStatus("test", &plugins.Status{
State: plugins.StateNotReady,
})
go func() {
time.Sleep(100 * time.Millisecond)
rt.Manager.UpdatePluginStatus("test", &plugins.Status{
State: plugins.StateOK,
})
rt.Manager.UpdatePluginStatus("discovery", &plugins.Status{
State: plugins.StateOK,
})
}()
if err := rt.waitPluginsReady(1*time.Millisecond, 0); err != nil {
t.Fatalf("Expected no error when no timeout: %v", err)
}
if err := rt.waitPluginsReady(1*time.Millisecond, 1*time.Millisecond); err == nil {
t.Fatal("Expected timeout error")
}
if err := rt.waitPluginsReady(1*time.Millisecond, time.Second); err != nil {
t.Fatal(err)
}
})
}