summaryrefslogtreecommitdiff
path: root/pkg/bindings/test/containers_test.go
blob: 5a0bdebe66904c5881abd4353bcb6059299f7328 (plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
package test_bindings

import (
	"context"
	"net/http"
	"strconv"
	"time"

	"github.com/containers/libpod/pkg/bindings"
	"github.com/containers/libpod/pkg/bindings/containers"
	"github.com/containers/libpod/test/utils"
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
	"github.com/onsi/gomega/gexec"
)

var _ = Describe("Podman containers ", func() {
	var (
		bt        *bindingTest
		s         *gexec.Session
		connText  context.Context
		err       error
		falseFlag bool = false
		trueFlag  bool = true
	)

	BeforeEach(func() {
		bt = newBindingTest()
		bt.RestoreImagesFromCache()
		s = bt.startAPIService()
		time.Sleep(1 * time.Second)
		connText, err = bindings.NewConnection(context.Background(), bt.sock)
		Expect(err).To(BeNil())
	})

	AfterEach(func() {
		s.Kill()
		bt.cleanup()
	})

	It("podman pause a bogus container", func() {
		// Pausing bogus container should return 404
		err = containers.Pause(connText, "foobar")
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusNotFound))
	})

	It("podman unpause a bogus container", func() {
		// Unpausing bogus container should return 404
		err = containers.Unpause(connText, "foobar")
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusNotFound))
	})

	It("podman pause a running container by name", func() {
		// Pausing by name should work
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		err := containers.Pause(connText, name)
		Expect(err).To(BeNil())

		// Ensure container is paused
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		Expect(data.State.Status).To(Equal("paused"))
	})

	It("podman pause a running container by id", func() {
		// Pausing by id should work
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, data.ID)
		Expect(err).To(BeNil())

		// Ensure container is paused
		data, err = containers.Inspect(connText, data.ID, nil)
		Expect(data.State.Status).To(Equal("paused"))
	})

	It("podman unpause a running container by name", func() {
		// Unpausing by name should work
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		err := containers.Pause(connText, name)
		Expect(err).To(BeNil())
		err = containers.Unpause(connText, name)
		Expect(err).To(BeNil())

		// Ensure container is unpaused
		data, err := containers.Inspect(connText, name, nil)
		Expect(data.State.Status).To(Equal("running"))
	})

	It("podman unpause a running container by ID", func() {
		// Unpausing by ID should work
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		// Pause by name
		err := containers.Pause(connText, name)
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		err = containers.Unpause(connText, data.ID)
		Expect(err).To(BeNil())

		// Ensure container is unpaused
		data, err = containers.Inspect(connText, name, nil)
		Expect(data.State.Status).To(Equal("running"))
	})

	It("podman pause a paused container by name", func() {
		// Pausing a paused container by name should fail
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		err := containers.Pause(connText, name)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, name)
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusInternalServerError))
	})

	It("podman pause a paused container by id", func() {
		// Pausing a paused container by id should fail
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, data.ID)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, data.ID)
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusInternalServerError))
	})

	It("podman pause a stopped container by name", func() {
		// Pausing a stopped container by name should fail
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		err := containers.Stop(connText, name, nil)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, name)
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusInternalServerError))
	})

	It("podman pause a stopped container by id", func() {
		// Pausing a stopped container by id should fail
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		data, err := containers.Inspect(connText, name, nil)
		err = containers.Stop(connText, data.ID, nil)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, data.ID)
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusInternalServerError))
	})

	It("podman remove a paused container by id without force", func() {
		// Removing a paused container without force should fail
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, data.ID)
		Expect(err).To(BeNil())
		err = containers.Remove(connText, data.ID, &falseFlag, &falseFlag)
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusInternalServerError))
	})

	It("podman remove a paused container by id with force", func() {
		// FIXME: Skip on F31 and later
		host := utils.GetHostDistributionInfo()
		osVer, err := strconv.Atoi(host.Version)
		Expect(err).To(BeNil())
		if host.Distribution == "fedora" && osVer >= 31 {
			Skip("FIXME: https://github.com/containers/libpod/issues/5325")
		}

		// Removing a paused container with force should work
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, data.ID)
		Expect(err).To(BeNil())
		err = containers.Remove(connText, data.ID, &trueFlag, &falseFlag)
		Expect(err).To(BeNil())
	})

	It("podman stop a paused container by name", func() {
		// Stopping a paused container by name should fail
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		err := containers.Pause(connText, name)
		Expect(err).To(BeNil())
		err = containers.Stop(connText, name, nil)
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusInternalServerError))
	})

	It("podman stop a paused container by id", func() {
		// Stopping a paused container by id should fail
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		err = containers.Pause(connText, data.ID)
		Expect(err).To(BeNil())
		err = containers.Stop(connText, data.ID, nil)
		Expect(err).ToNot(BeNil())
		code, _ := bindings.CheckResponseCode(err)
		Expect(code).To(BeNumerically("==", http.StatusInternalServerError))
	})

	It("podman stop a running container by name", func() {
		// Stopping a running container by name should work
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		err := containers.Stop(connText, name, nil)
		Expect(err).To(BeNil())

		// Ensure container is stopped
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		Expect(isStopped(data.State.Status)).To(BeTrue())
	})

	It("podman stop a running container by ID", func() {
		// Stopping a running container by ID should work
		var name = "top"
		bt.RunTopContainer(&name, &falseFlag, nil)
		data, err := containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		err = containers.Stop(connText, data.ID, nil)
		Expect(err).To(BeNil())

		// Ensure container is stopped
		data, err = containers.Inspect(connText, name, nil)
		Expect(err).To(BeNil())
		Expect(isStopped(data.State.Status)).To(BeTrue())
	})

})