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
|
package main
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strconv"
tap "github.com/mndrix/tap-go"
"github.com/opencontainers/runtime-tools/validation/util"
uuid "github.com/satori/go.uuid"
)
func main() {
t := tap.New()
t.Header(0)
tempDir, err := ioutil.TempDir("", "oci-pid")
if err != nil {
util.Fatal(err)
}
defer os.RemoveAll(tempDir)
tempPidFile := filepath.Join(tempDir, "pidfile")
g, err := util.GetDefaultGenerator()
if err != nil {
util.Fatal(err)
}
g.SetProcessArgs([]string{"true"})
config := util.LifecycleConfig{
Config: g,
Actions: util.LifecycleActionCreate | util.LifecycleActionDelete,
PreCreate: func(r *util.Runtime) error {
r.SetID(uuid.NewV4().String())
r.PidFile = tempPidFile
return nil
},
PostCreate: func(r *util.Runtime) error {
pidData, err := ioutil.ReadFile(tempPidFile)
if err != nil {
return err
}
pid, err := strconv.Atoi(string(pidData))
if err != nil {
return err
}
state, err := r.State()
if err != nil {
return err
}
if state.Pid != pid {
return fmt.Errorf("wrong pid %d, expected %d", pid, state.Pid)
}
return nil
},
}
err = util.RuntimeLifecycleValidate(config)
t.Ok(err == nil, "create with '--pid-file' option works")
if err != nil {
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()
}
|