2017-12-15 14:11:02 -07:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-12-15 14:11:02 -07:00
|
|
|
|
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2023-05-29 09:00:21 -06:00
|
|
|
"strings"
|
2017-12-15 14:11:02 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// RedirectURL returns the redirect URL of a http response.
|
|
|
|
func RedirectURL(resp http.ResponseWriter) string {
|
|
|
|
return resp.Header().Get("Location")
|
|
|
|
}
|
2023-05-29 09:00:21 -06:00
|
|
|
|
|
|
|
func IsNormalPageCompleted(s string) bool {
|
|
|
|
return strings.Contains(s, `<footer class="page-footer"`) && strings.Contains(s, `</html>`)
|
|
|
|
}
|