[TESTS] MockVariable temporarily replaces a global value

defer test.MockVariable(&variable, 1234)()

(cherry picked from commit 9c78752444)
This commit is contained in:
Loïc Dachary 2023-07-01 01:20:44 +02:00 committed by Earl Warren
parent a12386d418
commit d7795d7b25
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -33,3 +33,11 @@ func RedirectURL(resp http.ResponseWriter) string {
func IsNormalPageCompleted(s string) bool {
return strings.Contains(s, `<footer class="page-footer"`) && strings.Contains(s, `</html>`)
}
func MockVariable[T any](variable *T, mock T) func() {
original := *variable
*variable = mock
return func() {
*variable = original
}
}