chore: migrate tests to also run with mariadb

This commit is contained in:
realaravinth
2022-07-22 19:14:18 +05:30
parent 912b342e0e
commit 249b6461ee
24 changed files with 352 additions and 59 deletions

View File

@@ -147,7 +147,18 @@ pub mod tests {
use libmcaptcha::pow::PoWConfig;
#[actix_rt::test]
pub async fn get_pow_config_works() {
async fn get_pow_config_works_pg() {
let data = crate::tests::pg::get_data().await;
get_pow_config_works(data).await;
}
#[actix_rt::test]
async fn get_pow_config_works_maria() {
let data = crate::tests::maria::get_data().await;
get_pow_config_works(data).await;
}
pub async fn get_pow_config_works(data: ArcData) {
use super::*;
use crate::tests::*;
use crate::*;
@@ -157,7 +168,6 @@ pub mod tests {
const PASSWORD: &str = "testingpas";
const EMAIL: &str = "randomuser@a.com";
let data = get_data().await;
let data = &data;
delete_user(data, NAME).await;
@@ -186,7 +196,20 @@ pub mod tests {
}
#[actix_rt::test]
pub async fn pow_difficulty_factor_increases_on_visitor_count_increase() {
async fn pow_difficulty_factor_increases_on_visitor_count_increase_pg() {
let data = crate::tests::pg::get_data().await;
pow_difficulty_factor_increases_on_visitor_count_increase(data).await;
}
#[actix_rt::test]
async fn pow_difficulty_factor_increases_on_visitor_count_increase_maria() {
let data = crate::tests::maria::get_data().await;
pow_difficulty_factor_increases_on_visitor_count_increase(data).await;
}
pub async fn pow_difficulty_factor_increases_on_visitor_count_increase(
data: ArcData,
) {
use super::*;
use crate::tests::*;
use crate::*;
@@ -214,7 +237,6 @@ pub mod tests {
visitor_threshold: 30,
};
let data = get_data().await;
let data = &data;
let levels = [L1, L2, L3];

View File

@@ -59,11 +59,21 @@ pub mod tests {
use crate::*;
#[actix_rt::test]
pub async fn verify_pow_works() {
async fn verify_pow_works_pg() {
let data = crate::tests::pg::get_data().await;
verify_pow_works(data).await;
}
#[actix_rt::test]
async fn verify_pow_works_maria() {
let data = crate::tests::maria::get_data().await;
verify_pow_works(data).await;
}
pub async fn verify_pow_works(data: ArcData) {
const NAME: &str = "powverifyusr";
const PASSWORD: &str = "testingpas";
const EMAIL: &str = "verifyuser@a.com";
let data = get_data().await;
let data = &data;
delete_user(data, NAME).await;

View File

@@ -80,7 +80,18 @@ pub mod tests {
use crate::*;
#[actix_rt::test]
pub async fn validate_captcha_token_works() {
async fn validate_captcha_token_works_pg() {
let data = crate::tests::pg::get_data().await;
validate_captcha_token_works(data).await;
}
#[actix_rt::test]
async fn validate_captcha_token_works_maria() {
let data = crate::tests::maria::get_data().await;
validate_captcha_token_works(data).await;
}
pub async fn validate_captcha_token_works(data: ArcData) {
const NAME: &str = "enterprisetken";
const PASSWORD: &str = "testingpas";
const EMAIL: &str = "verifyuser@enter.com";
@@ -89,7 +100,6 @@ pub mod tests {
const VERIFY_TOKEN_URL: &str = "/api/v1/pow/siteverify";
// const UPDATE_URL: &str = "/api/v1/mcaptcha/domain/token/duration/update";
let data = get_data().await;
let data = &data;
delete_user(data, NAME).await;