blob: 9011bb00d71d502f3264f9d67af8893c018fb5d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
package tests
import (
"errors"
"fmt"
"github.com/spiral/roadrunner/v2/plugins/config"
"github.com/spiral/roadrunner/v2/plugins/factory"
)
type Foo struct {
configProvider config.Provider
spawner factory.AppFactory
}
func (f *Foo) Init(p config.Provider, spw factory.AppFactory) error {
f.configProvider = p
f.spawner = spw
return nil
}
func (f *Foo) Serve() chan error {
errCh := make(chan error, 1)
r := &factory.Config{}
err := f.configProvider.UnmarshalKey("app", r)
if err != nil {
errCh <- err
return errCh
}
cmd, err := f.spawner.NewCmdFactory(nil)
if err != nil {
errCh <- err
return errCh
}
if cmd == nil {
errCh <- errors.New("command is nil")
return errCh
}
a := cmd()
out, err := a.Output()
if err != nil {
errCh <- err
return errCh
}
fmt.Println(string(out))
return errCh
}
func (f *Foo) Stop() error {
return nil
}
|