forked from mirror/Riven
1
0
Fork 0
Riven/riven/tests/tests_asia.rs

45 lines
1.0 KiB
Rust
Raw Normal View History

2021-10-07 17:10:19 +00:00
#![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::ASIA;
static MATCHES: &[&str] = &[
// Regular game:
"KR_5495121707",
// `teamPosition` empty:
// AFK:
"JP1_312062554",
"JP1_326464722",
"JP1_289504387",
"JP1_285434511",
"JP1_307559381",
"JP1_292569767",
"JP1_310138781",
"JP1_300507433",
"JP1_283568774",
// `individualPosition` is set but `teamPosition` is empty due to AFK slightly after beginning:
"JP1_285797147",
// Illegal big `championId`s. https://github.com/RiotGames/developer-relations/issues/553
"JP1_267647303",
"JP1_273343663",
];
2021-10-07 17:10:19 +00:00
async_tests! {
2021-10-07 17:10:19 +00:00
my_runner {
match_v5_get: async {
match_v5_get(ROUTE, MATCHES).await
2021-10-07 17:10:19 +00:00
},
match_v5_get_timeline: async {
match_v5_get_timeline(ROUTE, MATCHES).await
2021-10-07 17:10:19 +00:00
},
}
}