requirementsFactory.LoginSuccess = true runCommand() Expect(ui.FailedWithUsage).To(BeTrue()) }) }) Context("when the user is logged in", func() { BeforeEach(func() { requirementsFactory.LoginSuccess = true securityGroup := models.SecurityGroup{ SecurityGroupFields: models.SecurityGroupFields{ Name: "my-group-name", Guid: "my-group-guid", }, } securityGroupRepo.ReadReturns(securityGroup, nil) }) It("updates the security group", func() { runCommand("my-group") arg1, _ := securityGroupRepo.UpdateArgsForCall(0) Expect(arg1).To(Equal("my-group-guid")) }) It("displays a message describing what its going to do", func() { runCommand("my-group") Expect(ui.Outputs).To(ContainSubstrings( []string{"Updating security group", "my-group", "my-user"}, []string{"OK"}, )) })
Context("when logged in", func() { BeforeEach(func() { requirementsFactory.LoginSuccess = true }) Context("when everything exists", func() { BeforeEach(func() { securityGroup := models.SecurityGroup{ SecurityGroupFields: models.SecurityGroupFields{ Name: "my-group", Guid: "my-group-guid", Rules: []map[string]interface{}{}, }, } securityGroupRepo.ReadReturns(securityGroup, nil) orgRepo.ListOrgsReturns([]models.Organization{{ OrganizationFields: models.OrganizationFields{ Name: "my-org", Guid: "my-org-guid", }}, }, nil) space := models.Space{SpaceFields: models.SpaceFields{Name: "my-space", Guid: "my-space-guid"}} spaceRepo.FindByNameInOrgReturns(space, nil) }) It("removes the security group when we only pass the security group name (using the targeted org and space)", func() { runCommand("my-group")
Expect(testcmd.CommandDidPassRequirements).To(BeFalse()) }) It("fails with usage when a name is not provided", func() { runCommand() Expect(ui.FailedWithUsage).To(BeTrue()) }) }) Context("when the user is logged in and provides the name of a group", func() { BeforeEach(func() { requirementsFactory.LoginSuccess = true group := models.SecurityGroup{} group.Guid = "just-pretend-this-is-a-guid" group.Name = "a-security-group-name" fakeSecurityGroupRepo.ReadReturns(group, nil) }) JustBeforeEach(func() { runCommand("a-security-group-name") }) It("adds the group to the default staging group set", func() { Expect(fakeSecurityGroupRepo.ReadArgsForCall(0)).To(Equal("a-security-group-name")) Expect(fakeStagingSecurityGroupRepo.AddToStagingSetArgsForCall(0)).To(Equal("just-pretend-this-is-a-guid")) }) It("describes what it's doing to the user", func() { Expect(ui.Outputs).To(ContainSubstrings( []string{"Adding", "a-security-group-name", "as", "my-user"}, []string{"OK"},
Guid: "group-guid", Rules: rulesMap, }, Spaces: []models.Space{ { SpaceFields: models.SpaceFields{Guid: "my-space-guid-1", Name: "space-1"}, Organization: models.OrganizationFields{Guid: "my-org-guid-1", Name: "org-1"}, }, { SpaceFields: models.SpaceFields{Guid: "my-space-guid", Name: "space-2"}, Organization: models.OrganizationFields{Guid: "my-org-guid-1", Name: "org-2"}, }, }, } securityGroupRepo.ReadReturns(securityGroup, nil) }) It("should fetch the security group from its repo", func() { runCommand("my-group") Expect(securityGroupRepo.ReadArgsForCall(0)).To(Equal("my-group")) }) It("tells the user what it's about to do and then shows the group", func() { runCommand("my-group") Expect(ui.Outputs).To(ContainSubstrings( []string{"Getting", "security group", "my-group", "my-user"}, []string{"OK"}, []string{"Name", "my-group"}, []string{"Rules"}, []string{"["},
It("fails with usage when not provided the name of a security group, org, and space", func() { requirementsFactory.LoginSuccess = true runCommand("one fish", "two fish", "three fish", "purple fish") Expect(ui.FailedWithUsage).To(BeTrue()) }) }) Context("when the user is logged in and provides the name of a security group", func() { BeforeEach(func() { requirementsFactory.LoginSuccess = true }) Context("when a security group with that name does not exist", func() { BeforeEach(func() { fakeSecurityGroupRepo.ReadReturns(models.SecurityGroup{}, errors.NewModelNotFoundError("security group", "my-nonexistent-security-group")) }) It("fails and tells the user", func() { runCommand("my-nonexistent-security-group", "my-org", "my-space") Expect(fakeSecurityGroupRepo.ReadArgsForCall(0)).To(Equal("my-nonexistent-security-group")) Expect(ui.Outputs).To(ContainSubstrings( []string{"FAILED"}, []string{"security group", "my-nonexistent-security-group", "not found"}, )) }) }) Context("when the org does not exist", func() { BeforeEach(func() {
requirementsFactory.LoginSuccess = true runCommand("whoops", "I can't believe", "I accidentally", "the whole thing") Expect(ui.FailedWithUsage).To(BeTrue()) }) }) Context("when logged in", func() { BeforeEach(func() { requirementsFactory.LoginSuccess = true }) Context("when the group with the given name exists", func() { BeforeEach(func() { securityGroupRepo.ReadReturns(models.SecurityGroup{ SecurityGroupFields: models.SecurityGroupFields{ Name: "my-group", Guid: "group-guid", }, }, nil) }) Context("delete a security group", func() { It("when passed the -f flag", func() { runCommand("-f", "my-group") Expect(securityGroupRepo.ReadArgsForCall(0)).To(Equal("my-group")) Expect(securityGroupRepo.DeleteArgsForCall(0)).To(Equal("group-guid")) Expect(ui.Prompts).To(BeEmpty()) }) It("should prompt user when -f flag is not present", func() { ui.Inputs = []string{"y"}
runCommand() Expect(ui.FailedWithUsage).To(BeTrue()) }) }) Context("when the user is logged in and provides the name of a group", func() { BeforeEach(func() { requirementsFactory.LoginSuccess = true }) Context("security group exists", func() { BeforeEach(func() { group := models.SecurityGroup{} group.Guid = "just-pretend-this-is-a-guid" group.Name = "a-security-group-name" fakeSecurityGroupRepo.ReadReturns(group, nil) }) JustBeforeEach(func() { runCommand("a-security-group-name") }) It("removes the group from the default staging group set", func() { Expect(ui.Outputs).To(ContainSubstrings( []string{"Removing", "security group", "a-security-group-name", "my-user"}, []string{"OK"}, )) Expect(fakeSecurityGroupRepo.ReadArgsForCall(0)).To(Equal("a-security-group-name")) Expect(fakeStagingSecurityGroupsRepo.RemoveFromStagingSetArgsForCall(0)).To(Equal("just-pretend-this-is-a-guid")) })