1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
actix-web/src/http/header/etag.rs

101 lines
3.5 KiB
Rust
Raw Normal View History

use super::{EntityTag, ETAG};
2019-02-07 21:24:24 +00:00
2021-04-15 21:05:06 +00:00
crate::__define_common_header! {
2019-02-07 21:24:24 +00:00
/// `ETag` header, defined in [RFC7232](http://tools.ietf.org/html/rfc7232#section-2.3)
///
/// 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
///
/// ```text
/// ETag = entity-tag
/// ```
///
/// # Example values
///
/// * `"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(
/// ETag(EntityTag::new(false, "xyzzy".to_owned()))
/// );
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(
/// ETag(EntityTag::new(true, "xyzzy".to_owned()))
/// );
2019-02-07 21:24:24 +00:00
/// ```
(ETag, ETAG) => [EntityTag]
test_etag {
// From the RFC
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test1,
2019-02-07 21:24:24 +00:00
vec![b"\"xyzzy\""],
Some(ETag(EntityTag::new(false, "xyzzy".to_owned()))));
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test2,
2019-02-07 21:24:24 +00:00
vec![b"W/\"xyzzy\""],
Some(ETag(EntityTag::new(true, "xyzzy".to_owned()))));
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test3,
2019-02-07 21:24:24 +00:00
vec![b"\"\""],
Some(ETag(EntityTag::new(false, "".to_owned()))));
// Own tests
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test4,
2019-02-07 21:24:24 +00:00
vec![b"\"foobar\""],
Some(ETag(EntityTag::new(false, "foobar".to_owned()))));
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test5,
2019-02-07 21:24:24 +00:00
vec![b"\"\""],
Some(ETag(EntityTag::new(false, "".to_owned()))));
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test6,
2019-02-07 21:24:24 +00:00
vec![b"W/\"weak-etag\""],
Some(ETag(EntityTag::new(true, "weak-etag".to_owned()))));
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test7,
2019-02-07 21:24:24 +00:00
vec![b"W/\"\x65\x62\""],
Some(ETag(EntityTag::new(true, "\u{0065}\u{0062}".to_owned()))));
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test8,
2019-02-07 21:24:24 +00:00
vec![b"W/\"\""],
Some(ETag(EntityTag::new(true, "".to_owned()))));
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test9,
2019-02-07 21:24:24 +00:00
vec![b"no-dquotes"],
None::<ETag>);
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test10,
2019-02-07 21:24:24 +00:00
vec![b"w/\"the-first-w-is-case-sensitive\""],
None::<ETag>);
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test11,
2019-02-07 21:24:24 +00:00
vec![b""],
None::<ETag>);
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test12,
2019-02-07 21:24:24 +00:00
vec![b"\"unmatched-dquotes1"],
None::<ETag>);
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test13,
2019-02-07 21:24:24 +00:00
vec![b"unmatched-dquotes2\""],
None::<ETag>);
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test14,
2019-02-07 21:24:24 +00:00
vec![b"matched-\"dquotes\""],
None::<ETag>);
2021-04-15 21:05:06 +00:00
crate::__common_header_test!(test15,
2019-02-07 21:24:24 +00:00
vec![b"\""],
None::<ETag>);
}
}