func TestProfilesUnauthorized(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 Profiles") _, err := to.Profiles() 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") } }
func TestProfile(t *testing.T) { resp := fixtures.Profiles() 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 Profiles") profiles, err := to.Profiles() 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(profiles) != 1 { testHelper.Error(t, "Should get back \"1\" Profile, got: %d", len(profiles)) } else { testHelper.Success(t, "Should get back \"1\" Profile") } for _, p := range profiles { if p.Name != "TR_CDN2" { testHelper.Error(t, "Should get back \"TR_CDN2\" for \"Name\", got: %s", p.Name) } else { testHelper.Success(t, "Should get back \"TR_CDN2\" for \"Name\"") } if p.Description != "kabletown Content Router" { testHelper.Error(t, "Should get back \"kabletown Content Router\" for \"Description\", got: %s", p.Description) } else { testHelper.Success(t, "Should get back \"kabletown Content Router\" for \"Description\"") } } }