mirror of
https://github.com/opencontainers/runc.git
synced 2025-10-05 07:27:03 +08:00

The only implementation of these is linuxContainer. It does not make sense to have an interface with a single implementation, and we do not foresee other types of containers being added to runc. Remove BaseContainer and Container interfaces, moving their methods documentation to linuxContainer. Rename linuxContainer to Container. Adopt users from using interface to using struct. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
112 lines
2.2 KiB
Go
112 lines
2.2 KiB
Go
package libcontainer
|
|
|
|
import (
|
|
"errors"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
var states = map[containerState]Status{
|
|
&createdState{}: Created,
|
|
&runningState{}: Running,
|
|
&restoredState{}: Running,
|
|
&pausedState{}: Paused,
|
|
&stoppedState{}: Stopped,
|
|
&loadedState{s: Running}: Running,
|
|
}
|
|
|
|
func TestStateStatus(t *testing.T) {
|
|
for s, status := range states {
|
|
if s.status() != status {
|
|
t.Fatalf("state returned %s but expected %s", s.status(), status)
|
|
}
|
|
}
|
|
}
|
|
|
|
func testTransitions(t *testing.T, initialState containerState, valid []containerState) {
|
|
validMap := map[reflect.Type]interface{}{}
|
|
for _, validState := range valid {
|
|
validMap[reflect.TypeOf(validState)] = nil
|
|
t.Run(validState.status().String(), func(t *testing.T) {
|
|
if err := initialState.transition(validState); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
}
|
|
for state := range states {
|
|
if _, ok := validMap[reflect.TypeOf(state)]; ok {
|
|
continue
|
|
}
|
|
t.Run(state.status().String(), func(t *testing.T) {
|
|
err := initialState.transition(state)
|
|
if err == nil {
|
|
t.Fatal("transition should fail")
|
|
}
|
|
var stErr *stateTransitionError
|
|
if !errors.As(err, &stErr) {
|
|
t.Fatal("expected stateTransitionError")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestStoppedStateTransition(t *testing.T) {
|
|
testTransitions(
|
|
t,
|
|
&stoppedState{c: &Container{}},
|
|
[]containerState{
|
|
&stoppedState{},
|
|
&runningState{},
|
|
&restoredState{},
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestPausedStateTransition(t *testing.T) {
|
|
testTransitions(
|
|
t,
|
|
&pausedState{c: &Container{}},
|
|
[]containerState{
|
|
&pausedState{},
|
|
&runningState{},
|
|
&stoppedState{},
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestRestoredStateTransition(t *testing.T) {
|
|
testTransitions(
|
|
t,
|
|
&restoredState{c: &Container{}},
|
|
[]containerState{
|
|
&stoppedState{},
|
|
&runningState{},
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestRunningStateTransition(t *testing.T) {
|
|
testTransitions(
|
|
t,
|
|
&runningState{c: &Container{}},
|
|
[]containerState{
|
|
&stoppedState{},
|
|
&pausedState{},
|
|
&runningState{},
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestCreatedStateTransition(t *testing.T) {
|
|
testTransitions(
|
|
t,
|
|
&createdState{c: &Container{}},
|
|
[]containerState{
|
|
&stoppedState{},
|
|
&pausedState{},
|
|
&runningState{},
|
|
&createdState{},
|
|
},
|
|
)
|
|
}
|