本文整理匯總了Golang中github.com/nttlabs/cli/cf/api/security_groups/fakes.FakeSecurityGroupRepo.ReadReturns方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeSecurityGroupRepo.ReadReturns方法的具體用法?Golang FakeSecurityGroupRepo.ReadReturns怎麽用?Golang FakeSecurityGroupRepo.ReadReturns使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/nttlabs/cli/cf/api/security_groups/fakes.FakeSecurityGroupRepo
的用法示例。
在下文中一共展示了FakeSecurityGroupRepo.ReadReturns方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
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("unbinds the group from the running group set", func() {
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Unbinding", "security group", "a-security-group-name", "my-user"},
[]string{"TIP: Changes will not apply to existing running applications until they are restarted."},
[]string{"OK"},
))
Expect(fakeSecurityGroupRepo.ReadArgsForCall(0)).To(Equal("a-security-group-name"))
Expect(fakeRunningSecurityGroupsRepo.UnbindFromRunningSetArgsForCall(0)).To(Equal("just-pretend-this-is-a-guid"))
示例2:
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)
spaceRepo.FindByNameInOrgSpace = models.Space{SpaceFields: models.SpaceFields{Name: "my-space", Guid: "my-space-guid"}}
})
It("removes the security group when we only pass the security group name (using the targeted org and space)", func() {
runCommand("my-group")
Expect(ui.Outputs).To(ContainSubstrings(
示例3:
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"}
示例4:
runCommand("my-group-name")
Expect(ui.FailedWithUsage).To(BeTrue())
})
})
Context("when the user is logged in", func() {
var tempFile *os.File
BeforeEach(func() {
requirementsFactory.LoginSuccess = true
securityGroup := models.SecurityGroup{
SecurityGroupFields: models.SecurityGroupFields{
Name: "my-group-name",
Guid: "my-group-guid",
},
}
securityGroupRepo.ReadReturns(securityGroup, nil)
tempFile, _ = ioutil.TempFile("", "")
})
AfterEach(func() {
tempFile.Close()
os.Remove(tempFile.Name())
})
JustBeforeEach(func() {
runCommand("my-group-name", tempFile.Name())
})
Context("when the file specified has valid json", func() {
BeforeEach(func() {
tempFile.Write([]byte(`[{"protocol":"udp","port":"8080-9090","destination":"198.41.191.47/1"}]`))
示例5:
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 = "being-a-guid"
group.Name = "security-group-name"
fakeSecurityGroupRepo.ReadReturns(group, nil)
})
JustBeforeEach(func() {
runCommand("security-group-name")
})
It("Describes what it is doing to the user", func() {
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Binding", "security-group-name", "as", "my-user"},
[]string{"OK"},
[]string{"TIP: Changes will not apply to existing running applications until they are restarted."},
))
})
It("binds the group to the running group set", func() {
示例6:
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() {
示例7:
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{"["},