completely revert change in topgun resource types test

Signed-off-by: Rui Yang <ruiya@vmware.com>
This commit is contained in:
Rui Yang 2022-05-20 09:47:57 -04:00
parent 1adf6e96dd
commit b352f9657d
1 changed files with 8 additions and 8 deletions

View File

@ -22,11 +22,11 @@ var _ = Describe("A pipeline-provided resource type", func() {
<-buildSession.Exited
Expect(buildSession.ExitCode()).To(Equal(1))
By("expecting a container for the resource check, resource type check, task resource type check and task image check")
Expect(ContainersBy("type", "check")).To(HaveLen(4))
By("expecting a container for the resource check, resource type check and task image check")
Expect(ContainersBy("type", "check")).To(HaveLen(3))
By("expecting a container for resource type check, resource type get, resource check, resource get in get step. expecting a container for nested resource type check, image check, image get and task run in task step. In total 8 containers.")
expectedContainersBefore := 8
By("expecting a container for resource type check, resource type get, resource check, resource get in get step. expecting a container for image check, image get and task run in task step. In total 7 containers.")
expectedContainersBefore := 7
Expect(FlyTable("containers")).Should(HaveLen(expectedContainersBefore))
By("triggering the build again")
@ -34,11 +34,11 @@ var _ = Describe("A pipeline-provided resource type", func() {
<-buildSession.Exited
Expect(buildSession.ExitCode()).To(Equal(1))
By("expecting additional check containers for the task's image check and nested resource type check.")
Expect(ContainersBy("type", "check")).To(HaveLen(6))
By("expecting only one additional check containers for the task's image check")
Expect(ContainersBy("type", "check")).To(HaveLen(4))
By("expecting to only have new containers for build task image check, nested resource type check and build task")
Expect(FlyTable("containers")).Should(HaveLen(expectedContainersBefore + 3))
By("expecting to only have new containers for build task image check and build task")
Expect(FlyTable("containers")).Should(HaveLen(expectedContainersBefore + 2))
})
})