本文整理汇总了Golang中github.com/cloudfoundry-incubator/bbs/fake_bbs.FakeClient.DesiredLRPByProcessGuidStub方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeClient.DesiredLRPByProcessGuidStub方法的具体用法?Golang FakeClient.DesiredLRPByProcessGuidStub怎么用?Golang FakeClient.DesiredLRPByProcessGuidStub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/bbs/fake_bbs.FakeClient
的用法示例。
在下文中一共展示了FakeClient.DesiredLRPByProcessGuidStub方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
var httpHandler http.Handler
httpClient = &http.Client{}
logger = lagertest.NewTestLogger("test")
bbsClient = new(fake_bbs.FakeClient)
noaaClient = &fakes.FakeNoaaClient{}
httpHandler, err = handler.New(bbsClient, noaaClient, 2, 15, logger)
Expect(err).NotTo(HaveOccurred())
server = httptest.NewServer(httpHandler)
fakeActualLRPResponses = make(chan []*models.ActualLRPGroup, 2)
bbsClient.DesiredLRPByProcessGuidStub = func(string) (*models.DesiredLRP, error) {
return &models.DesiredLRP{}, nil
}
bbsClient.ActualLRPGroupsByProcessGuidStub = func(string) ([]*models.ActualLRPGroup, error) {
return <-fakeActualLRPResponses, nil
}
noaaClient.ContainerMetricsReturns([]*events.ContainerMetric{
{
ApplicationId: proto.String("appId"),
InstanceIndex: proto.Int32(0),
CpuPercentage: proto.Float64(4),
MemoryBytes: proto.Uint64(1024),
DiskBytes: proto.Uint64(2048),
},
}, nil)