1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-08-08 22:46:33 +02:00

Fix http.Cookie SameSite is not copied. (#450)

* fix: http.Cookie SameSite is not copied.

* Update CHANGELOG.md
This commit is contained in:
Mitsuo Heijo
2020-03-18 03:48:52 +09:00
committed by GitHub
parent 3108f765a5
commit 362cdf7713
3 changed files with 32 additions and 0 deletions

View File

@ -207,5 +207,6 @@ func copyCookie(c *http.Cookie) *http.Cookie {
HttpOnly: c.HttpOnly,
Raw: c.Raw,
Unparsed: c.Unparsed,
SameSite: c.SameSite,
}
}

View File

@ -0,0 +1,30 @@
package cookie
import (
"net/http"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func Test_copyCookie(t *testing.T) {
expire, _ := time.Parse(time.RFC3339, "2020-03-17T00:00:00Z")
c := &http.Cookie{
Name: "name",
Value: "value",
Path: "/path",
Domain: "x.y.z",
Expires: expire,
RawExpires: "rawExpire",
MaxAge: 1,
Secure: true,
HttpOnly: true,
Raw: "raw",
Unparsed: []string{"unparsed"},
SameSite: http.SameSiteLaxMode,
}
got := copyCookie(c)
assert.Equal(t, c, got)
}