(hostName string)
| 429 | } |
| 430 | |
| 431 | func createIdentityUrl(hostName string) url.URL { |
| 432 | if hostName == "" { |
| 433 | hostName = "localhost" |
| 434 | } |
| 435 | identityUrl, _ := url.Parse(fmt.Sprintf("http://%s/identity_", hostName)) |
| 436 | return *identityUrl |
| 437 | } |
| 438 | |
| 439 | func performLogin(loginUrl url.URL, t *testing.T) string { |
| 440 | redirectUri := loginUrl.Query().Get("redirect_uri") |
no test coverage detected