-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Liang Chenye <[email protected]>
- Loading branch information
1 parent
4902e9c
commit 02909e4
Showing
4 changed files
with
162 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"time" | ||
|
||
"github.com/mndrix/tap-go" | ||
rspecs "github.com/opencontainers/runtime-spec/specs-go" | ||
"github.com/opencontainers/runtime-tools/generate" | ||
"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) | ||
bundleDir, err := util.PrepareBundle() | ||
if err != nil { | ||
util.Fatal(err) | ||
} | ||
defer os.RemoveAll(bundleDir) | ||
|
||
stoppedConfig := util.GetDefaultGenerator() | ||
stoppedConfig.SetProcessArgs([]string{"true"}) | ||
runningConfig := util.GetDefaultGenerator() | ||
runningConfig.SetProcessArgs([]string{"sleep", "30"}) | ||
containerID := uuid.NewV4().String() | ||
|
||
cases := []struct { | ||
config *generate.Generator | ||
id string | ||
action util.LifecycleAction | ||
errExpected bool | ||
err error | ||
}{ | ||
// Note: the nil config test case should run first since we are re-using the bundle | ||
// kill without id | ||
{nil, "", util.LifecycleActionNone, false, specerror.NewError(specerror.KillWithoutIDGenError, fmt.Errorf("`kill` operation MUST generate an error if it is not provided the container ID"), rspecs.Version)}, | ||
// kill a non exist container | ||
{nil, containerID, util.LifecycleActionNone, false, specerror.NewError(specerror.KillNonCreateRunGenError, fmt.Errorf("attempting to send a signal to a container that is neither `created` nor `running` MUST generate an error"), rspecs.Version)}, | ||
// kill a created | ||
{stoppedConfig, containerID, util.LifecycleActionCreate | util.LifecycleActionDelete, true, specerror.NewError(specerror.KillSignalImplement, fmt.Errorf("`kill` operation MUST send the specified signal to the container process"), rspecs.Version)}, | ||
// kill a stopped | ||
{stoppedConfig, containerID, util.LifecycleActionCreate | util.LifecycleActionStart | util.LifecycleActionDelete, false, specerror.NewError(specerror.KillSignalImplement, fmt.Errorf("`kill` operation MUST send the specified signal to the container process"), rspecs.Version)}, | ||
// kill a running | ||
{runningConfig, containerID, util.LifecycleActionCreate | util.LifecycleActionStart | util.LifecycleActionDelete, true, specerror.NewError(specerror.KillSignalImplement, fmt.Errorf("`kill` operation MUST send the specified signal to the container process"), rspecs.Version)}, | ||
} | ||
|
||
for _, c := range cases { | ||
config := util.LifecycleConfig{ | ||
Config: c.config, | ||
BundleDir: bundleDir, | ||
Actions: c.action, | ||
PreCreate: func(r *util.Runtime) error { | ||
r.SetID(c.id) | ||
return nil | ||
}, | ||
PreDelete: func(r *util.Runtime) error { | ||
// waiting the 'stoppedConfig' testcase to stop | ||
// the 'runningConfig' testcase sleeps 30 seconds, so 10 seconds are enough for this case | ||
util.WaitingForStatus(*r, util.LifecycleStatusCreated|util.LifecycleStatusStopped, time.Second*10, time.Second*1) | ||
// KILL MUST be supported and KILL cannot be trapped | ||
err := r.Kill("KILL") | ||
util.WaitingForStatus(*r, util.LifecycleStatusStopped, time.Second*10, time.Second*1) | ||
return err | ||
}, | ||
} | ||
err := util.RuntimeLifecycleValidate(config) | ||
util.SpecErrorOK(t, (err == nil) == c.errExpected, c.err, err) | ||
} | ||
|
||
t.AutoPlan() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
"time" | ||
|
||
"github.com/mndrix/tap-go" | ||
rspecs "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" | ||
) | ||
|
||
var signals = []string{ | ||
"TERM", | ||
} | ||
|
||
func main() { | ||
t := tap.New() | ||
t.Header(0) | ||
bundleDir, err := util.PrepareBundle() | ||
fmt.Println(bundleDir) | ||
if err != nil { | ||
util.Fatal(err) | ||
} | ||
defer os.RemoveAll(bundleDir) | ||
|
||
containerID := uuid.NewV4().String() | ||
sigConfig := util.GetDefaultGenerator() | ||
rootDir := filepath.Join(bundleDir, sigConfig.Spec().Root.Path) | ||
for _, signal := range signals { | ||
sigConfig.SetProcessArgs([]string{"sh", "-c", fmt.Sprintf("trap 'touch /%s' %s; sleep 10 & wait $!", signal, signal)}) | ||
config := util.LifecycleConfig{ | ||
Config: sigConfig, | ||
BundleDir: bundleDir, | ||
Actions: util.LifecycleActionCreate | util.LifecycleActionStart | util.LifecycleActionDelete, | ||
PreCreate: func(r *util.Runtime) error { | ||
r.SetID(containerID) | ||
return nil | ||
}, | ||
PreDelete: func(r *util.Runtime) error { | ||
util.WaitingForStatus(*r, util.LifecycleStatusRunning, time.Second*5, time.Second*1) | ||
err := r.Kill(signal) | ||
// wait before the container been deleted | ||
util.WaitingForStatus(*r, util.LifecycleStatusStopped, time.Second*5, time.Second*1) | ||
return err | ||
}, | ||
} | ||
err := util.RuntimeLifecycleValidate(config) | ||
if err != nil { | ||
util.SpecErrorOK(t, false, specerror.NewError(specerror.KillSignalImplement, fmt.Errorf("`kill` operation MUST send the specified signal to the container process"), rspecs.Version), err) | ||
} else { | ||
_, err = os.Stat(filepath.Join(rootDir, signal)) | ||
util.SpecErrorOK(t, err == nil, specerror.NewError(specerror.KillSignalImplement, fmt.Errorf("`kill` operation MUST send the specified signal to the container process"), rspecs.Version), err) | ||
} | ||
} | ||
t.AutoPlan() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters