summaryrefslogtreecommitdiff
path: root/tests/plugins/config/plugin2.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-09-16 17:12:37 +0300
committerValery Piashchynski <[email protected]>2021-09-16 17:12:37 +0300
commitf3491c089b4da77fd8d2bc942a88b6b8d117a8a5 (patch)
tree32bfffb1f24eeee7b909747cc00a6a6b9fd3ee83 /tests/plugins/config/plugin2.go
parent5d2cd55ab522d4f1e65a833f91146444465a32ac (diff)
Move plugins to a separate repository
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/plugins/config/plugin2.go')
-rwxr-xr-xtests/plugins/config/plugin2.go50
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/plugins/config/plugin2.go b/tests/plugins/config/plugin2.go
deleted file mode 100755
index 8c6f36c1..00000000
--- a/tests/plugins/config/plugin2.go
+++ /dev/null
@@ -1,50 +0,0 @@
-package config
-
-import (
- "github.com/spiral/errors"
- "github.com/spiral/roadrunner/v2/plugins/config"
-)
-
-type Foo2 struct {
- configProvider config.Configurer
-}
-
-// Depends on S2 and DB (S3 in the current case)
-func (f *Foo2) Init(p config.Configurer) error {
- f.configProvider = p
- return nil
-}
-
-func (f *Foo2) Serve() chan error {
- const op = errors.Op("foo_plugin_serve")
- errCh := make(chan error, 1)
-
- r := &ReloadConfig{}
- err := f.configProvider.UnmarshalKey("reload", r)
- if err != nil {
- errCh <- err
- }
-
- if len(r.Patterns) == 0 {
- errCh <- errors.E(op, errors.Str("should be at least one pattern, but got 0"))
- return errCh
- }
-
- var allCfg AllConfig
- err = f.configProvider.Unmarshal(&allCfg)
- if err != nil {
- errCh <- errors.E(op, errors.Str("should be at least one pattern, but got 0"))
- return errCh
- }
-
- if allCfg.RPC.Listen != "tcp://127.0.0.1:36643" {
- errCh <- errors.E(op, errors.Str("RPC.Listen should be overwritten"))
- return errCh
- }
-
- return errCh
-}
-
-func (f *Foo2) Stop() error {
- return nil
-}