aboutsummaryrefslogtreecommitdiff
path: root/libpod/state_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-03-27 15:00:16 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-29 01:27:40 +0000
commit5b6f59e36cc68bf5bb2e0bd363fe005b55bf0c8f (patch)
tree9e28485f76d74a28948bd379bda019d47d150077 /libpod/state_test.go
parent196c3ab3a5b5c0fc803473a8c1dfa7d794a78425 (diff)
downloadpodman-5b6f59e36cc68bf5bb2e0bd363fe005b55bf0c8f.tar.gz
podman-5b6f59e36cc68bf5bb2e0bd363fe005b55bf0c8f.tar.bz2
podman-5b6f59e36cc68bf5bb2e0bd363fe005b55bf0c8f.zip
Prevent ctrs not in pods from depending on pod ctrs
Containers in pods cannot depend on containers outside of the same pod. Make the reverse true as well - containers not in pods cannot depend on containers in pods. This greatly simplifies our dependency handling, as we can guarantee that removing a pod will not encounter dependency issues. Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #558 Approved by: rhatdan
Diffstat (limited to 'libpod/state_test.go')
-rw-r--r--libpod/state_test.go64
1 files changed, 32 insertions, 32 deletions
diff --git a/libpod/state_test.go b/libpod/state_test.go
index 634280c99..8b6abdb8d 100644
--- a/libpod/state_test.go
+++ b/libpod/state_test.go
@@ -273,6 +273,38 @@ func TestAddCtrInPodFails(t *testing.T) {
})
}
+func TestAddCtrDepInPodFails(t *testing.T) {
+ runForAllStates(t, func(t *testing.T, state State, lockPath string) {
+ testPod, err := getTestPod1(lockPath)
+ assert.NoError(t, err)
+
+ testCtr1, err := getTestCtr2(lockPath)
+ assert.NoError(t, err)
+
+ testCtr1.config.Pod = testPod.ID()
+
+ testCtr2, err := getTestCtrN("3", lockPath)
+ assert.NoError(t, err)
+
+ testCtr2.config.UserNsCtr = testCtr1.ID()
+
+ err = state.AddPod(testPod)
+ assert.NoError(t, err)
+
+ err = state.AddContainerToPod(testPod, testCtr1)
+ assert.NoError(t, err)
+
+ err = state.AddContainer(testCtr2)
+ assert.Error(t, err)
+
+ ctrs, err := state.AllContainers()
+ assert.NoError(t, err)
+ assert.Equal(t, 1, len(ctrs))
+
+ testContainersEqual(t, testCtr1, ctrs[0])
+ })
+}
+
func TestGetNonexistentContainerFails(t *testing.T) {
runForAllStates(t, func(t *testing.T, state State, lockPath string) {
_, err := state.Container("does not exist")
@@ -1749,38 +1781,6 @@ func TestRemovePodContainerDependencyInPod(t *testing.T) {
})
}
-func TestRemovePodContainerDependencyNotInPod(t *testing.T) {
- runForAllStates(t, func(t *testing.T, state State, lockPath string) {
- testPod, err := getTestPod1(lockPath)
- assert.NoError(t, err)
-
- testCtr1, err := getTestCtr2(lockPath)
- assert.NoError(t, err)
- testCtr1.config.Pod = testPod.ID()
-
- testCtr2, err := getTestCtrN("3", lockPath)
- assert.NoError(t, err)
- testCtr2.config.IPCNsCtr = testCtr1.ID()
-
- err = state.AddPod(testPod)
- assert.NoError(t, err)
-
- err = state.AddContainerToPod(testPod, testCtr1)
- assert.NoError(t, err)
-
- err = state.AddContainer(testCtr2)
- assert.NoError(t, err)
-
- err = state.RemovePodContainers(testPod)
- t.Logf("Err %v", err)
- assert.Error(t, err)
-
- ctrs, err := state.PodContainersByID(testPod)
- assert.NoError(t, err)
- assert.Equal(t, 1, len(ctrs))
- })
-}
-
func TestAddContainerToPodInvalidPod(t *testing.T) {
runForAllStates(t, func(t *testing.T, state State, lockPath string) {
testCtr, err := getTestCtr1(lockPath)