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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
package main
import (
"fmt"
"io/ioutil"
"os/exec"
"path/filepath"
"time"
tap "github.com/mndrix/tap-go"
rspec "github.com/opencontainers/runtime-spec/specs-go"
"github.com/opencontainers/runtime-tools/specerror"
"github.com/opencontainers/runtime-tools/validation/util"
uuid "github.com/satori/go.uuid"
)
func main() {
t := tap.New()
t.Header(0)
var output string
config := util.LifecycleConfig{
Actions: util.LifecycleActionCreate | util.LifecycleActionStart | util.LifecycleActionDelete,
PreCreate: func(r *util.Runtime) error {
r.SetID(uuid.NewV4().String())
g, err := util.GetDefaultGenerator()
if err != nil {
util.Fatal(err)
}
output = filepath.Join(r.BundleDir, g.Spec().Root.Path, "output")
shPath := filepath.Join(r.BundleDir, g.Spec().Root.Path, "/bin/sh")
err = g.AddPreStartHook(rspec.Hook{
Path: shPath,
Args: []string{
"sh", "-c", fmt.Sprintf("echo 'pre-start1 called' >> %s", output),
},
})
if err != nil {
return err
}
err = g.AddPreStartHook(rspec.Hook{
Path: shPath,
Args: []string{
"sh", "-c", fmt.Sprintf("echo 'pre-start2 called' >> %s", output),
},
})
if err != nil {
return err
}
err = g.AddPostStartHook(rspec.Hook{
Path: shPath,
Args: []string{
"sh", "-c", fmt.Sprintf("echo 'post-start1 called' >> %s", output),
},
})
if err != nil {
return err
}
err = g.AddPostStartHook(rspec.Hook{
Path: shPath,
Args: []string{
"sh", "-c", fmt.Sprintf("echo 'post-start2 called' >> %s", output),
},
})
if err != nil {
return err
}
err = g.AddPostStopHook(rspec.Hook{
Path: shPath,
Args: []string{
"sh", "-c", fmt.Sprintf("echo 'post-stop1 called' >> %s", output),
},
})
if err != nil {
return err
}
err = g.AddPostStopHook(rspec.Hook{
Path: shPath,
Args: []string{
"sh", "-c", fmt.Sprintf("echo 'post-stop2 called' >> %s", output),
},
})
if err != nil {
return err
}
g.SetProcessArgs([]string{"true"})
return r.SetConfig(g)
},
PreDelete: func(r *util.Runtime) error {
util.WaitingForStatus(*r, util.LifecycleStatusStopped, time.Second*10, time.Second)
return nil
},
}
err := util.RuntimeLifecycleValidate(config)
outputData, _ := ioutil.ReadFile(output)
if err == nil && string(outputData) != "pre-start1 called\npre-start2 called\npost-start1\npost-start2\npost-stop1\npost-stop2\n" {
err = specerror.NewError(specerror.PosixHooksCalledInOrder, fmt.Errorf("Hooks MUST be called in the listed order"), rspec.Version)
diagnostic := map[string]string{
"error": err.Error(),
}
t.YAML(diagnostic)
} else {
diagnostic := map[string]string{
"error": err.Error(),
}
if e, ok := err.(*exec.ExitError); ok {
if len(e.Stderr) > 0 {
diagnostic["stderr"] = string(e.Stderr)
}
}
t.YAML(diagnostic)
}
t.AutoPlan()
}
|