mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
9256895635
* Try using drone cache plugin * Try another path * Include volume * Fix formatting * Include fmt * Exclude cargo dir from prettier * Don't override cargo * Just do check * Add cache key * Use different cache plugin * Add clippy * Try minio * Add quotes * Try adding secrets * Try again * Again * Use correct secret formation * Add back clippy * Use secret for the root bucket name * Try drone cache instead * Add region * Add path-style option * Include cargo clippy * Include everything again * Fix formatting * Don't run clippy twice * Add `allow` statements for tests to pass * Adjust endpoint to be a secret * Fix prettier * Merge & fix tests * Try to restart the woodpecker test * Change the ENV var name --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
126 lines
2.8 KiB
Rust
126 lines
2.8 KiB
Rust
use crate::{
|
|
schema::captcha_answer::dsl::{answer, captcha_answer, uuid},
|
|
source::captcha_answer::{CaptchaAnswer, CaptchaAnswerForm, CheckCaptchaAnswer},
|
|
utils::{functions::lower, get_conn, DbPool},
|
|
};
|
|
use diesel::{
|
|
delete,
|
|
dsl::exists,
|
|
insert_into,
|
|
result::Error,
|
|
select,
|
|
ExpressionMethods,
|
|
QueryDsl,
|
|
};
|
|
use diesel_async::RunQueryDsl;
|
|
|
|
impl CaptchaAnswer {
|
|
pub async fn insert(pool: &mut DbPool<'_>, captcha: &CaptchaAnswerForm) -> Result<Self, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
insert_into(captcha_answer)
|
|
.values(captcha)
|
|
.get_result::<Self>(conn)
|
|
.await
|
|
}
|
|
|
|
pub async fn check_captcha(
|
|
pool: &mut DbPool<'_>,
|
|
to_check: CheckCaptchaAnswer,
|
|
) -> Result<bool, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
// fetch requested captcha
|
|
let captcha_exists = select(exists(
|
|
captcha_answer
|
|
.filter((uuid).eq(to_check.uuid))
|
|
.filter(lower(answer).eq(to_check.answer.to_lowercase().clone())),
|
|
))
|
|
.get_result::<bool>(conn)
|
|
.await?;
|
|
|
|
// delete checked captcha
|
|
delete(captcha_answer.filter(uuid.eq(to_check.uuid)))
|
|
.execute(conn)
|
|
.await?;
|
|
|
|
Ok(captcha_exists)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#![allow(clippy::unwrap_used)]
|
|
#![allow(clippy::indexing_slicing)]
|
|
|
|
use crate::{
|
|
source::captcha_answer::{CaptchaAnswer, CaptchaAnswerForm, CheckCaptchaAnswer},
|
|
utils::build_db_pool_for_tests,
|
|
};
|
|
use serial_test::serial;
|
|
|
|
#[tokio::test]
|
|
#[serial]
|
|
async fn test_captcha_happy_path() {
|
|
let pool = &build_db_pool_for_tests().await;
|
|
let pool = &mut pool.into();
|
|
|
|
let inserted = CaptchaAnswer::insert(
|
|
pool,
|
|
&CaptchaAnswerForm {
|
|
answer: "XYZ".to_string(),
|
|
},
|
|
)
|
|
.await
|
|
.expect("should not fail to insert captcha");
|
|
|
|
let result = CaptchaAnswer::check_captcha(
|
|
pool,
|
|
CheckCaptchaAnswer {
|
|
uuid: inserted.uuid,
|
|
answer: "xyz".to_string(),
|
|
},
|
|
)
|
|
.await;
|
|
|
|
assert!(result.is_ok());
|
|
assert!(result.unwrap());
|
|
}
|
|
|
|
#[tokio::test]
|
|
#[serial]
|
|
async fn test_captcha_repeat_answer_fails() {
|
|
let pool = &build_db_pool_for_tests().await;
|
|
let pool = &mut pool.into();
|
|
|
|
let inserted = CaptchaAnswer::insert(
|
|
pool,
|
|
&CaptchaAnswerForm {
|
|
answer: "XYZ".to_string(),
|
|
},
|
|
)
|
|
.await
|
|
.expect("should not fail to insert captcha");
|
|
|
|
let _result = CaptchaAnswer::check_captcha(
|
|
pool,
|
|
CheckCaptchaAnswer {
|
|
uuid: inserted.uuid,
|
|
answer: "xyz".to_string(),
|
|
},
|
|
)
|
|
.await;
|
|
|
|
let result_repeat = CaptchaAnswer::check_captcha(
|
|
pool,
|
|
CheckCaptchaAnswer {
|
|
uuid: inserted.uuid,
|
|
answer: "xyz".to_string(),
|
|
},
|
|
)
|
|
.await;
|
|
|
|
assert!(result_repeat.is_ok());
|
|
assert!(!result_repeat.unwrap());
|
|
}
|
|
}
|