本文整理匯總了Golang中github.com/cloudfoundry-incubator/routing-api/db.DB.ReadTcpRouteMappings方法的典型用法代碼示例。如果您正苦於以下問題:Golang DB.ReadTcpRouteMappings方法的具體用法?Golang DB.ReadTcpRouteMappings怎麽用?Golang DB.ReadTcpRouteMappings使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry-incubator/routing-api/db.DB
的用法示例。
在下文中一共展示了DB.ReadTcpRouteMappings方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
key := fmt.Sprintf("%s/%s/%d/%s:%d", db.TCP_MAPPING_BASE_KEY, "router-group-guid-001", 52000, "1.2.3.4", 60000)
node, err := etcdClient.Get(key)
Expect(err).NotTo(HaveOccurred())
Expect(node.Value).To(MatchJSON(`{
"route": {"router_group_guid":"router-group-guid-001", "external_port":52000},
"host_ip": "1.2.3.4",
"host_port": 60000
}`))
})
})
Describe("ReadTcpRouteMappings", func() {
It("Returns a empty list of routes", func() {
tcpMappings, err := etcd.ReadTcpRouteMappings()
Expect(err).NotTo(HaveOccurred())
Expect(tcpMappings).To(Equal([]db.TcpRouteMapping{}))
})
Context("when only one entry is present", func() {
BeforeEach(func() {
err := etcd.SaveTcpRouteMapping(tcpMapping)
Expect(err).NotTo(HaveOccurred())
})
It("Returns a list with one route", func() {
tcpMappings, err := etcd.ReadTcpRouteMappings()
Expect(err).NotTo(HaveOccurred())
Expect(tcpMappings).To(ContainElement(tcpMapping))
})
示例2:
Expect(fakeKeysAPI.GetCallCount()).To(Equal(2))
Expect(fakeKeysAPI.SetCallCount()).To(Equal(1))
})
})
})
})
})
})
Describe("ReadTcpRouteMappings", func() {
var tcpMappings []models.TcpRouteMapping
var err error
JustBeforeEach(func() {
tcpMappings, err = fakeEtcd.ReadTcpRouteMappings()
Expect(err).ToNot(HaveOccurred())
})
Context("when the tcp mapping key is missing", func() {
BeforeEach(func() {
fakeKeysAPI.GetReturns(nil, errors.New("key missing error"))
})
It("gives empty list of tcp mapping", func() {
Expect(tcpMappings).To(HaveLen(0))
})
})
Context("when there are no tcp mapping", func() {
BeforeEach(func() {
fakeKeysAPI.GetReturns(&client.Response{Node: &client.Node{}}, nil)