本文整理匯總了Golang中code/cloudfoundry/org/bbs/models.DesiredLRP.Routes方法的典型用法代碼示例。如果您正苦於以下問題:Golang DesiredLRP.Routes方法的具體用法?Golang DesiredLRP.Routes怎麽用?Golang DesiredLRP.Routes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類code/cloudfoundry/org/bbs/models.DesiredLRP
的用法示例。
在下文中一共展示了DesiredLRP.Routes方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
}
annotation := "annotated"
update = &models.DesiredLRPUpdate{
Instances: &instances,
Routes: &routes,
Annotation: &annotation,
}
_, err := sqlDB.UpdateDesiredLRP(logger, expectedDesiredLRP.ProcessGuid, update)
Expect(err).NotTo(HaveOccurred())
desiredLRP, err := sqlDB.DesiredLRPByProcessGuid(logger, expectedDesiredLRP.ProcessGuid)
Expect(err).NotTo(HaveOccurred())
expectedDesiredLRP.Instances = instances
expectedDesiredLRP.Annotation = annotation
expectedDesiredLRP.Routes = &routes
expectedDesiredLRP.ModificationTag.Increment()
Expect(desiredLRP).To(BeEquivalentTo(expectedDesiredLRP))
})
It("returns the desired lrp from before the update", func() {
instances := int32(20)
update = &models.DesiredLRPUpdate{
Instances: &instances,
}
beforeDesiredLRP, err := sqlDB.UpdateDesiredLRP(logger, expectedDesiredLRP.ProcessGuid, update)
Expect(err).NotTo(HaveOccurred())
Expect(beforeDesiredLRP).To(Equal(expectedDesiredLRP))
})
示例2:
protoSerialization, err := proto.Marshal(&desiredLRP)
Expect(err).NotTo(HaveOccurred())
var protoDeserialization models.DesiredLRP
err = proto.Unmarshal(protoSerialization, &protoDeserialization)
Expect(err).NotTo(HaveOccurred())
desiredRoutes := *desiredLRP.Routes
deserializedRoutes := *protoDeserialization.Routes
Expect(deserializedRoutes).To(HaveLen(len(desiredRoutes)))
for k := range desiredRoutes {
Expect(string(*deserializedRoutes[k])).To(MatchJSON(string(*desiredRoutes[k])))
}
desiredLRP.Routes = nil
protoDeserialization.Routes = nil
Expect(protoDeserialization).To(Equal(desiredLRP))
})
})
Describe("ApplyUpdate", func() {
It("updates instances", func() {
instances := int32(100)
update := &models.DesiredLRPUpdate{Instances: &instances}
schedulingInfo := desiredLRP.DesiredLRPSchedulingInfo()
expectedSchedulingInfo := schedulingInfo
expectedSchedulingInfo.Instances = instances
expectedSchedulingInfo.ModificationTag.Increment()