df2f3d340f
* fix popularity contest * more info in the Debug for Web3Rpc * add frontend_requests and cache_misses to the Balance query * add more to balance and stats flushing and improved test coverage * it compiles * deserializer for Ulid to Uuid I think a wrapper type on Ulid that implements sea_orm::Value is probably better * rename variable to match struct name * add deserializer for Address -> Vec<u8> * sql sum returns a Decimal. need to convert to u64 * assert more * one log and assert more * log more * use a helper to get the user's rpc provider * this should be 2 now that we have a public and authed call * this should be zero. the public has the cache miss * instrument cu calcs * trace the value we took, not the default that replaced it * move usd_per_chain into config * remove some extra logging * use Arc::into_inner to maybe avoid a race * off by 1 * pass paid credits used instead of returning it this lets us use it to write to our user balance cache first. importantly, this keeps us from holding a write lock while writing to mysql * no cache misses expected in this test * actually check the admin * put the balance checks back now that the rest of the test works * archive request is being set incorrectly * wow howd we manage flipping the greater than sign on archive depth * move latest_balance and premium_credits_used to before any stats are emitted * lint * and build undoes the linting. fun i didnt even want to lint them in the first place, so this is fine * missed incrementing total_spent when not incrementing total_spent_paid_credits * use the credits on self * use the credits on self (pt 2) * fix type for 10 cu query * convert the requestmetadata on the other side of the channel * logs * viewing stats is allowed even without a balance * move paid_credits_used to AuthorizationChecks * wip * test_sum_credits_used finally passes * UserBalanceCache::get_or_insert * re-enable rpc_secret_key_cache * move invalidate to a helper function and always call it **after** the db is commited * fix PartialEq and Eq on RpcSecretKey * cargo upgrade
100 lines
2.9 KiB
Rust
100 lines
2.9 KiB
Rust
mod common;
|
|
|
|
use crate::common::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 x = TestApp::spawn(31337, true).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 x = TestApp::spawn(31337, false).await;
|
|
|
|
let anvil_provider = &x.anvil_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
|
|
x.flush_stats().await.unwrap_err();
|
|
|
|
// most tests won't need to wait, but we should wait here to be sure all the shutdown logic works properly
|
|
x.wait().await;
|
|
}
|