mirror of https://github.com/gofiber/fiber.git
📚 Doc: Update comment for session cookie verification in CSRF proxy middleware test
parent
598b9ff12d
commit
f202f4d362
|
@ -1627,7 +1627,7 @@ func Test_CSRF_With_Proxy_Middleware(t *testing.T) {
|
||||||
}
|
}
|
||||||
require.True(t, foundCSRFCookie, "CSRF cookie '%s' not found in response headers after proxy", csrfCookieName)
|
require.True(t, foundCSRFCookie, "CSRF cookie '%s' not found in response headers after proxy", csrfCookieName)
|
||||||
|
|
||||||
// Optional: Verify session cookie is also present
|
// Additionally: Verify session cookie is also present
|
||||||
foundSessionCookie := false
|
foundSessionCookie := false
|
||||||
sessionCookieName := "session_id" // Default name for session.NewWithStore() unless configured otherwise
|
sessionCookieName := "session_id" // Default name for session.NewWithStore() unless configured otherwise
|
||||||
for _, cookie := range resp.Cookies() {
|
for _, cookie := range resp.Cookies() {
|
||||||
|
|
Loading…
Reference in New Issue