File: cookie_test.go

package info (click to toggle)
golang-github-gorilla-sessions 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 160 kB
  • sloc: makefile: 2
file content (57 lines) | stat: -rw-r--r-- 1,804 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package sessions

import (
	"testing"
)

// Test for creating new http.Cookie from name, value and options
func TestNewCookieFromOptions(t *testing.T) {
	tests := []struct {
		name     string
		value    string
		path     string
		domain   string
		maxAge   int
		secure   bool
		httpOnly bool
	}{
		{"", "bar", "/foo/bar", "foo.example.com", 3600, true, true},
		{"foo", "", "/foo/bar", "foo.example.com", 3600, true, true},
		{"foo", "bar", "", "foo.example.com", 3600, true, true},
		{"foo", "bar", "/foo/bar", "", 3600, true, true},
		{"foo", "bar", "/foo/bar", "foo.example.com", 0, true, true},
		{"foo", "bar", "/foo/bar", "foo.example.com", 3600, false, true},
		{"foo", "bar", "/foo/bar", "foo.example.com", 3600, true, false},
	}
	for i, v := range tests {
		options := &Options{
			Path:     v.path,
			Domain:   v.domain,
			MaxAge:   v.maxAge,
			Secure:   v.secure,
			HttpOnly: v.httpOnly,
		}
		cookie := newCookieFromOptions(v.name, v.value, options)
		if cookie.Name != v.name {
			t.Fatalf("%v: bad cookie name: got %q, want %q", i+1, cookie.Name, v.name)
		}
		if cookie.Value != v.value {
			t.Fatalf("%v: bad cookie value: got %q, want %q", i+1, cookie.Value, v.value)
		}
		if cookie.Path != v.path {
			t.Fatalf("%v: bad cookie path: got %q, want %q", i+1, cookie.Path, v.path)
		}
		if cookie.Domain != v.domain {
			t.Fatalf("%v: bad cookie domain: got %q, want %q", i+1, cookie.Domain, v.domain)
		}
		if cookie.MaxAge != v.maxAge {
			t.Fatalf("%v: bad cookie maxAge: got %q, want %q", i+1, cookie.MaxAge, v.maxAge)
		}
		if cookie.Secure != v.secure {
			t.Fatalf("%v: bad cookie secure: got %v, want %v", i+1, cookie.Secure, v.secure)
		}
		if cookie.HttpOnly != v.httpOnly {
			t.Fatalf("%v: bad cookie httpOnly: got %v, want %v", i+1, cookie.HttpOnly, v.httpOnly)
		}
	}
}