forked from mirror/Riven
42 lines
1.1 KiB
Rust
42 lines
1.1 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::*;
|
|
|
|
use colored::*;
|
|
|
|
use riven::consts::*;
|
|
|
|
const ROUTE: RegionalRoute = RegionalRoute::EUROPE;
|
|
|
|
// Archived 2023-08-17
|
|
// // Illegal big `championId`s. https://github.com/RiotGames/developer-relations/issues/553
|
|
// "EUW1_5097684633",
|
|
// "EUW1_5097963383",
|
|
// "EUW1_5102203800", // https://github.com/MingweiSamuel/Riven/issues/36
|
|
// "EUW1_5765650307", // https://gist.github.com/MingweiSamuel/d5f9dc40cc5a80a9255e488f27705c56?permalink_comment_id=4088256#gistcomment-4088256
|
|
|
|
static MATCHES: &[&str] = &[
|
|
// New ARENA 2v2v2v2 game mode
|
|
"EUW1_6511808246", // https://github.com/MingweiSamuel/Camille/issues/99
|
|
// Added 2023-08-27
|
|
"EUW1_6569580003",
|
|
"EUW1_6569417645",
|
|
"EUW1_6568707352",
|
|
"EUW1_6568635198",
|
|
"EUW1_6568537080",
|
|
];
|
|
|
|
async_tests! {
|
|
my_runner {
|
|
match_v5_get: async {
|
|
match_v5_get(ROUTE, MATCHES).await
|
|
},
|
|
match_v5_get_timeline: async {
|
|
match_v5_get_timeline(ROUTE, MATCHES).await
|
|
},
|
|
}
|
|
}
|