1
0
Fork 0
ruma/crates/ruma-common/tests/it/api/status_override.rs
2025-11-09 11:44:03 +01:00

51 lines
1.3 KiB
Rust

#![allow(clippy::exhaustive_structs)]
#![allow(dead_code)]
use http::{
StatusCode,
header::{Entry, LOCATION},
};
use ruma_common::{
api::{OutgoingResponse as _, auth_scheme::NoAuthentication, request, response},
metadata,
};
metadata! {
method: GET,
rate_limited: false,
authentication: NoAuthentication,
history: {
unstable => "/_matrix/my/endpoint",
}
}
/// Request type for the `status_override` endpoint.
#[request]
pub struct Request {}
/// Response type for the `status_override` endpoint.
#[response(status = FOUND)]
pub struct Response {
#[ruma_api(header = LOCATION)]
pub location: Option<String>,
}
#[test]
fn response_status_override() {
let res = Response { location: Some("/_matrix/another/endpoint".into()) };
let mut http_res = res.try_into_http_response::<Vec<u8>>().unwrap();
// Test that we correctly changed the status code.
assert_eq!(http_res.status(), StatusCode::FOUND);
// Test that we correctly replaced the location,
// not adding another location header.
assert_eq!(
match http_res.headers_mut().entry(LOCATION) {
Entry::Occupied(occ) => occ.iter().count(),
_ => 0,
},
1
);
assert_eq!(http_res.headers().get("location").unwrap(), "/_matrix/another/endpoint");
}