本文整理汇总了Golang中github.com/Comcast/traffic_control/traffic_ops/client.Session.ServersShortNameSearch方法的典型用法代码示例。如果您正苦于以下问题:Golang Session.ServersShortNameSearch方法的具体用法?Golang Session.ServersShortNameSearch怎么用?Golang Session.ServersShortNameSearch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/Comcast/traffic_control/traffic_ops/client.Session
的用法示例。
在下文中一共展示了Session.ServersShortNameSearch方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestServerShortName
func TestServerShortName(t *testing.T) {
resp := fixtures.Servers()
server := testHelper.ValidHTTPServer(resp)
defer server.Close()
var httpClient http.Client
to := client.Session{
URL: server.URL,
UserAgent: &httpClient,
}
pattern := "edge"
testHelper.Context(t, "Given the need to test a successful Traffic Ops request for servers that match Short Name: \"%s\"", pattern)
servers, err := to.ServersShortNameSearch(pattern)
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 servers[0] != "edge-alb-01" {
testHelper.Error(t, "Should get back \"edge-alb-01\", got: %s", servers[0])
} else {
testHelper.Success(t, "Should get back \"edge-alb-01\"")
}
if servers[1] != "edge-alb-02" {
testHelper.Error(t, "Should get back \"edge-alb-02\", got: %s", servers[1])
} else {
testHelper.Success(t, "Should get back \"edge-alb-02\"")
}
}
示例2: TestServerShortNameUnauthorized
func TestServerShortNameUnauthorized(t *testing.T) {
server := testHelper.InvalidHTTPServer(http.StatusUnauthorized)
defer server.Close()
var httpClient http.Client
to := client.Session{
URL: server.URL,
UserAgent: &httpClient,
}
pattern := "edge"
testHelper.Context(t, "Given the need to test a failed Traffic Ops request for servers that match Short Name: \"%s\"", pattern)
_, err := to.ServersShortNameSearch(pattern)
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")
}
}