本文整理汇总了Golang中github.com/Comcast/traffic_control/traffic_ops/client.Session.SummaryStats方法的典型用法代码示例。如果您正苦于以下问题:Golang Session.SummaryStats方法的具体用法?Golang Session.SummaryStats怎么用?Golang Session.SummaryStats使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/Comcast/traffic_control/traffic_ops/client.Session
的用法示例。
在下文中一共展示了Session.SummaryStats方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestStatsSummary
func TestStatsSummary(t *testing.T) {
resp := fixtures.StatsSummary()
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 Stats Summary")
stats, err := to.SummaryStats("test-cdn", "test-ds1", "test-stat")
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 len(stats) != 1 {
testHelper.Error(t, "Should get back \"1\" Parameter, got: %d", len(stats))
} else {
testHelper.Success(t, "Should get back \"1\" Parameter")
}
for _, s := range stats {
if s.StatName != "test-stat" {
testHelper.Error(t, "Should get back \"test-stat\" for \"StatName\", got: %s", s.StatName)
} else {
testHelper.Success(t, "Should get back \"test-stat\" for \"StatName\"")
}
if s.DeliveryService != "test-ds1" {
testHelper.Error(t, "Should get back \"test-ds1\" for \"DeliveryService\", got: %s", s.DeliveryService)
} else {
testHelper.Success(t, "Should get back \"test-ds1\" for \"DeliveryService\"")
}
if s.StatValue != "3.1415" {
testHelper.Error(t, "Should get back \"3.1415\" for \"StatValue\", got: %s", s.StatValue)
} else {
testHelper.Success(t, "Should get back \"3.1415\" for \"StatValue\"")
}
if s.CDNName != "test-cdn" {
testHelper.Error(t, "Should get back \"test-cdn\" for \"CDNName\", got: %s", s.CDNName)
} else {
testHelper.Success(t, "Should get back \"test-cdn\" for \"CDNName\"")
}
}
}
示例2: TestStatsSummaryUnauthorized
func TestStatsSummaryUnauthorized(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 Stats Summary")
_, err := to.SummaryStats("test-cdn", "test-ds1", "test-stat")
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")
}
}