mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
713 B
25 lines
713 B
2 years ago
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package context
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
2 years ago
|
"net/http/httptest"
|
||
2 years ago
|
"testing"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/setting"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestRemoveSessionCookieHeader(t *testing.T) {
|
||
2 years ago
|
w := httptest.NewRecorder()
|
||
2 years ago
|
w.Header().Add("Set-Cookie", (&http.Cookie{Name: setting.SessionConfig.CookieName, Value: "foo"}).String())
|
||
|
w.Header().Add("Set-Cookie", (&http.Cookie{Name: "other", Value: "bar"}).String())
|
||
2 years ago
|
assert.Len(t, w.Header().Values("Set-Cookie"), 2)
|
||
|
removeSessionCookieHeader(w)
|
||
|
assert.Len(t, w.Header().Values("Set-Cookie"), 1)
|
||
|
assert.Contains(t, "other=bar", w.Header().Get("Set-Cookie"))
|
||
|
}
|