600c1bafb4
* add test_multiple_proxies_stats_add_up * make a premium user using both proxies * added a couple clones, must add constraints now to run for multiple-proxies (check arithmetic) * lint and code review * fix comment * fix tests (now fails at todo) * will introduce endpoint to fetch rpc stats from mysql * added influxdb to tests, should next do asserst in stats collected by influx, and mysql for multi-proxy * created test where influx and mysql have separate data, should help with debugging * forgot to drop influx * tests pass except multi-proxy * test passes, will check out nothing broke elswhere * go back to numbers * some linting * linting * removed redundant info! * responding to PR comments * ULID as instance-hash for the tag in influx (for anti-dup) --------- Co-authored-by: yenicelik <david.yenicelik@gmail.com>
107 lines
3.1 KiB
Rust
107 lines
3.1 KiB
Rust
mod common;
|
|
|
|
use crate::common::{anvil::TestAnvil, mysql::TestMysql, TestApp};
|
|
use ethers::prelude::U256;
|
|
use http::StatusCode;
|
|
use std::time::Duration;
|
|
use tokio::{
|
|
task::yield_now,
|
|
time::{sleep, Instant},
|
|
};
|
|
use web3_proxy::rpcs::blockchain::ArcBlock;
|
|
|
|
#[cfg_attr(not(feature = "tests-needing-docker"), ignore)]
|
|
#[test_log::test(tokio::test)]
|
|
async fn it_migrates_the_db() {
|
|
let a = TestAnvil::spawn(31337).await;
|
|
let db = TestMysql::spawn().await;
|
|
|
|
let x = TestApp::spawn(&a, Some(&db), None).await;
|
|
|
|
// we call flush stats more to be sure it works than because we expect it to save any stats
|
|
x.flush_stats().await.unwrap();
|
|
}
|
|
|
|
#[test_log::test(tokio::test)]
|
|
async fn it_starts_and_stops() {
|
|
let a = TestAnvil::spawn(31337).await;
|
|
|
|
let x = TestApp::spawn(&a, None, None).await;
|
|
|
|
let anvil_provider = &a.provider;
|
|
let proxy_provider = &x.proxy_provider;
|
|
|
|
let anvil_result = anvil_provider
|
|
.request::<_, Option<ArcBlock>>("eth_getBlockByNumber", ("latest", false))
|
|
.await
|
|
.unwrap()
|
|
.unwrap();
|
|
let proxy_result = proxy_provider
|
|
.request::<_, Option<ArcBlock>>("eth_getBlockByNumber", ("latest", false))
|
|
.await
|
|
.unwrap()
|
|
.unwrap();
|
|
|
|
assert_eq!(anvil_result, proxy_result);
|
|
|
|
// check the /health page
|
|
let proxy_url = x.proxy_provider.url();
|
|
let health_response = reqwest::get(format!("{}health", proxy_url)).await;
|
|
dbg!(&health_response);
|
|
assert_eq!(health_response.unwrap().status(), StatusCode::OK);
|
|
|
|
// check the /status page
|
|
let status_response = reqwest::get(format!("{}status", proxy_url)).await;
|
|
dbg!(&status_response);
|
|
assert_eq!(status_response.unwrap().status(), StatusCode::OK);
|
|
|
|
let first_block_num = anvil_result.number.unwrap();
|
|
|
|
// mine a block
|
|
let _: U256 = anvil_provider.request("evm_mine", ()).await.unwrap();
|
|
|
|
// make sure the block advanced
|
|
let anvil_result = anvil_provider
|
|
.request::<_, Option<ArcBlock>>("eth_getBlockByNumber", ("latest", false))
|
|
.await
|
|
.unwrap()
|
|
.unwrap();
|
|
|
|
let second_block_num = anvil_result.number.unwrap();
|
|
|
|
assert_eq!(first_block_num, second_block_num - 1);
|
|
|
|
yield_now().await;
|
|
|
|
let mut proxy_result;
|
|
let start = Instant::now();
|
|
loop {
|
|
if start.elapsed() > Duration::from_secs(1) {
|
|
panic!("took too long to sync!");
|
|
}
|
|
|
|
proxy_result = proxy_provider
|
|
.request::<_, Option<ArcBlock>>("eth_getBlockByNumber", ("latest", false))
|
|
.await
|
|
.unwrap();
|
|
|
|
if let Some(ref proxy_result) = proxy_result {
|
|
if proxy_result.number == Some(second_block_num) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
sleep(Duration::from_millis(10)).await;
|
|
}
|
|
|
|
assert_eq!(anvil_result, proxy_result.unwrap());
|
|
|
|
// this won't do anything since stats aren't tracked when there isn't a db
|
|
let flushed = x.flush_stats().await.unwrap();
|
|
assert_eq!(flushed.relational, 0);
|
|
assert_eq!(flushed.timeseries, 0);
|
|
|
|
// most tests won't need to wait, but we should wait here to be sure all the shutdown logic works properly
|
|
x.wait_for_stop();
|
|
}
|