2023-04-27 08:06:45 +02:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2023-05-13 16:04:57 +02:00
|
|
|
"net/http/httptest"
|
2023-04-27 08:06:45 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRemoveSessionCookieHeader(t *testing.T) {
|
2023-05-13 16:04:57 +02:00
|
|
|
w := httptest.NewRecorder()
|
2023-05-09 09:34:36 +02:00
|
|
|
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())
|
2023-04-27 08:06:45 +02:00
|
|
|
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"))
|
|
|
|
}
|