Describe("creating a random TCP route", func() { var ( domain models.DomainFields route models.Route ) BeforeEach(func() { domain = models.DomainFields{ Name: "dies-tcp.com", } route = models.Route{ GUID: "some-guid", } fakeRouteRepository.CreateReturns(route, nil) }) It("calls Create on the route repo", func() { routeActor.CreateRandomTCPRoute(domain) host, d, path, randomPort := fakeRouteRepository.CreateArgsForCall(0) Expect(host).To(BeEmpty()) Expect(d).To(Equal(domain)) Expect(path).To(BeEmpty()) Expect(randomPort).To(BeTrue()) }) It("states which route it's creating", func() { routeActor.CreateRandomTCPRoute(domain)
fakeUI = &terminalfakes.FakeUI{} fakeRouteRepository = new(apifakes.FakeRouteRepository) routeActor = NewRouteActor(fakeUI, fakeRouteRepository) }) Describe("CreateRandomTCPRoute", func() { BeforeEach(func() { expectedDomain = models.DomainFields{ Name: "dies-tcp.com", } expectedRoute = models.Route{ GUID: "some-guid", } fakeRouteRepository.CreateReturns(expectedRoute, nil) }) It("calls Create on the route repo", func() { routeActor.CreateRandomTCPRoute(expectedDomain) host, d, path, randomPort := fakeRouteRepository.CreateArgsForCall(0) Expect(host).To(BeEmpty()) Expect(d).To(Equal(expectedDomain)) Expect(path).To(BeEmpty()) Expect(randomPort).To(BeTrue()) }) It("states that a route is being created", func() { routeActor.CreateRandomTCPRoute(expectedDomain)
fakeDomainRepository = new(apifakes.FakeDomainRepository) routeActor = NewRouteActor(fakeUI, fakeRouteRepository, fakeDomainRepository) wordGenerator = new(generatorfakes.FakeWordGenerator) }) Describe("CreateRandomTCPRoute", func() { BeforeEach(func() { expectedDomain = models.DomainFields{ Name: "dies-tcp.com", } expectedRoute = models.Route{ GUID: "some-guid", } fakeRouteRepository.CreateReturns(expectedRoute, nil) }) It("calls Create on the route repo", func() { routeActor.CreateRandomTCPRoute(expectedDomain) host, d, path, port, randomPort := fakeRouteRepository.CreateArgsForCall(0) Expect(host).To(BeEmpty()) Expect(d).To(Equal(expectedDomain)) Expect(path).To(BeEmpty()) Expect(port).To(Equal(0)) Expect(randomPort).To(BeTrue()) }) It("states that a route is being created", func() { routeActor.CreateRandomTCPRoute(expectedDomain)