You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-08-07 17:03:01 +03:00
75 lines
2.8 KiB
Rust
75 lines
2.8 KiB
Rust
// Copyright 2023 Kévin Commaille.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use assert_matches::assert_matches;
|
|
use mas_oidc_client::requests::rp_initiated_logout::{build_end_session_url, LogoutData};
|
|
use rand::SeedableRng;
|
|
use url::Url;
|
|
|
|
#[test]
|
|
fn build_url_no_redirect() {
|
|
let end_session_endpoint = Url::parse("https://localhost/end_session").unwrap();
|
|
let logout_data = LogoutData {
|
|
id_token_hint: Some("fake.id.token".to_owned()),
|
|
ui_locales: Some(vec!["pt-BR".parse().unwrap(), "pt".parse().unwrap()]),
|
|
..Default::default()
|
|
};
|
|
let mut rng = rand_chacha::ChaCha8Rng::seed_from_u64(42);
|
|
|
|
let (url, state) = build_end_session_url(end_session_endpoint, logout_data, &mut rng).unwrap();
|
|
|
|
assert_eq!(url.path(), "/end_session");
|
|
assert_eq!(state, None);
|
|
|
|
let query_pairs = url.query_pairs().collect::<HashMap<_, _>>();
|
|
assert_eq!(query_pairs.get("id_token_hint").unwrap(), "fake.id.token");
|
|
assert_eq!(query_pairs.get("logout_hint"), None);
|
|
assert_eq!(query_pairs.get("client_id"), None);
|
|
assert_eq!(query_pairs.get("post_logout_redirect_uri"), None);
|
|
assert_eq!(query_pairs.get("ui_locales").unwrap(), "pt-BR pt");
|
|
assert_eq!(query_pairs.get("state"), None);
|
|
}
|
|
|
|
#[test]
|
|
fn build_url_with_redirect() {
|
|
let end_session_endpoint = Url::parse("https://localhost/end_session").unwrap();
|
|
let logout_data = LogoutData {
|
|
logout_hint: Some("mxid:@john:localhost".to_owned()),
|
|
post_logout_redirect_uri: Some(Url::parse("http://localhost:8181/").unwrap()),
|
|
..Default::default()
|
|
};
|
|
let mut rng = rand_chacha::ChaCha8Rng::seed_from_u64(42);
|
|
|
|
let (url, state) = build_end_session_url(end_session_endpoint, logout_data, &mut rng).unwrap();
|
|
|
|
assert_eq!(url.path(), "/end_session");
|
|
let state = assert_matches!(state, Some(s) => s);
|
|
|
|
let query_pairs = url.query_pairs().collect::<HashMap<_, _>>();
|
|
assert_eq!(query_pairs.get("id_token_hint"), None);
|
|
assert_eq!(
|
|
query_pairs.get("logout_hint").unwrap(),
|
|
"mxid:@john:localhost"
|
|
);
|
|
assert_eq!(query_pairs.get("client_id"), None);
|
|
assert_eq!(
|
|
query_pairs.get("post_logout_redirect_uri").unwrap(),
|
|
"http://localhost:8181/"
|
|
);
|
|
assert_eq!(query_pairs.get("ui_locales"), None);
|
|
assert_eq!(query_pairs.get("state").unwrap(), &*state);
|
|
}
|