Files
podman/pkg/bindings/test/create_test.go
Brent Baude 2cc3be7332 RUN-4539: Change podman module paths
The podman module paths are moving from github.com/containers/podman to
go.podman.io/podman.  This will help with future mobility.

Signed-off-by: Brent Baude <bbaude@redhat.com>
2026-04-22 14:02:25 -05:00

51 lines
1.2 KiB
Go

package bindings_test
import (
"time"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/gexec"
"go.podman.io/podman/v6/pkg/bindings/containers"
"go.podman.io/podman/v6/pkg/specgen"
)
var _ = Describe("Create containers ", func() {
var (
bt *bindingTest
s *gexec.Session
)
BeforeEach(func() {
bt = newBindingTest()
bt.RestoreImagesFromCache()
s = bt.startAPIService()
time.Sleep(1 * time.Second)
err := bt.NewConnection()
Expect(err).ToNot(HaveOccurred())
})
AfterEach(func() {
s.Kill()
bt.cleanup()
})
It("create a container running top", func() {
s := specgen.NewSpecGenerator(alpine.name, false)
s.Command = []string{"top"}
terminal := true
s.Terminal = &terminal
s.Name = "top"
ctr, err := containers.CreateWithSpec(bt.conn, s, nil)
Expect(err).ToNot(HaveOccurred())
data, err := containers.Inspect(bt.conn, ctr.ID, nil)
Expect(err).ToNot(HaveOccurred())
Expect(data.Name).To(Equal("top"))
err = containers.Start(bt.conn, ctr.ID, nil)
Expect(err).ToNot(HaveOccurred())
data, err = containers.Inspect(bt.conn, ctr.ID, nil)
Expect(err).ToNot(HaveOccurred())
Expect(data.State.Status).To(Equal("running"))
})
})