gitee.com/ks-custle/core-gm@v0.0.0-20230922171213-b83bdd97b62c/gmhttp/cookie_test.go (about) 1 // Copyright 2010 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package gmhttp 6 7 import ( 8 "bytes" 9 "encoding/json" 10 "fmt" 11 "log" 12 "os" 13 "reflect" 14 "strings" 15 "testing" 16 "time" 17 ) 18 19 var writeSetCookiesTests = []struct { 20 Cookie *Cookie 21 Raw string 22 }{ 23 { 24 &Cookie{Name: "cookie-1", Value: "v$1"}, 25 "cookie-1=v$1", 26 }, 27 { 28 &Cookie{Name: "cookie-2", Value: "two", MaxAge: 3600}, 29 "cookie-2=two; Max-Age=3600", 30 }, 31 { 32 &Cookie{Name: "cookie-3", Value: "three", Domain: ".example.com"}, 33 "cookie-3=three; Domain=example.com", 34 }, 35 { 36 &Cookie{Name: "cookie-4", Value: "four", Path: "/restricted/"}, 37 "cookie-4=four; Path=/restricted/", 38 }, 39 { 40 &Cookie{Name: "cookie-5", Value: "five", Domain: "wrong;bad.abc"}, 41 "cookie-5=five", 42 }, 43 { 44 &Cookie{Name: "cookie-6", Value: "six", Domain: "bad-.abc"}, 45 "cookie-6=six", 46 }, 47 { 48 &Cookie{Name: "cookie-7", Value: "seven", Domain: "127.0.0.1"}, 49 "cookie-7=seven; Domain=127.0.0.1", 50 }, 51 { 52 &Cookie{Name: "cookie-8", Value: "eight", Domain: "::1"}, 53 "cookie-8=eight", 54 }, 55 { 56 &Cookie{Name: "cookie-9", Value: "expiring", Expires: time.Unix(1257894000, 0)}, 57 "cookie-9=expiring; Expires=Tue, 10 Nov 2009 23:00:00 GMT", 58 }, 59 // According to IETF 6265 Section 5.1.1.5, the year cannot be less than 1601 60 { 61 &Cookie{Name: "cookie-10", Value: "expiring-1601", Expires: time.Date(1601, 1, 1, 1, 1, 1, 1, time.UTC)}, 62 "cookie-10=expiring-1601; Expires=Mon, 01 Jan 1601 01:01:01 GMT", 63 }, 64 { 65 &Cookie{Name: "cookie-11", Value: "invalid-expiry", Expires: time.Date(1600, 1, 1, 1, 1, 1, 1, time.UTC)}, 66 "cookie-11=invalid-expiry", 67 }, 68 { 69 &Cookie{Name: "cookie-12", Value: "samesite-default", SameSite: SameSiteDefaultMode}, 70 "cookie-12=samesite-default", 71 }, 72 { 73 &Cookie{Name: "cookie-13", Value: "samesite-lax", SameSite: SameSiteLaxMode}, 74 "cookie-13=samesite-lax; SameSite=Lax", 75 }, 76 { 77 &Cookie{Name: "cookie-14", Value: "samesite-strict", SameSite: SameSiteStrictMode}, 78 "cookie-14=samesite-strict; SameSite=Strict", 79 }, 80 { 81 &Cookie{Name: "cookie-15", Value: "samesite-none", SameSite: SameSiteNoneMode}, 82 "cookie-15=samesite-none; SameSite=None", 83 }, 84 // The "special" cookies have values containing commas or spaces which 85 // are disallowed by RFC 6265 but are common in the wild. 86 { 87 &Cookie{Name: "special-1", Value: "a z"}, 88 `special-1="a z"`, 89 }, 90 { 91 &Cookie{Name: "special-2", Value: " z"}, 92 `special-2=" z"`, 93 }, 94 { 95 &Cookie{Name: "special-3", Value: "a "}, 96 `special-3="a "`, 97 }, 98 { 99 &Cookie{Name: "special-4", Value: " "}, 100 `special-4=" "`, 101 }, 102 { 103 &Cookie{Name: "special-5", Value: "a,z"}, 104 `special-5="a,z"`, 105 }, 106 { 107 &Cookie{Name: "special-6", Value: ",z"}, 108 `special-6=",z"`, 109 }, 110 { 111 &Cookie{Name: "special-7", Value: "a,"}, 112 `special-7="a,"`, 113 }, 114 { 115 &Cookie{Name: "special-8", Value: ","}, 116 `special-8=","`, 117 }, 118 { 119 &Cookie{Name: "empty-value", Value: ""}, 120 `empty-value=`, 121 }, 122 { 123 nil, 124 ``, 125 }, 126 { 127 &Cookie{Name: ""}, 128 ``, 129 }, 130 { 131 &Cookie{Name: "\t"}, 132 ``, 133 }, 134 { 135 &Cookie{Name: "\r"}, 136 ``, 137 }, 138 { 139 &Cookie{Name: "a\nb", Value: "v"}, 140 ``, 141 }, 142 { 143 &Cookie{Name: "a\nb", Value: "v"}, 144 ``, 145 }, 146 { 147 &Cookie{Name: "a\rb", Value: "v"}, 148 ``, 149 }, 150 } 151 152 func TestWriteSetCookies(t *testing.T) { 153 defer log.SetOutput(os.Stderr) 154 var logbuf bytes.Buffer 155 log.SetOutput(&logbuf) 156 157 for i, tt := range writeSetCookiesTests { 158 if g, e := tt.Cookie.String(), tt.Raw; g != e { 159 t.Errorf("Test %d, expecting:\n%s\nGot:\n%s\n", i, e, g) 160 continue 161 } 162 } 163 164 if got, sub := logbuf.String(), "dropping domain attribute"; !strings.Contains(got, sub) { 165 t.Errorf("Expected substring %q in log output. Got:\n%s", sub, got) 166 } 167 } 168 169 type headerOnlyResponseWriter Header 170 171 func (ho headerOnlyResponseWriter) Header() Header { 172 return Header(ho) 173 } 174 175 func (ho headerOnlyResponseWriter) Write([]byte) (int, error) { 176 panic("NOIMPL") 177 } 178 179 func (ho headerOnlyResponseWriter) WriteHeader(int) { 180 panic("NOIMPL") 181 } 182 183 func TestSetCookie(t *testing.T) { 184 m := make(Header) 185 SetCookie(headerOnlyResponseWriter(m), &Cookie{Name: "cookie-1", Value: "one", Path: "/restricted/"}) 186 SetCookie(headerOnlyResponseWriter(m), &Cookie{Name: "cookie-2", Value: "two", MaxAge: 3600}) 187 if l := len(m["Set-Cookie"]); l != 2 { 188 t.Fatalf("expected %d cookies, got %d", 2, l) 189 } 190 if g, e := m["Set-Cookie"][0], "cookie-1=one; Path=/restricted/"; g != e { 191 t.Errorf("cookie #1: want %q, got %q", e, g) 192 } 193 if g, e := m["Set-Cookie"][1], "cookie-2=two; Max-Age=3600"; g != e { 194 t.Errorf("cookie #2: want %q, got %q", e, g) 195 } 196 } 197 198 var addCookieTests = []struct { 199 Cookies []*Cookie 200 Raw string 201 }{ 202 { 203 []*Cookie{}, 204 "", 205 }, 206 { 207 []*Cookie{{Name: "cookie-1", Value: "v$1"}}, 208 "cookie-1=v$1", 209 }, 210 { 211 []*Cookie{ 212 {Name: "cookie-1", Value: "v$1"}, 213 {Name: "cookie-2", Value: "v$2"}, 214 {Name: "cookie-3", Value: "v$3"}, 215 }, 216 "cookie-1=v$1; cookie-2=v$2; cookie-3=v$3", 217 }, 218 } 219 220 func TestAddCookie(t *testing.T) { 221 for i, tt := range addCookieTests { 222 //goland:noinspection HttpUrlsUsage 223 req, _ := NewRequest("GET", "http://example.com/", nil) 224 for _, c := range tt.Cookies { 225 req.AddCookie(c) 226 } 227 if g := req.Header.Get("Cookie"); g != tt.Raw { 228 t.Errorf("Test %d:\nwant: %s\n got: %s\n", i, tt.Raw, g) 229 continue 230 } 231 } 232 } 233 234 var readSetCookiesTests = []struct { 235 Header Header 236 Cookies []*Cookie 237 }{ 238 { 239 Header{"Set-Cookie": {"Cookie-1=v$1"}}, 240 []*Cookie{{Name: "Cookie-1", Value: "v$1", Raw: "Cookie-1=v$1"}}, 241 }, 242 { 243 Header{"Set-Cookie": {"NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly"}}, 244 []*Cookie{{ 245 Name: "NID", 246 Value: "99=YsDT5i3E-CXax-", 247 Path: "/", 248 Domain: ".google.ch", 249 HttpOnly: true, 250 Expires: time.Date(2011, 11, 23, 1, 5, 3, 0, time.UTC), 251 RawExpires: "Wed, 23-Nov-2011 01:05:03 GMT", 252 Raw: "NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly", 253 }}, 254 }, 255 { 256 Header{"Set-Cookie": {".ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly"}}, 257 []*Cookie{{ 258 Name: ".ASPXAUTH", 259 Value: "7E3AA", 260 Path: "/", 261 Expires: time.Date(2012, 3, 7, 14, 25, 6, 0, time.UTC), 262 RawExpires: "Wed, 07-Mar-2012 14:25:06 GMT", 263 HttpOnly: true, 264 Raw: ".ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly", 265 }}, 266 }, 267 { 268 Header{"Set-Cookie": {"ASP.NET_SessionId=foo; path=/; HttpOnly"}}, 269 []*Cookie{{ 270 Name: "ASP.NET_SessionId", 271 Value: "foo", 272 Path: "/", 273 HttpOnly: true, 274 Raw: "ASP.NET_SessionId=foo; path=/; HttpOnly", 275 }}, 276 }, 277 { 278 Header{"Set-Cookie": {"samesitedefault=foo; SameSite"}}, 279 []*Cookie{{ 280 Name: "samesitedefault", 281 Value: "foo", 282 SameSite: SameSiteDefaultMode, 283 Raw: "samesitedefault=foo; SameSite", 284 }}, 285 }, 286 { 287 Header{"Set-Cookie": {"samesiteinvalidisdefault=foo; SameSite=invalid"}}, 288 []*Cookie{{ 289 Name: "samesiteinvalidisdefault", 290 Value: "foo", 291 SameSite: SameSiteDefaultMode, 292 Raw: "samesiteinvalidisdefault=foo; SameSite=invalid", 293 }}, 294 }, 295 { 296 Header{"Set-Cookie": {"samesitelax=foo; SameSite=Lax"}}, 297 []*Cookie{{ 298 Name: "samesitelax", 299 Value: "foo", 300 SameSite: SameSiteLaxMode, 301 Raw: "samesitelax=foo; SameSite=Lax", 302 }}, 303 }, 304 { 305 Header{"Set-Cookie": {"samesitestrict=foo; SameSite=Strict"}}, 306 []*Cookie{{ 307 Name: "samesitestrict", 308 Value: "foo", 309 SameSite: SameSiteStrictMode, 310 Raw: "samesitestrict=foo; SameSite=Strict", 311 }}, 312 }, 313 { 314 Header{"Set-Cookie": {"samesitenone=foo; SameSite=None"}}, 315 []*Cookie{{ 316 Name: "samesitenone", 317 Value: "foo", 318 SameSite: SameSiteNoneMode, 319 Raw: "samesitenone=foo; SameSite=None", 320 }}, 321 }, 322 // Make sure we can properly read back the Set-Cookie headers we create 323 // for values containing spaces or commas: 324 { 325 Header{"Set-Cookie": {`special-1=a z`}}, 326 []*Cookie{{Name: "special-1", Value: "a z", Raw: `special-1=a z`}}, 327 }, 328 { 329 Header{"Set-Cookie": {`special-2=" z"`}}, 330 []*Cookie{{Name: "special-2", Value: " z", Raw: `special-2=" z"`}}, 331 }, 332 { 333 Header{"Set-Cookie": {`special-3="a "`}}, 334 []*Cookie{{Name: "special-3", Value: "a ", Raw: `special-3="a "`}}, 335 }, 336 { 337 Header{"Set-Cookie": {`special-4=" "`}}, 338 []*Cookie{{Name: "special-4", Value: " ", Raw: `special-4=" "`}}, 339 }, 340 { 341 Header{"Set-Cookie": {`special-5=a,z`}}, 342 []*Cookie{{Name: "special-5", Value: "a,z", Raw: `special-5=a,z`}}, 343 }, 344 { 345 Header{"Set-Cookie": {`special-6=",z"`}}, 346 []*Cookie{{Name: "special-6", Value: ",z", Raw: `special-6=",z"`}}, 347 }, 348 { 349 Header{"Set-Cookie": {`special-7=a,`}}, 350 []*Cookie{{Name: "special-7", Value: "a,", Raw: `special-7=a,`}}, 351 }, 352 { 353 Header{"Set-Cookie": {`special-8=","`}}, 354 []*Cookie{{Name: "special-8", Value: ",", Raw: `special-8=","`}}, 355 }, 356 357 // TODO(bradfitz): users have reported seeing this in the 358 // wild, but do browsers handle it? RFC 6265 just says "don't 359 // do that" (section 3) and then never mentions header folding 360 // again. 361 // Header{"Set-Cookie": {"ASP.NET_SessionId=foo; path=/; HttpOnly, .ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly"}}, 362 } 363 364 func toJSON(v interface{}) string { 365 b, err := json.Marshal(v) 366 if err != nil { 367 return fmt.Sprintf("%#v", v) 368 } 369 return string(b) 370 } 371 372 func TestReadSetCookies(t *testing.T) { 373 for i, tt := range readSetCookiesTests { 374 for n := 0; n < 2; n++ { // to verify readSetCookies doesn't mutate its input 375 c := readSetCookies(tt.Header) 376 if !reflect.DeepEqual(c, tt.Cookies) { 377 t.Errorf("#%d readSetCookies: have\n%s\nwant\n%s\n", i, toJSON(c), toJSON(tt.Cookies)) 378 continue 379 } 380 } 381 } 382 } 383 384 var readCookiesTests = []struct { 385 Header Header 386 Filter string 387 Cookies []*Cookie 388 }{ 389 { 390 Header{"Cookie": {"Cookie-1=v$1", "c2=v2"}}, 391 "", 392 []*Cookie{ 393 {Name: "Cookie-1", Value: "v$1"}, 394 {Name: "c2", Value: "v2"}, 395 }, 396 }, 397 { 398 Header{"Cookie": {"Cookie-1=v$1", "c2=v2"}}, 399 "c2", 400 []*Cookie{ 401 {Name: "c2", Value: "v2"}, 402 }, 403 }, 404 { 405 Header{"Cookie": {"Cookie-1=v$1; c2=v2"}}, 406 "", 407 []*Cookie{ 408 {Name: "Cookie-1", Value: "v$1"}, 409 {Name: "c2", Value: "v2"}, 410 }, 411 }, 412 { 413 Header{"Cookie": {"Cookie-1=v$1; c2=v2"}}, 414 "c2", 415 []*Cookie{ 416 {Name: "c2", Value: "v2"}, 417 }, 418 }, 419 { 420 Header{"Cookie": {`Cookie-1="v$1"; c2="v2"`}}, 421 "", 422 []*Cookie{ 423 {Name: "Cookie-1", Value: "v$1"}, 424 {Name: "c2", Value: "v2"}, 425 }, 426 }, 427 { 428 Header{"Cookie": {`Cookie-1="v$1"; c2=v2;`}}, 429 "", 430 []*Cookie{ 431 {Name: "Cookie-1", Value: "v$1"}, 432 {Name: "c2", Value: "v2"}, 433 }, 434 }, 435 { 436 Header{"Cookie": {``}}, 437 "", 438 []*Cookie{}, 439 }, 440 } 441 442 func TestReadCookies(t *testing.T) { 443 for i, tt := range readCookiesTests { 444 for n := 0; n < 2; n++ { // to verify readCookies doesn't mutate its input 445 c := readCookies(tt.Header, tt.Filter) 446 if !reflect.DeepEqual(c, tt.Cookies) { 447 t.Errorf("#%d readCookies:\nhave: %s\nwant: %s\n", i, toJSON(c), toJSON(tt.Cookies)) 448 continue 449 } 450 } 451 } 452 } 453 454 func TestSetCookieDoubleQuotes(t *testing.T) { 455 res := &Response{Header: Header{}} 456 res.Header.Add("Set-Cookie", `quoted0=none; max-age=30`) 457 res.Header.Add("Set-Cookie", `quoted1="cookieValue"; max-age=31`) 458 res.Header.Add("Set-Cookie", `quoted2=cookieAV; max-age="32"`) 459 res.Header.Add("Set-Cookie", `quoted3="both"; max-age="33"`) 460 got := res.Cookies() 461 want := []*Cookie{ 462 {Name: "quoted0", Value: "none", MaxAge: 30}, 463 {Name: "quoted1", Value: "cookieValue", MaxAge: 31}, 464 {Name: "quoted2", Value: "cookieAV"}, 465 {Name: "quoted3", Value: "both"}, 466 } 467 if len(got) != len(want) { 468 t.Fatalf("got %d cookies, want %d", len(got), len(want)) 469 } 470 for i, w := range want { 471 g := got[i] 472 if g.Name != w.Name || g.Value != w.Value || g.MaxAge != w.MaxAge { 473 t.Errorf("cookie #%d:\ngot %v\nwant %v", i, g, w) 474 } 475 } 476 } 477 478 func TestCookieSanitizeValue(t *testing.T) { 479 defer log.SetOutput(os.Stderr) 480 var logbuf bytes.Buffer 481 log.SetOutput(&logbuf) 482 483 tests := []struct { 484 in, want string 485 }{ 486 {"foo", "foo"}, 487 {"foo;bar", "foobar"}, 488 {"foo\\bar", "foobar"}, 489 {"foo\"bar", "foobar"}, 490 {"\x00\x7e\x7f\x80", "\x7e"}, 491 {`"withquotes"`, "withquotes"}, 492 {"a z", `"a z"`}, 493 {" z", `" z"`}, 494 {"a ", `"a "`}, 495 {"a,z", `"a,z"`}, 496 {",z", `",z"`}, 497 {"a,", `"a,"`}, 498 } 499 for _, tt := range tests { 500 if got := sanitizeCookieValue(tt.in); got != tt.want { 501 t.Errorf("sanitizeCookieValue(%q) = %q; want %q", tt.in, got, tt.want) 502 } 503 } 504 505 if got, sub := logbuf.String(), "dropping invalid bytes"; !strings.Contains(got, sub) { 506 t.Errorf("Expected substring %q in log output. Got:\n%s", sub, got) 507 } 508 } 509 510 func TestCookieSanitizePath(t *testing.T) { 511 defer log.SetOutput(os.Stderr) 512 var logbuf bytes.Buffer 513 log.SetOutput(&logbuf) 514 515 tests := []struct { 516 in, want string 517 }{ 518 {"/path", "/path"}, 519 {"/path with space/", "/path with space/"}, 520 {"/just;no;semicolon\x00orstuff/", "/justnosemicolonorstuff/"}, 521 } 522 for _, tt := range tests { 523 if got := sanitizeCookiePath(tt.in); got != tt.want { 524 t.Errorf("sanitizeCookiePath(%q) = %q; want %q", tt.in, got, tt.want) 525 } 526 } 527 528 if got, sub := logbuf.String(), "dropping invalid bytes"; !strings.Contains(got, sub) { 529 t.Errorf("Expected substring %q in log output. Got:\n%s", sub, got) 530 } 531 } 532 533 func BenchmarkCookieString(b *testing.B) { 534 const wantCookieString = `cookie-9=i3e01nf61b6t23bvfmplnanol3; Path=/restricted/; Domain=example.com; Expires=Tue, 10 Nov 2009 23:00:00 GMT; Max-Age=3600` 535 c := &Cookie{ 536 Name: "cookie-9", 537 Value: "i3e01nf61b6t23bvfmplnanol3", 538 Expires: time.Unix(1257894000, 0), 539 Path: "/restricted/", 540 Domain: ".example.com", 541 MaxAge: 3600, 542 } 543 var benchmarkCookieString string 544 b.ReportAllocs() 545 b.ResetTimer() 546 for i := 0; i < b.N; i++ { 547 benchmarkCookieString = c.String() 548 } 549 if have, want := benchmarkCookieString, wantCookieString; have != want { 550 b.Fatalf("Have: %v Want: %v", have, want) 551 } 552 } 553 554 func BenchmarkReadSetCookies(b *testing.B) { 555 header := Header{ 556 "Set-Cookie": { 557 "NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly", 558 ".ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly", 559 }, 560 } 561 wantCookies := []*Cookie{ 562 { 563 Name: "NID", 564 Value: "99=YsDT5i3E-CXax-", 565 Path: "/", 566 Domain: ".google.ch", 567 HttpOnly: true, 568 Expires: time.Date(2011, 11, 23, 1, 5, 3, 0, time.UTC), 569 RawExpires: "Wed, 23-Nov-2011 01:05:03 GMT", 570 Raw: "NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly", 571 }, 572 { 573 Name: ".ASPXAUTH", 574 Value: "7E3AA", 575 Path: "/", 576 Expires: time.Date(2012, 3, 7, 14, 25, 6, 0, time.UTC), 577 RawExpires: "Wed, 07-Mar-2012 14:25:06 GMT", 578 HttpOnly: true, 579 Raw: ".ASPXAUTH=7E3AA; expires=Wed, 07-Mar-2012 14:25:06 GMT; path=/; HttpOnly", 580 }, 581 } 582 var c []*Cookie 583 b.ReportAllocs() 584 b.ResetTimer() 585 for i := 0; i < b.N; i++ { 586 c = readSetCookies(header) 587 } 588 if !reflect.DeepEqual(c, wantCookies) { 589 b.Fatalf("readSetCookies:\nhave: %s\nwant: %s\n", toJSON(c), toJSON(wantCookies)) 590 } 591 } 592 593 func BenchmarkReadCookies(b *testing.B) { 594 header := Header{ 595 "Cookie": { 596 `de=; client_region=0; rpld1=0:hispeed.ch|20:che|21:zh|22:zurich|23:47.36|24:8.53|; rpld0=1:08|; backplane-channel=newspaper.com:1471; devicetype=0; osfam=0; rplmct=2; s_pers=%20s_vmonthnum%3D1472680800496%2526vn%253D1%7C1472680800496%3B%20s_nr%3D1471686767664-New%7C1474278767664%3B%20s_lv%3D1471686767669%7C1566294767669%3B%20s_lv_s%3DFirst%2520Visit%7C1471688567669%3B%20s_monthinvisit%3Dtrue%7C1471688567677%3B%20gvp_p5%3Dsports%253Ablog%253Aearly-lead%2520-%2520184693%2520-%252020160820%2520-%2520u-s%7C1471688567681%3B%20gvp_p51%3Dwp%2520-%2520sports%7C1471688567684%3B; s_sess=%20s_wp_ep%3Dhomepage%3B%20s._ref%3Dhttps%253A%252F%252Fwww.google.ch%252F%3B%20s_cc%3Dtrue%3B%20s_ppvl%3Dsports%25253Ablog%25253Aearly-lead%252520-%252520184693%252520-%25252020160820%252520-%252520u-lawyer%252C12%252C12%252C502%252C1231%252C502%252C1680%252C1050%252C2%252CP%3B%20s_ppv%3Dsports%25253Ablog%25253Aearly-lead%252520-%252520184693%252520-%25252020160820%252520-%252520u-s-lawyer%252C12%252C12%252C502%252C1231%252C502%252C1680%252C1050%252C2%252CP%3B%20s_dslv%3DFirst%2520Visit%3B%20s_sq%3Dwpninewspapercom%253D%252526pid%25253Dsports%2525253Ablog%2525253Aearly-lead%25252520-%25252520184693%25252520-%2525252020160820%25252520-%25252520u-s%252526pidt%25253D1%252526oid%25253Dhttps%2525253A%2525252F%2525252Fwww.newspaper.com%2525252F%2525253Fnid%2525253Dmenu_nav_homepage%252526ot%25253DA%3B`, 597 }, 598 } 599 wantCookies := []*Cookie{ 600 {Name: "de", Value: ""}, 601 {Name: "client_region", Value: "0"}, 602 {Name: "rpld1", Value: "0:hispeed.ch|20:che|21:zh|22:zurich|23:47.36|24:8.53|"}, 603 {Name: "rpld0", Value: "1:08|"}, 604 {Name: "backplane-channel", Value: "newspaper.com:1471"}, 605 {Name: "devicetype", Value: "0"}, 606 {Name: "osfam", Value: "0"}, 607 {Name: "rplmct", Value: "2"}, 608 {Name: "s_pers", Value: "%20s_vmonthnum%3D1472680800496%2526vn%253D1%7C1472680800496%3B%20s_nr%3D1471686767664-New%7C1474278767664%3B%20s_lv%3D1471686767669%7C1566294767669%3B%20s_lv_s%3DFirst%2520Visit%7C1471688567669%3B%20s_monthinvisit%3Dtrue%7C1471688567677%3B%20gvp_p5%3Dsports%253Ablog%253Aearly-lead%2520-%2520184693%2520-%252020160820%2520-%2520u-s%7C1471688567681%3B%20gvp_p51%3Dwp%2520-%2520sports%7C1471688567684%3B"}, 609 {Name: "s_sess", Value: "%20s_wp_ep%3Dhomepage%3B%20s._ref%3Dhttps%253A%252F%252Fwww.google.ch%252F%3B%20s_cc%3Dtrue%3B%20s_ppvl%3Dsports%25253Ablog%25253Aearly-lead%252520-%252520184693%252520-%25252020160820%252520-%252520u-lawyer%252C12%252C12%252C502%252C1231%252C502%252C1680%252C1050%252C2%252CP%3B%20s_ppv%3Dsports%25253Ablog%25253Aearly-lead%252520-%252520184693%252520-%25252020160820%252520-%252520u-s-lawyer%252C12%252C12%252C502%252C1231%252C502%252C1680%252C1050%252C2%252CP%3B%20s_dslv%3DFirst%2520Visit%3B%20s_sq%3Dwpninewspapercom%253D%252526pid%25253Dsports%2525253Ablog%2525253Aearly-lead%25252520-%25252520184693%25252520-%2525252020160820%25252520-%25252520u-s%252526pidt%25253D1%252526oid%25253Dhttps%2525253A%2525252F%2525252Fwww.newspaper.com%2525252F%2525253Fnid%2525253Dmenu_nav_homepage%252526ot%25253DA%3B"}, 610 } 611 var c []*Cookie 612 b.ReportAllocs() 613 b.ResetTimer() 614 for i := 0; i < b.N; i++ { 615 c = readCookies(header, "") 616 } 617 if !reflect.DeepEqual(c, wantCookies) { 618 b.Fatalf("readCookies:\nhave: %s\nwant: %s\n", toJSON(c), toJSON(wantCookies)) 619 } 620 }