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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
//! A module implementing HPACK functionality. Exposes a simple API for //! performing the encoding and decoding of header sets, according to the //! HPACK spec. #[macro_use] extern crate log; #[cfg(feature="interop_tests")] extern crate rustc_serialize; use std::fmt; use std::iter; use std::slice; use std::collections::VecDeque; use std::collections::vec_deque; // Re-export the main HPACK API entry points. pub use self::decoder::Decoder; pub use self::encoder::Encoder; pub mod encoder; pub mod decoder; pub mod huffman; /// An `Iterator` through elements of the `DynamicTable`. /// /// The implementation of the iterator itself is very tightly coupled /// to the implementation of the `DynamicTable`. /// /// This iterator returns tuples of slices. The tuples themselves are /// constructed as new instances, containing a borrow from the `Vec`s /// representing the underlying Headers. struct DynamicTableIter<'a> { /// Stores an iterator through the underlying structure that the /// `DynamicTable` uses inner: vec_deque::Iter<'a, (Vec<u8>, Vec<u8>)>, } impl<'a> Iterator for DynamicTableIter<'a> { type Item = (&'a [u8], &'a [u8]); fn next(&mut self) -> Option<(&'a [u8], &'a [u8])> { match self.inner.next() { Some(ref header) => Some((&header.0, &header.1)), None => None, } } } /// A struct representing the dynamic table that needs to be maintained by the /// coder. /// /// The dynamic table contains a number of recently used headers. The size of /// the table is constrained to a certain number of octets. If on insertion of /// a new header into the table, the table would exceed the maximum size, /// headers are evicted in a FIFO fashion until there is enough room for the /// new header to be inserted. (Therefore, it is possible that though all /// elements end up being evicted, there is still not enough space for the new /// header: when the size of this individual header exceeds the maximum size of /// the table.) /// /// The current size of the table is calculated, based on the IETF definition, /// as the sum of sizes of each header stored within the table, where the size /// of an individual header is /// `len_in_octets(header_name) + len_in_octets(header_value) + 32`. /// /// Note: the maximum size of the dynamic table does not have to be equal to /// the maximum header table size as defined by a "higher level" protocol /// (such as the `SETTINGS_HEADER_TABLE_SIZE` setting in HTTP/2), since HPACK /// can choose to modify the dynamic table size on the fly (as long as it keeps /// it below the maximum value set by the protocol). So, the `DynamicTable` /// only cares about the maximum size as set by the HPACK {en,de}coder and lets /// *it* worry about making certain that the changes are valid according to /// the (current) constraints of the protocol. struct DynamicTable { table: VecDeque<(Vec<u8>, Vec<u8>)>, size: usize, max_size: usize, } impl DynamicTable { /// Creates a new empty dynamic table with a default size. fn new() -> DynamicTable { // The default maximum size corresponds to the default HTTP/2 // setting DynamicTable::with_size(4096) } /// Creates a new empty dynamic table with the given maximum size. fn with_size(max_size: usize) -> DynamicTable { DynamicTable { table: VecDeque::new(), size: 0, max_size: max_size, } } /// Returns the current size of the table in octets, as defined by the IETF /// HPACK spec. fn get_size(&self) -> usize { self.size } /// Returns an `Iterator` through the headers stored in the `DynamicTable`. /// /// The iterator will yield elements of type `(&[u8], &[u8])`, /// corresponding to a single header name and value. The name and value /// slices are borrowed from their representations in the `DynamicTable` /// internal implementation, which means that it is possible only to /// iterate through the headers, not mutate them. fn iter(&self) -> DynamicTableIter { DynamicTableIter { inner: self.table.iter(), } } /// Sets the new maximum table size. /// /// If the current size of the table is larger than the new maximum size, /// existing headers are evicted in a FIFO fashion until the size drops /// below the new maximum. fn set_max_table_size(&mut self, new_max_size: usize) { self.max_size = new_max_size; // Make the table size fit within the new constraints. self.consolidate_table(); } /// Returns the maximum size of the table in octets. fn get_max_table_size(&self) -> usize { self.max_size } /// Add a new header to the dynamic table. /// /// The table automatically gets resized, if necessary. /// /// Do note that, under the HPACK rules, it is possible the given header /// is not found in the dynamic table after this operation finishes, in /// case the total size of the given header exceeds the maximum size of the /// dynamic table. fn add_header(&mut self, name: Vec<u8>, value: Vec<u8>) { // This is how the HPACK spec makes us calculate the size. The 32 is // a magic number determined by them (under reasonable assumptions of // how the table is stored). self.size += name.len() + value.len() + 32; debug!("New dynamic table size {}", self.size); // Now add it to the internal buffer self.table.push_front((name, value)); // ...and make sure we're not over the maximum size. self.consolidate_table(); debug!("After consolidation dynamic table size {}", self.size); } /// Consolidates the table entries so that the table size is below the /// maximum allowed size, by evicting headers from the table in a FIFO /// fashion. fn consolidate_table(&mut self) { while self.size > self.max_size { { let last_header = match self.table.back() { Some(x) => x, None => { // Can never happen as the size of the table must reach // 0 by the time we've exhausted all elements. panic!("Size of table != 0, but no headers left!"); } }; self.size -= last_header.0.len() + last_header.1.len() + 32; } self.table.pop_back(); } } /// Returns the number of headers in the dynamic table. /// /// This is different than the size of the dynamic table. fn len(&self) -> usize { self.table.len() } /// Converts the current state of the table to a `Vec` fn to_vec(&self) -> Vec<(Vec<u8>, Vec<u8>)> { let mut ret: Vec<(Vec<u8>, Vec<u8>)> = Vec::new(); for elem in self.table.iter() { ret.push(elem.clone()); } ret } /// Returns a reference to the header at the given index, if found in the /// dynamic table. fn get(&self, index: usize) -> Option<&(Vec<u8>, Vec<u8>)> { self.table.get(index) } } impl fmt::Debug for DynamicTable { fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result { write!(formatter, "{:?}", self.table) } } /// Represents the type of the static table, as defined by the HPACK spec. type StaticTable<'a> = &'a [(&'a [u8], &'a [u8])]; /// Implements an iterator through the entire `HeaderTable`. /// /// Yields first the elements from the static table, followed by elements from /// the dynamic table, with each element being of type `(&[u8], &[u8])`. /// /// This struct is tightly coupled to the implementation of the `HeaderTable`, /// but its clients are shielded from all that and have a convenient (and /// standardized) interface to iterate through all headers of the table. /// /// The declaration of the inner iterator that is wrapped by this struct is a /// monstrosity, that is required because "abstract return types" don't exist /// yet ([https://github.com/rust-lang/rfcs/pull/105]). struct HeaderTableIter<'a> { // Represents a chain of static-table -> dynamic-table elements. // The mapper is required to transform the elements yielded from the static // table to a type that matches the elements yielded from the dynamic table. inner: iter::Chain< iter::Map< slice::Iter<'a, (&'a [u8], &'a [u8])>, fn((&'a (&'a [u8], &'a [u8]))) -> (&'a [u8], &'a [u8])>, DynamicTableIter<'a>>, } impl<'a> Iterator for HeaderTableIter<'a> { type Item = (&'a [u8], &'a [u8]); fn next(&mut self) -> Option<(&'a [u8], &'a [u8])> { // Simply delegates to the wrapped iterator that is constructed by the // `HeaderTable` and passed into the `HeaderTableIter`. self.inner.next() } } /// A helper function that maps a borrowed tuple containing two borrowed slices /// to just a tuple of two borrowed slices. /// /// This helper function is needed because in order to define the type /// `HeaderTableIter` we need to be able to refer to a real type for the Fn /// template parameter, which means that when instantiating an instance, a /// closure cannot be passed, since it cannot be named. fn static_table_mapper<'a>(h: &'a (&'a [u8], &'a [u8])) -> (&'a [u8], &'a [u8]) { *h } /// The struct represents the header table obtained by merging the static and /// dynamic tables into a single index address space, as described in section /// `2.3.3.` of the HPACK spec. struct HeaderTable<'a> { static_table: StaticTable<'a>, dynamic_table: DynamicTable, } impl<'a> HeaderTable<'a> { /// Creates a new header table where the static part is initialized with /// the given static table. pub fn with_static_table(static_table: StaticTable<'a>) -> HeaderTable<'a> { HeaderTable { static_table: static_table, dynamic_table: DynamicTable::new(), } } /// Returns an iterator through *all* headers stored in the header table, /// i.e. it includes both the ones found in the static table and the /// dynamic table, in the order of their indices in the single address /// space (first the headers in the static table, followed by headers in /// the dynamic table). /// /// The type yielded by the iterator is `(&[u8], &[u8])`, where the tuple /// corresponds to the header name, value pairs in the described order. pub fn iter(&'a self) -> HeaderTableIter<'a> { HeaderTableIter { inner: self.static_table.iter() .map(static_table_mapper as fn((&'a (&'a [u8], &'a [u8]))) -> (&'a [u8], &'a [u8])) .chain(self.dynamic_table.iter()), } } /// Adds the given header to the table. Of course, this means that the new /// header is added to the dynamic part of the table. /// /// If the size of the new header is larger than the current maximum table /// size of the dynamic table, the effect will be that the dynamic table /// gets emptied and the new header does *not* get inserted into it. #[inline] pub fn add_header(&mut self, name: Vec<u8>, value: Vec<u8>) { self.dynamic_table.add_header(name, value); } /// Returns a reference to the header (a `(name, value)` pair) with the /// given index in the table. /// /// The table is 1-indexed and constructed in such a way that the first /// entries belong to the static table, followed by entries in the dynamic /// table. They are merged into a single index address space, though. /// /// This is according to the [HPACK spec, section 2.3.3.] /// (http://http2.github.io/http2-spec/compression.html#index.address.space) pub fn get_from_table(&self, index: usize) -> Option<(&[u8], &[u8])> { // The IETF defined table indexing as 1-based. // So, before starting, make sure the given index is within the proper // bounds. let real_index = if index > 0 { index - 1 } else { return None }; if real_index < self.static_table.len() { // It is in the static table so just return that... Some(self.static_table[real_index]) } else { // Maybe it's in the dynamic table then? let dynamic_index = real_index - self.static_table.len(); if dynamic_index < self.dynamic_table.len() { match self.dynamic_table.get(dynamic_index) { Some(&(ref name, ref value)) => { Some((name, value)) }, None => None } } else { // Index out of bounds! None } } } /// Finds the given header in the header table. Tries to match both the /// header name and value to one of the headers in the table. If no such /// header exists, then falls back to returning one that matched only the /// name. /// /// # Returns /// /// An `Option`, where `Some` corresponds to a tuple representing the index /// of the header in the header tables (the 1-based index that HPACK uses) /// and a `bool` indicating whether the value of the header also matched. pub fn find_header(&self, header: (&[u8], &[u8])) -> Option<(usize, bool)> { // Just does a simple scan of the entire table, searching for a header // that matches both the name and the value of the given header. // If no such header is found, then any one of the headers that had a // matching name is returned, with the appropriate return flag set. // // The tables are so small that it is unlikely that the linear scan // would be a major performance bottlneck. If it does prove to be, // though, a more efficient lookup/header representation method could // be devised. let mut matching_name: Option<usize> = None; for (i, h) in self.iter().enumerate() { if header.0 == h.0 { if header.1 == h.1 { // Both name and value matched: returns it immediately return Some((i + 1, true)); } // If only the name was valid, we continue scanning, hoping to // find one where both the name and value match. We remember // this one, in case such a header isn't found after all. matching_name = Some(i + 1); } } // Finally, if there's no header with a matching name and value, // return one that matched only the name, if that *was* found. match matching_name { Some(i) => Some((i, false)), None => None, } } } /// The table represents the static header table defined by the HPACK spec. /// (HPACK, Appendix A) static STATIC_TABLE: &'static [(&'static [u8], &'static [u8])] = &[ (b":authority", b""), (b":method", b"GET"), (b":method", b"POST"), (b":path", b"/"), (b":path", b"/index.html"), (b":scheme", b"http"), (b":scheme", b"https"), (b":status", b"200"), (b":status", b"204"), (b":status", b"206"), (b":status", b"304"), (b":status", b"400"), (b":status", b"404"), (b":status", b"500"), (b"accept-", b""), (b"accept-encoding", b"gzip, deflate"), (b"accept-language", b""), (b"accept-ranges", b""), (b"accept", b""), (b"access-control-allow-origin", b""), (b"age", b""), (b"allow", b""), (b"authorization", b""), (b"cache-control", b""), (b"content-disposition", b""), (b"content-encoding", b""), (b"content-language", b""), (b"content-length", b""), (b"content-location", b""), (b"content-range", b""), (b"content-type", b""), (b"cookie", b""), (b"date", b""), (b"etag", b""), (b"expect", b""), (b"expires", b""), (b"from", b""), (b"host", b""), (b"if-match", b""), (b"if-modified-since", b""), (b"if-none-match", b""), (b"if-range", b""), (b"if-unmodified-since", b""), (b"last-modified", b""), (b"link", b""), (b"location", b""), (b"max-forwards", b""), (b"proxy-authenticate", b""), (b"proxy-authorization", b""), (b"range", b""), (b"referer", b""), (b"refresh", b""), (b"retry-after", b""), (b"server", b""), (b"set-cookie", b""), (b"strict-transport-security", b""), (b"transfer-encoding", b""), (b"user-agent", b""), (b"vary", b""), (b"via", b""), (b"www-authenticate", b""), ]; #[cfg(test)] mod tests { use super::DynamicTable; use super::HeaderTable; use super::STATIC_TABLE; #[test] fn test_dynamic_table_size_calculation_simple() { let mut table = DynamicTable::new(); // Sanity check assert_eq!(0, table.get_size()); table.add_header(b"a".to_vec(), b"b".to_vec()); assert_eq!(32 + 2, table.get_size()); } #[test] fn test_dynamic_table_size_calculation() { let mut table = DynamicTable::new(); table.add_header(b"a".to_vec(), b"b".to_vec()); table.add_header(b"123".to_vec(), b"456".to_vec()); table.add_header(b"a".to_vec(), b"b".to_vec()); assert_eq!(3 * 32 + 2 + 6 + 2, table.get_size()); } /// Tests that the `DynamicTable` gets correctly resized (by evicting old /// headers) if it exceeds the maximum size on an insertion. #[test] fn test_dynamic_table_auto_resize() { let mut table = DynamicTable::with_size(38); table.add_header(b"a".to_vec(), b"b".to_vec()); assert_eq!(32 + 2, table.get_size()); table.add_header(b"123".to_vec(), b"456".to_vec()); // Resized? assert_eq!(32 + 6, table.get_size()); // Only has the second header? assert_eq!(table.to_vec(), vec![ (b"123".to_vec(), b"456".to_vec())]); } /// Tests that when inserting a new header whose size is larger than the /// size of the entire table, the table is fully emptied. #[test] fn test_dynamic_table_auto_resize_into_empty() { let mut table = DynamicTable::with_size(38); table.add_header(b"a".to_vec(), b"b".to_vec()); assert_eq!(32 + 2, table.get_size()); table.add_header(b"123".to_vec(), b"4567".to_vec()); // Resized and empty? assert_eq!(0, table.get_size()); assert_eq!(0, table.to_vec().len()); } /// Tests that when changing the maximum size of the `DynamicTable`, the /// headers are correctly evicted in order to keep its size below the new /// max. #[test] fn test_dynamic_table_change_max_size() { let mut table = DynamicTable::new(); table.add_header(b"a".to_vec(), b"b".to_vec()); table.add_header(b"123".to_vec(), b"456".to_vec()); table.add_header(b"c".to_vec(), b"d".to_vec()); assert_eq!(3 * 32 + 2 + 6 + 2, table.get_size()); table.set_max_table_size(38); assert_eq!(32 + 2, table.get_size()); assert_eq!(table.to_vec(), vec![ (b"c".to_vec(), b"d".to_vec())]); } /// Tests that setting the maximum table size to 0 clears the dynamic /// table. #[test] fn test_dynamic_table_clear() { let mut table = DynamicTable::new(); table.add_header(b"a".to_vec(), b"b".to_vec()); table.add_header(b"123".to_vec(), b"456".to_vec()); table.add_header(b"c".to_vec(), b"d".to_vec()); assert_eq!(3 * 32 + 2 + 6 + 2, table.get_size()); table.set_max_table_size(0); assert_eq!(0, table.len()); assert_eq!(0, table.to_vec().len()); assert_eq!(0, table.get_size()); assert_eq!(0, table.get_max_table_size()); } /// Tests that when the initial max size of the table is 0, nothing /// can be added to the table. #[test] fn test_dynamic_table_max_size_zero() { let mut table = DynamicTable::with_size(0); table.add_header(b"a".to_vec(), b"b".to_vec()); assert_eq!(0, table.len()); assert_eq!(0, table.to_vec().len()); assert_eq!(0, table.get_size()); assert_eq!(0, table.get_max_table_size()); } /// Tests that the iterator through the `DynamicTable` works when there are /// some elements in the dynamic table. #[test] fn test_dynamic_table_iter_with_elems() { let mut table = DynamicTable::new(); table.add_header(b"a".to_vec(), b"b".to_vec()); table.add_header(b"123".to_vec(), b"456".to_vec()); table.add_header(b"c".to_vec(), b"d".to_vec()); let iter_res: Vec<(&[u8], &[u8])> = table.iter().collect(); let expected: Vec<(&[u8], &[u8])> = vec![ (b"c", b"d"), (b"123", b"456"), (b"a", b"b"), ]; assert_eq!(iter_res, expected); } /// Tests that the iterator through the `DynamicTable` works when there are /// no elements in the dynamic table. #[test] fn test_dynamic_table_iter_no_elems() { let table = DynamicTable::new(); let iter_res: Vec<(&[u8], &[u8])> = table.iter().collect(); let expected = vec![]; assert_eq!(iter_res, expected); } /// Tests that indexing the header table with indices that correspond to /// entries found in the static table works. #[test] fn test_header_table_index_static() { let table = HeaderTable::with_static_table(STATIC_TABLE); for (index, entry) in STATIC_TABLE.iter().enumerate() { assert_eq!(table.get_from_table(index + 1).unwrap(), *entry); } } /// Tests that when the given index is out of bounds, the `HeaderTable` /// returns a `None` #[test] fn test_header_table_index_out_of_bounds() { let table = HeaderTable::with_static_table(STATIC_TABLE); assert!(table.get_from_table(0).is_none()); assert!(table.get_from_table(STATIC_TABLE.len() + 1).is_none()); } /// Tests that adding entries to the dynamic table through the /// `HeaderTable` interface works. #[test] fn test_header_table_add_to_dynamic() { let mut table = HeaderTable::with_static_table(STATIC_TABLE); let header = (b"a".to_vec(), b"b".to_vec()); table.add_header(header.0.clone(), header.1.clone()); assert_eq!(table.dynamic_table.to_vec(), vec![header]); } /// Tests that indexing the header table with indices that correspond to /// entries found in the dynamic table works. #[test] fn test_header_table_index_dynamic() { let mut table = HeaderTable::with_static_table(STATIC_TABLE); let header = (b"a".to_vec(), b"b".to_vec()); table.add_header(header.0.clone(), header.1.clone()); assert_eq!(table.get_from_table(STATIC_TABLE.len() + 1).unwrap(), ((&header.0[..], &header.1[..]))); } /// Tests that the `iter` method of the `HeaderTable` returns an iterator /// through *all* the headers found in the header table (static and dynamic /// tables both included) #[test] fn test_header_table_iter() { let mut table = HeaderTable::with_static_table(STATIC_TABLE); let headers: [(&[u8], &[u8]); 2] = [ (b"a", b"b"), (b"c", b"d"), ]; for header in headers.iter() { table.add_header(header.0.to_vec(), header.1.to_vec()); } let iterated: Vec<(&[u8], &[u8])> = table.iter().collect(); assert_eq!(iterated.len(), headers.len() + STATIC_TABLE.len()); // Part of the static table correctly iterated through for (h1, h2) in iterated.iter().zip(STATIC_TABLE.iter()) { assert_eq!(h1, h2); } // Part of the dynamic table correctly iterated through: the elements // are in reversed order of insertion in the dynamic table. for (h1, h2) in iterated.iter().skip(STATIC_TABLE.len()) .zip(headers.iter().rev()) { assert_eq!(h1, h2); } } /// Tests that searching for an entry in the header table, which should be /// fully in the static table (both name and value), works correctly. #[test] fn test_find_header_static_full() { let table = HeaderTable::with_static_table(STATIC_TABLE); for (i, h) in STATIC_TABLE.iter().enumerate() { assert_eq!(table.find_header(*h).unwrap(), (i + 1, true)); } } /// Tests that searching for an entry in the header table, which should be /// only partially in the static table (only the name), works correctly. #[test] fn test_find_header_static_partial() { { let table = HeaderTable::with_static_table(STATIC_TABLE); let h: (&[u8], &[u8]) = (b":method", b"PUT"); if let (index, false) = table.find_header(h).unwrap() { assert_eq!(h.0, STATIC_TABLE[index - 1].0); // The index is the last one with the corresponding name assert_eq!(3, index); } else { panic!("The header should have matched only partially"); } } { let table = HeaderTable::with_static_table(STATIC_TABLE); let h: (&[u8], &[u8]) = (b":status", b"333"); if let (index, false) = table.find_header(h).unwrap() { assert_eq!(h.0, STATIC_TABLE[index - 1].0); // The index is the last one with the corresponding name assert_eq!(14, index); } else { panic!("The header should have matched only partially"); } } { let table = HeaderTable::with_static_table(STATIC_TABLE); let h: (&[u8], &[u8]) = (b":authority", b"example.com"); if let (index, false) = table.find_header(h).unwrap() { assert_eq!(h.0, STATIC_TABLE[index - 1].0); } else { panic!("The header should have matched only partially"); } } { let table = HeaderTable::with_static_table(STATIC_TABLE); let h: (&[u8], &[u8]) = (b"www-authenticate", b"asdf"); if let (index, false) = table.find_header(h).unwrap() { assert_eq!(h.0, STATIC_TABLE[index - 1].0); } else { panic!("The header should have matched only partially"); } } } /// Tests that searching for an entry in the header table, which should be /// fully in the dynamic table (both name and value), works correctly. #[test] fn test_find_header_dynamic_full() { let mut table = HeaderTable::with_static_table(STATIC_TABLE); let h: (&[u8], &[u8]) = (b":method", b"PUT"); table.add_header(h.0.to_vec(), h.1.to_vec()); if let (index, true) = table.find_header(h).unwrap() { assert_eq!(index, STATIC_TABLE.len() + 1); } else { panic!("The header should have matched fully"); } } /// Tests that searching for an entry in the header table, which should be /// only partially in the dynamic table (only the name), works correctly. #[test] fn test_find_header_dynamic_partial() { let mut table = HeaderTable::with_static_table(STATIC_TABLE); // First add it to the dynamic table { let h = (b"X-Custom-Header", b"stuff"); table.add_header(h.0.to_vec(), h.1.to_vec()); } // Prepare a search let h: (&[u8], &[u8]) = (b"X-Custom-Header", b"different-stuff"); // It must match only partially if let (index, false) = table.find_header(h).unwrap() { // The index must be the first one in the dynamic table // segment of the header table. assert_eq!(index, STATIC_TABLE.len() + 1); } else { panic!("The header should have matched only partially"); } } }