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
|
package main
import (
"fmt"
"os/exec"
"time"
"github.com/mndrix/tap-go"
rspecs "github.com/opencontainers/runtime-spec/specs-go"
rfc2119 "github.com/opencontainers/runtime-tools/error"
"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)
g, err := util.GetDefaultGenerator()
if err != nil {
util.Fatal(err)
}
g.SetProcessArgs([]string{"true"})
containerID := uuid.NewV4().String()
cases := []struct {
id string
action util.LifecycleAction
errExpected bool
err *rfc2119.Error
}{
{"", util.LifecycleActionNone, false, specerror.NewRFCErrorOrPanic(specerror.QueryWithoutIDGenError, fmt.Errorf("state MUST generate an error if it is not provided the ID of a container"), rspecs.Version)},
{containerID, util.LifecycleActionNone, false, specerror.NewRFCErrorOrPanic(specerror.QueryNonExistGenError, fmt.Errorf("state MUST generate an error if a container that does not exist"), rspecs.Version)},
{containerID, util.LifecycleActionCreate | util.LifecycleActionDelete, true, specerror.NewRFCErrorOrPanic(specerror.QueryStateImplement, fmt.Errorf("state MUST return the state of a container as specified in the State section"), rspecs.Version)},
}
for _, c := range cases {
config := util.LifecycleConfig{
Config: g,
Actions: c.action,
PreCreate: func(r *util.Runtime) error {
r.SetID(c.id)
return nil
},
PostCreate: func(r *util.Runtime) error {
_, err = r.State()
r.Kill("KILL")
util.WaitingForStatus(*r, util.LifecycleStatusStopped, time.Second*10, time.Second)
return err
},
}
err = util.RuntimeLifecycleValidate(config)
// DefaultStateJSONPattern might returns
if e, ok := err.(*specerror.Error); ok {
diagnostic := map[string]string{
"reference": e.Err.Reference,
"error": e.Err.Error(),
}
t.YAML(diagnostic)
continue
}
t.Ok((err == nil) == c.errExpected, c.err.Error())
diagnostic := map[string]string{
"reference": c.err.Reference,
}
if err != nil {
diagnostic["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()
}
|