当前位置: 首页>>代码示例>>Golang>>正文


Golang ActualLRPKey.Domain方法代码示例

本文整理汇总了Golang中github.com/cloudfoundry-incubator/bbs/models.ActualLRPKey.Domain方法的典型用法代码示例。如果您正苦于以下问题:Golang ActualLRPKey.Domain方法的具体用法?Golang ActualLRPKey.Domain怎么用?Golang ActualLRPKey.Domain使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/cloudfoundry-incubator/bbs/models.ActualLRPKey的用法示例。


在下文中一共展示了ActualLRPKey.Domain方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1:

				})
			})

			Context("when the ProcessGuid is blank", func() {
				BeforeEach(func() {
					actualLRPKey.ProcessGuid = ""
				})

				It("returns a validation error", func() {
					Expect(actualLRPKey.Validate()).To(ConsistOf(models.ErrInvalidField{"process_guid"}))
				})
			})

			Context("when the Domain is blank", func() {
				BeforeEach(func() {
					actualLRPKey.Domain = ""
				})

				It("returns a validation error", func() {
					Expect(actualLRPKey.Validate()).To(ConsistOf(models.ErrInvalidField{"domain"}))
				})
			})

			Context("when the Index is negative", func() {
				BeforeEach(func() {
					actualLRPKey.Index = -1
				})

				It("returns a validation error", func() {
					Expect(actualLRPKey.Validate()).To(ConsistOf(models.ErrInvalidField{"index"}))
				})
开发者ID:rowhit,项目名称:lattice,代码行数:31,代码来源:actual_lrp_test.go

示例2:

					})

					It("should clear placement error", func() {
						Expect(startErr).NotTo(HaveOccurred())
						Expect(startedActualLRP.PlacementError).To(BeEmpty())
						lrp, err := etcdDB.ActualLRPGroupByProcessGuidAndIndex(logger, processGuid, index)
						Expect(err).NotTo(HaveOccurred())
						Expect(lrp.Instance.PlacementError).To(BeEmpty())
					})
				})
			})

			Context("when the domain differs", func() {
				BeforeEach(func() {
					lrpKey = actualLRP.ActualLRPKey
					lrpKey.Domain = "some-other-domain"
					instanceKey = models.NewActualLRPInstanceKey("some-guid", cellID)
					netInfo = models.NewActualLRPNetInfo("1.2.3.4", models.NewPortMapping(5678, 1234))
				})

				It("returns an error", func() {
					Expect(startErr).To(Equal(models.ErrActualLRPCannotBeStarted))
				})

				It("does not modify the persisted actual LRP", func() {
					lrpGroupInBBS, err := etcdDB.ActualLRPGroupByProcessGuidAndIndex(logger, processGuid, index)
					Expect(err).NotTo(HaveOccurred())

					Expect(lrpGroupInBBS.Instance.State).To(Equal(models.ActualLRPStateUnclaimed))
				})
			})
开发者ID:Gerg,项目名称:bbs,代码行数:31,代码来源:actual_lrp_db_test.go


注:本文中的github.com/cloudfoundry-incubator/bbs/models.ActualLRPKey.Domain方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。