本文整理匯總了Golang中github.com/Comcast/traffic_control/traffic_ops/client.Session.DeliveryServiceCapacity方法的典型用法代碼示例。如果您正苦於以下問題:Golang Session.DeliveryServiceCapacity方法的具體用法?Golang Session.DeliveryServiceCapacity怎麽用?Golang Session.DeliveryServiceCapacity使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/Comcast/traffic_control/traffic_ops/client.Session
的用法示例。
在下文中一共展示了Session.DeliveryServiceCapacity方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestDeliveryServiceCapacityUnauthorized
func TestDeliveryServiceCapacityUnauthorized(t *testing.T) {
server := testHelper.InvalidHTTPServer(http.StatusUnauthorized)
defer server.Close()
var httpClient http.Client
to := client.Session{
URL: server.URL,
UserAgent: &httpClient,
}
testHelper.Context(t, "Given the need to test a failed Traffic Ops request for a DeliveryServiceCapacity")
_, err := to.DeliveryServiceCapacity("123")
if err == nil {
testHelper.Error(t, "Should not be able to make a request to Traffic Ops")
} else {
testHelper.Success(t, "Should not be able to make a request to Traffic Ops")
}
}
示例2: TestDeliveryServiceCapacity
func TestDeliveryServiceCapacity(t *testing.T) {
resp := fixtures.DeliveryServiceCapacity()
server := testHelper.ValidHTTPServer(resp)
defer server.Close()
var httpClient http.Client
to := client.Session{
URL: server.URL,
UserAgent: &httpClient,
}
testHelper.Context(t, "Given the need to test a successful Traffic Ops request for a DeliveryServiceCapacity")
capacity, err := to.DeliveryServiceCapacity("123")
if err != nil {
testHelper.Error(t, "Should be able to make a request to Traffic Ops")
} else {
testHelper.Success(t, "Should be able to make a request to Traffic Ops")
}
if capacity.AvailablePercent != 90.12345 {
testHelper.Error(t, "Should get back \"90.12345\" for \"AvailablePercent\", got: %s", capacity.AvailablePercent)
} else {
testHelper.Success(t, "Should get back \"90.12345\" for \"AvailablePercent\"")
}
if capacity.UnavailablePercent != 90.12345 {
testHelper.Error(t, "Should get back \"90.12345\" for \"UnavailablePercent\", got: %s", capacity.UnavailablePercent)
} else {
testHelper.Success(t, "Should get back \"90.12345\" for \"UnavailablePercent\"")
}
if capacity.UtilizedPercent != 90.12345 {
testHelper.Error(t, "Should get back \"90.12345\" for \"UtilizedPercent\", got: %s", capacity.UtilizedPercent)
} else {
testHelper.Success(t, "Should get back \"90.12345\" for \"UtilizedPercent\"")
}
}