本文整理匯總了Golang中github.com/Comcast/traffic_control/traffic_ops/client.Session.Users方法的典型用法代碼示例。如果您正苦於以下問題:Golang Session.Users方法的具體用法?Golang Session.Users怎麽用?Golang Session.Users使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/Comcast/traffic_control/traffic_ops/client.Session
的用法示例。
在下文中一共展示了Session.Users方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestUsers
func TestUsers(t *testing.T) {
resp := fixtures.Users()
server := testHelper.ValidHTTPServer(resp.Response)
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 Users")
users, err := to.Users()
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")
}
for _, u := range users {
if u.FullName != "Bob Smith" {
testHelper.Error(t, "Should get back \"Bob Smith\" for \"FullName\", got %s", u.FullName)
} else {
testHelper.Success(t, "Should get back \"Bob Smith\" for \"FullName\"")
}
if u.PublicSSHKey != "some-ssh-key" {
testHelper.Error(t, "Should get back \"some-ssh-key\" for \"PublicSSHKey\", got %s", u.PublicSSHKey)
} else {
testHelper.Success(t, "Should get back \"some-ssh-key\" for \"PublicSSHKey\"")
}
if u.Role != "3" {
testHelper.Error(t, "Should get back \"3\" for \"Role\", got %s", u.Role)
} else {
testHelper.Success(t, "Should get back \"3\" for \"Role\"")
}
if u.Email != "[email protected]" {
testHelper.Error(t, "Should get back \"[email protected]\" for \"Email\", got %s", u.Email)
} else {
testHelper.Success(t, "Should get back \"[email protected]\" for \"Email\"")
}
if u.Username != "bsmith" {
testHelper.Error(t, "Should get back \"bsmith\" for \"Username\", got %s", u.Username)
} else {
testHelper.Success(t, "Should get back \"bsmith\" for \"Username\"")
}
}
}
示例2: TestUsersUnauthorized
func TestUsersUnauthorized(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 Users")
_, err := to.Users()
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")
}
}