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
107 lines
3.2 KiB
Rust
107 lines
3.2 KiB
Rust
use crate::TestApp;
|
|
use ethers::prelude::{LocalWallet, Signer};
|
|
use ethers::types::Signature;
|
|
use tracing::info;
|
|
use web3_proxy::frontend::users::authentication::{LoginPostResponse, PostLogin};
|
|
use web3_proxy::sub_commands::ChangeAdminStatusSubCommand;
|
|
|
|
/// Helper function to create admin
|
|
|
|
/// Create user as admin
|
|
#[allow(unused)]
|
|
pub async fn create_user_as_admin(
|
|
x: &TestApp,
|
|
r: &reqwest::Client,
|
|
admin_wallet: &LocalWallet,
|
|
) -> LoginPostResponse {
|
|
// Create the account
|
|
let login_post_url = format!("{}user/login", x.proxy_provider.url());
|
|
let admin_login_get_url = format!(
|
|
"{}user/login/{:?}",
|
|
x.proxy_provider.url(),
|
|
admin_wallet.address()
|
|
);
|
|
let admin_login_message = r.get(admin_login_get_url).send().await.unwrap();
|
|
let admin_login_message = admin_login_message.text().await.unwrap();
|
|
|
|
// Sign the message and POST it to login as admin
|
|
let admin_signed: Signature = admin_wallet
|
|
.sign_message(&admin_login_message)
|
|
.await
|
|
.unwrap();
|
|
info!(?admin_signed);
|
|
|
|
let admin_post_login_data = PostLogin {
|
|
msg: admin_login_message,
|
|
sig: admin_signed.to_string(),
|
|
referral_code: None,
|
|
};
|
|
info!(?admin_post_login_data);
|
|
|
|
let admin_post_login_data = r
|
|
.post(&login_post_url)
|
|
.json(&admin_post_login_data)
|
|
.send()
|
|
.await
|
|
.unwrap()
|
|
.text()
|
|
.await
|
|
.unwrap();
|
|
|
|
info!("admin_post_login_data: {:#}", admin_post_login_data);
|
|
|
|
let admin_login_response: LoginPostResponse =
|
|
serde_json::from_str(&admin_post_login_data).unwrap();
|
|
info!(?admin_login_response);
|
|
|
|
// Upgrade the account to admin
|
|
info!("Make the user an admin ...");
|
|
// Change Admin SubCommand struct
|
|
let admin_status_changer = ChangeAdminStatusSubCommand {
|
|
address: format!("{:?}", admin_wallet.address()),
|
|
should_be_admin: true,
|
|
};
|
|
info!(?admin_status_changer);
|
|
|
|
info!("Changing the status of the admin_wallet to be an admin");
|
|
// Pass on the database into it ...
|
|
admin_status_changer.main(x.db_conn()).await.unwrap();
|
|
|
|
// Now log him in again, because he was just signed out
|
|
// Login the admin again, because he was just signed out
|
|
let admin_login_get_url = format!(
|
|
"{}user/login/{:?}",
|
|
x.proxy_provider.url(),
|
|
admin_wallet.address()
|
|
);
|
|
let admin_login_message = r.get(admin_login_get_url).send().await.unwrap();
|
|
let admin_login_message = admin_login_message.text().await.unwrap();
|
|
|
|
// Sign the message and POST it to login as admin
|
|
let admin_signed: Signature = admin_wallet
|
|
.sign_message(&admin_login_message)
|
|
.await
|
|
.unwrap();
|
|
info!(?admin_signed);
|
|
|
|
let admin_post_login_data = PostLogin {
|
|
msg: admin_login_message,
|
|
sig: admin_signed.to_string(),
|
|
referral_code: None,
|
|
};
|
|
info!(?admin_post_login_data);
|
|
|
|
let admin_login_response = r
|
|
.post(&login_post_url)
|
|
.json(&admin_post_login_data)
|
|
.send()
|
|
.await
|
|
.unwrap()
|
|
.json::<LoginPostResponse>()
|
|
.await
|
|
.unwrap();
|
|
info!(?admin_login_response);
|
|
|
|
admin_login_response
|
|
}
|