mirror of https://github.com/MingweiSamuel/Riven
33 lines
1.0 KiB
Rust
33 lines
1.0 KiB
Rust
|
#![cfg_attr(feature = "nightly", feature(custom_test_frameworks))]
|
||
|
#![cfg_attr(feature = "nightly", test_runner(my_runner))]
|
||
|
|
||
|
mod async_tests;
|
||
|
mod testutils;
|
||
|
use testutils::RIOT_API;
|
||
|
|
||
|
use colored::*;
|
||
|
|
||
|
use riven::consts::*;
|
||
|
|
||
|
const ROUTE: PlatformRoute = PlatformRoute::LA1;
|
||
|
|
||
|
async_tests! {
|
||
|
my_runner {
|
||
|
lol_challenges_v1_check_percentiles: async {
|
||
|
// Check all percentiles.
|
||
|
let percentiles = RIOT_API.lol_challenges_v1().get_all_challenge_percentiles(ROUTE)
|
||
|
.await.map_err(|e| e.to_string())?;
|
||
|
rassert!(!percentiles.is_empty());
|
||
|
|
||
|
// Spot-check 10% of the challenge IDs.
|
||
|
for &challenge_id in percentiles.keys().step_by(10) {
|
||
|
RIOT_API.lol_challenges_v1().get_challenge_percentiles(ROUTE, challenge_id)
|
||
|
.await.map_err(|e| format!("Failed to get challenge with id {}\n{}", challenge_id, e))?
|
||
|
.ok_or_else(|| format!("Challenge with id {} returned 404", challenge_id))?;
|
||
|
}
|
||
|
|
||
|
Ok(())
|
||
|
},
|
||
|
}
|
||
|
}
|