Exemplo n.º 1
0
		It("Returns a single broker contained in a slice with all dependencies populated", func() {
			brokers, err := actor.GetBrokerWithSingleService("my-service2")
			Expect(err).NotTo(HaveOccurred())

			Expect(len(brokers)).To(Equal(1))
			Expect(len(brokers[0].Services)).To(Equal(1))

			Expect(brokers[0].Services[0].Guid).To(Equal("service-guid2"))
			Expect(brokers[0].Services[0].Plans[0].Name).To(Equal("service-plan2"))
			Expect(brokers[0].Services[0].Plans[0].OrgNames).To(Equal([]string{"org1", "org2"}))
		})
	})

	Describe("GetBrokerWithDependencies", func() {
		It("Returns a single broker contained in a slice with all dependencies populated", func() {
			brokers, err := actor.GetBrokerWithDependencies("my-service-broker2")
			Expect(err).NotTo(HaveOccurred())

			Expect(len(brokers)).To(Equal(1))
			Expect(len(brokers[0].Services)).To(Equal(2))

			Expect(brokers[0].Services[0].Guid).To(Equal("service-guid"))
			Expect(brokers[0].Services[0].Plans[0].Name).To(Equal("service-plan"))
			Expect(brokers[0].Services[0].Plans[1].Name).To(Equal("other-plan"))
			Expect(brokers[0].Services[1].Guid).To(Equal("service-guid2"))
			Expect(brokers[0].Services[1].Plans[0].Name).To(Equal("service-plan2"))
			Expect(brokers[0].Services[1].Plans[0].OrgNames).To(Equal([]string{"org1", "org2"}))
		})

	})