50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
package job
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/stackanetes/kubernetes-entrypoint/entrypoint"
|
|
"github.com/stackanetes/kubernetes-entrypoint/mocks"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
const testJobName = "TEST_JOB_NAME"
|
|
const testJobNamespace = "TEST_JOB_NAMESPACE"
|
|
|
|
var testEntrypoint entrypoint.EntrypointInterface
|
|
|
|
var _ = Describe("Job", func() {
|
|
|
|
BeforeEach(func() {
|
|
testEntrypoint = mocks.NewEntrypoint()
|
|
})
|
|
|
|
It("checks the name of a newly created job", func() {
|
|
job := NewJob(testJobName, testJobNamespace)
|
|
|
|
Expect(job.name).To(Equal(testJobName))
|
|
Expect(job.namespace).To(Equal(testJobNamespace))
|
|
})
|
|
|
|
It("checks resolution of a succeeding job", func() {
|
|
job := NewJob(mocks.SucceedingJobName, mocks.SucceedingJobName)
|
|
|
|
isResolved, err := job.IsResolved(testEntrypoint)
|
|
|
|
Expect(isResolved).To(Equal(true))
|
|
Expect(err).NotTo(HaveOccurred())
|
|
})
|
|
|
|
It("checks resolution failure of a failing job", func() {
|
|
job := NewJob(mocks.FailingJobName, mocks.FailingJobName)
|
|
|
|
isResolved, err := job.IsResolved(testEntrypoint)
|
|
|
|
Expect(isResolved).To(Equal(false))
|
|
Expect(err.Error()).To(Equal(fmt.Sprintf(FailingStatusFormat, job)))
|
|
Expect(err.Error()).To(Equal(fmt.Sprintf(FailingStatusFormat, job)))
|
|
})
|
|
})
|