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>
74 lines
2.0 KiB
Rust
74 lines
2.0 KiB
Rust
mod common;
|
|
|
|
use std::str::FromStr;
|
|
use std::time::Duration;
|
|
|
|
use crate::common::admin_increases_balance::admin_increase_balance;
|
|
use crate::common::anvil::TestAnvil;
|
|
use crate::common::create_admin::create_user_as_admin;
|
|
use crate::common::create_user::create_user;
|
|
use crate::common::mysql::TestMysql;
|
|
use crate::common::user_balance::user_get_balance;
|
|
use crate::common::TestApp;
|
|
use migration::sea_orm::prelude::Decimal;
|
|
use tracing::info;
|
|
|
|
// #[cfg_attr(not(feature = "tests-needing-docker"), ignore)]
|
|
#[ignore = "under construction"]
|
|
#[test_log::test(tokio::test)]
|
|
async fn test_admin_imitate_user() {
|
|
todo!();
|
|
}
|
|
|
|
#[cfg_attr(not(feature = "tests-needing-docker"), ignore)]
|
|
#[test_log::test(tokio::test)]
|
|
async fn test_admin_grant_credits() {
|
|
info!("Starting admin grant credits test");
|
|
|
|
let a: TestAnvil = TestAnvil::spawn(31337).await;
|
|
|
|
let db = TestMysql::spawn().await;
|
|
|
|
let x = TestApp::spawn(&a, Some(&db), None).await;
|
|
|
|
let r = reqwest::Client::builder()
|
|
.timeout(Duration::from_secs(3))
|
|
.build()
|
|
.unwrap();
|
|
|
|
// Setup variables that will be used
|
|
let user_wallet = a.wallet(0);
|
|
let admin_wallet = a.wallet(1);
|
|
info!(?admin_wallet);
|
|
|
|
let user_login_response = create_user(&x, &r, &user_wallet, None).await;
|
|
let admin_login_response = create_user_as_admin(&x, &db, &r, &admin_wallet).await;
|
|
info!(?admin_login_response);
|
|
|
|
let increase_balance_response = admin_increase_balance(
|
|
&x,
|
|
&r,
|
|
&admin_login_response,
|
|
&user_wallet,
|
|
Decimal::from(100),
|
|
)
|
|
.await;
|
|
|
|
assert_eq!(
|
|
Decimal::from_str(increase_balance_response["amount"].as_str().unwrap()).unwrap(),
|
|
Decimal::from(100)
|
|
);
|
|
|
|
let user_balance = user_get_balance(&x, &r, &user_login_response).await;
|
|
assert_eq!(user_balance.remaining(), Decimal::from(100));
|
|
|
|
x.wait_for_stop();
|
|
}
|
|
|
|
// #[cfg_attr(not(feature = "tests-needing-docker"), ignore)]
|
|
#[ignore = "under construction"]
|
|
#[test_log::test(tokio::test)]
|
|
async fn test_admin_change_user_tier() {
|
|
todo!();
|
|
}
|