100 lines
2.2 KiB
Go
100 lines
2.2 KiB
Go
package action_test
|
|
|
|
import (
|
|
"os"
|
|
|
|
. "github.com/kairos-io/enki/pkg/action"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("DockerfileAction", func() {
|
|
var action *DockerfileAction
|
|
|
|
When("both a rootfs dir and a base image URI are defined", func() {
|
|
BeforeEach(func() {
|
|
action = NewDockerfileAction("somedir", "quay.io/kairos/someimage")
|
|
})
|
|
|
|
It("returns an error", func() {
|
|
_, err := action.Run()
|
|
Expect(err).To(HaveOccurred())
|
|
})
|
|
})
|
|
|
|
Describe("defining the base image", func() {
|
|
When("rootfs dir is defined", func() {
|
|
var rootfsPath string
|
|
|
|
BeforeEach(func() {
|
|
rootfsPath = prepareEmptyRootfs()
|
|
action = NewDockerfileAction(rootfsPath, "")
|
|
})
|
|
|
|
AfterEach(func() {
|
|
os.RemoveAll(rootfsPath)
|
|
})
|
|
|
|
It("uses the provided rootfs as a base", func() {
|
|
dockerfile, err := action.Run()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(dockerfile).To(MatchRegexp("COPY --from=builder /rootfs/ ."))
|
|
})
|
|
})
|
|
|
|
When("a base image uri is defined", func() {
|
|
BeforeEach(func() {
|
|
action = NewDockerfileAction("", "ubuntu:latest")
|
|
})
|
|
|
|
It("starts with the provided base image", func() {
|
|
dockerfile, err := action.Run()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(dockerfile).To(MatchRegexp("FROM ubuntu:latest as base"))
|
|
})
|
|
})
|
|
})
|
|
|
|
Describe("adding kairos bits", func() {
|
|
When("rootfs dir is defined", func() {
|
|
var rootfsPath string
|
|
|
|
BeforeEach(func() {
|
|
rootfsPath = prepareRootfsFromImage("ubuntu:latest")
|
|
action = NewDockerfileAction(rootfsPath, "")
|
|
})
|
|
|
|
AfterEach(func() {
|
|
cleanupDir(rootfsPath)
|
|
})
|
|
|
|
It("adds Kairos bits", func() {
|
|
checkForKairosBits(action)
|
|
})
|
|
})
|
|
|
|
When("base image URI is defined", func() {
|
|
BeforeEach(func() {
|
|
action = NewDockerfileAction("", "ubuntu:latest")
|
|
})
|
|
|
|
It("adds Kairos bits", func() {
|
|
checkForKairosBits(action)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
func checkForKairosBits(action *DockerfileAction) {
|
|
dockerfile, err := action.Run()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
By("checking for installation of luet")
|
|
Expect(dockerfile).To(MatchRegexp("quay.io/luet/base.* /usr/bin/luet"))
|
|
|
|
By("checking installation of overlay files")
|
|
// TODO
|
|
}
|