atc: update client_test w/ success scenarios

the test was only making sure that we were getting the error-based
branches tested, but not the success case.

this commit increases that coverage.

Signed-off-by: Ciro S. Costa <cscosta@pivotal.io>
This commit is contained in:
Ciro S. Costa 2020-02-26 08:35:52 -05:00
parent 2ea073b9bf
commit bd28120f63
1 changed files with 37 additions and 2 deletions

View File

@ -218,8 +218,9 @@ var _ = Describe("Client", func() {
})
Describe("RunCheckStep", func() {
var (
// result []atc.Version
result []atc.Version
err, expectedErr error
fakeResource *resourcefakes.FakeResource
)
@ -235,7 +236,7 @@ var _ = Describe("Client", func() {
workerSpec := worker.WorkerSpec{}
fakeResourceTypes := atc.VersionedResourceTypes{}
_, err = client.RunCheckStep(
result, err = client.RunCheckStep(
context.Background(),
logger,
owner,
@ -299,6 +300,40 @@ var _ = Describe("Client", func() {
Expect(errors.Is(err, expectedErr)).To(BeTrue())
})
})
It("runs check w/ timeout", func() {
ctx, _, _ := fakeResource.CheckArgsForCall(0)
_, hasDeadline := ctx.Deadline()
Expect(hasDeadline).To(BeTrue())
})
It("uses the right executable path in the proc spec", func() {
_, processSpec, _ := fakeResource.CheckArgsForCall(0)
Expect(processSpec).To(Equal(runtime.ProcessSpec{
Path: "/opt/resource/check",
}))
})
It("uses the container as the runner", func() {
_, _, container := fakeResource.CheckArgsForCall(0)
Expect(container).To(Equal(fakeContainer))
})
Context("succeeding", func() {
BeforeEach(func() {
fakeResource.CheckReturns([]atc.Version{
{"version": "1"},
}, nil)
})
It("returns the versions", func() {
Expect(result).To(HaveLen(1))
Expect(result[0]).To(Equal(atc.Version{"version": "1"}))
})
})
})
})