1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/actix-web/src/http/header/etag.rs

99 lines
3.7 KiB
Rust
Raw Normal View History

use super::{EntityTag, ETAG};
2019-02-07 21:24:24 +00:00
2021-06-25 11:25:50 +00:00
crate::http::header::common_header! {
/// `ETag` header, defined in
/// [RFC 7232 §2.3](https://datatracker.ietf.org/doc/html/rfc7232#section-2.3)
2019-02-07 21:24:24 +00:00
///
/// The `ETag` header field in a response provides the current entity-tag
/// for the selected representation, as determined at the conclusion of
/// handling the request. An entity-tag is an opaque validator for
/// differentiating between multiple representations of the same
/// resource, regardless of whether those multiple representations are
/// due to resource state changes over time, content negotiation
/// resulting in multiple representations being valid at the same time,
/// or both. An entity-tag consists of an opaque quoted string, possibly
/// prefixed by a weakness indicator.
///
/// # ABNF
2021-12-02 15:25:39 +00:00
/// ```plain
2019-02-07 21:24:24 +00:00
/// ETag = entity-tag
/// ```
///
/// # Example Values
2019-02-07 21:24:24 +00:00
/// * `"xyzzy"`
/// * `W/"xyzzy"`
/// * `""`
///
/// # Examples
2021-01-15 02:11:10 +00:00
/// ```
/// use actix_web::HttpResponse;
/// use actix_web::http::header::{ETag, EntityTag};
2019-02-07 21:24:24 +00:00
///
/// let mut builder = HttpResponse::Ok();
2021-01-15 02:11:10 +00:00
/// builder.insert_header(
2022-01-03 18:46:04 +00:00
/// ETag(EntityTag::new_strong("xyzzy".to_owned()))
2021-01-15 02:11:10 +00:00
/// );
2019-02-07 21:24:24 +00:00
/// ```
///
2021-01-15 02:11:10 +00:00
/// ```
/// use actix_web::HttpResponse;
/// use actix_web::http::header::{ETag, EntityTag};
2019-02-07 21:24:24 +00:00
///
/// let mut builder = HttpResponse::Ok();
2021-01-15 02:11:10 +00:00
/// builder.insert_header(
2022-01-03 18:46:04 +00:00
/// ETag(EntityTag::new_weak("xyzzy".to_owned()))
2021-01-15 02:11:10 +00:00
/// );
2019-02-07 21:24:24 +00:00
/// ```
(ETag, ETAG) => [EntityTag]
test_parse_and_format {
2019-02-07 21:24:24 +00:00
// From the RFC
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test1,
2019-02-07 21:24:24 +00:00
vec![b"\"xyzzy\""],
2022-01-03 18:46:04 +00:00
Some(ETag(EntityTag::new_strong("xyzzy".to_owned()))));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test2,
2019-02-07 21:24:24 +00:00
vec![b"W/\"xyzzy\""],
2022-01-03 18:46:04 +00:00
Some(ETag(EntityTag::new_weak("xyzzy".to_owned()))));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test3,
2019-02-07 21:24:24 +00:00
vec![b"\"\""],
2022-01-03 18:46:04 +00:00
Some(ETag(EntityTag::new_strong("".to_owned()))));
2019-02-07 21:24:24 +00:00
// Own tests
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test4,
2019-02-07 21:24:24 +00:00
vec![b"\"foobar\""],
2022-01-03 18:46:04 +00:00
Some(ETag(EntityTag::new_strong("foobar".to_owned()))));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test5,
2019-02-07 21:24:24 +00:00
vec![b"\"\""],
2022-01-03 18:46:04 +00:00
Some(ETag(EntityTag::new_strong("".to_owned()))));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test6,
2019-02-07 21:24:24 +00:00
vec![b"W/\"weak-etag\""],
2022-01-03 18:46:04 +00:00
Some(ETag(EntityTag::new_weak("weak-etag".to_owned()))));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test7,
2019-02-07 21:24:24 +00:00
vec![b"W/\"\x65\x62\""],
2022-01-03 18:46:04 +00:00
Some(ETag(EntityTag::new_weak("\u{0065}\u{0062}".to_owned()))));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test8,
2019-02-07 21:24:24 +00:00
vec![b"W/\"\""],
2022-01-03 18:46:04 +00:00
Some(ETag(EntityTag::new_weak("".to_owned()))));
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test9,
2019-02-07 21:24:24 +00:00
vec![b"no-dquotes"],
None::<ETag>);
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test10,
2019-02-07 21:24:24 +00:00
vec![b"w/\"the-first-w-is-case-sensitive\""],
None::<ETag>);
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test11,
2019-02-07 21:24:24 +00:00
vec![b""],
None::<ETag>);
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test12,
2019-02-07 21:24:24 +00:00
vec![b"\"unmatched-dquotes1"],
None::<ETag>);
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test13,
2019-02-07 21:24:24 +00:00
vec![b"unmatched-dquotes2\""],
None::<ETag>);
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test14,
2019-02-07 21:24:24 +00:00
vec![b"matched-\"dquotes\""],
None::<ETag>);
2021-06-25 11:25:50 +00:00
crate::http::header::common_header_test!(test15,
2019-02-07 21:24:24 +00:00
vec![b"\""],
None::<ETag>);
}
}