mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-08-31 04:09:37 +02:00
* Use types which were ported into rpki-rs. * Update dependency to rpki-rs 0.14.3-dev. * IGNORE old_events test for now, see issue: #819 * Quick fix for compilation using --all-features. See issue #821 Co-authored-by: Ximon Eighteen <3304436+ximon18@users.noreply.github.com>
33 lines
1.3 KiB
Rust
33 lines
1.3 KiB
Rust
//! Rust integration test to verify that invoking the restricted create CA REST API requires a valid bearer token.
|
|
use std::str::FromStr;
|
|
|
|
use rpki::ca::idexchange::Handle;
|
|
|
|
use krill::{
|
|
commons::api::Token,
|
|
test::{init_ca, start_krill_with_custom_config, test_config, tmp_dir},
|
|
};
|
|
|
|
extern crate krill;
|
|
|
|
#[tokio::test]
|
|
#[should_panic]
|
|
async fn auth_check() {
|
|
// Use a copy of the default test Krill config but change the server admin token thereby hopefully causing the
|
|
// bearer token sent by the test suite support functions not to match and thus be rejected which in turn should
|
|
// cause a Rust panic.
|
|
let dir = tmp_dir();
|
|
let mut config = test_config(&dir, false, false, false, false);
|
|
config.admin_token = Token::from("wrong secret");
|
|
|
|
// Start Krill with the customized config
|
|
start_krill_with_custom_config(config).await;
|
|
|
|
// Try and create a CA. The test suite support function `init_ca()` will invoke the create CA REST API passing the
|
|
// bearer token that is hard-coded into the test support suite functions ('secret').
|
|
let ca_handle = Handle::from_str("dummy_ca").unwrap();
|
|
init_ca(&ca_handle).await;
|
|
|
|
// A Rust panic should have occurred. If not, this test will fail due to the use of the #[should_panic] attribute.
|
|
}
|