Fixing test
Rust Build / Rustfmt (pull_request) Successful in 41s
Rust Build / Test Suite (pull_request) Failing after 1m2s
Rust Build / Clippy (pull_request) Successful in 1m17s
Rust Build / Check (pull_request) Successful in 2m7s
Rust Build / build (pull_request) Successful in 3m57s
Rust Build / Rustfmt (pull_request) Successful in 41s
Rust Build / Test Suite (pull_request) Failing after 1m2s
Rust Build / Clippy (pull_request) Successful in 1m17s
Rust Build / Check (pull_request) Successful in 2m7s
Rust Build / build (pull_request) Successful in 3m57s
This commit is contained in:
@@ -171,6 +171,33 @@ pub mod requests {
|
|||||||
|
|
||||||
app.clone().oneshot(req).await
|
app.clone().oneshot(req).await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn update_password(
|
||||||
|
app: &axum::Router,
|
||||||
|
user_id: &uuid::Uuid,
|
||||||
|
current_password: &str,
|
||||||
|
updated_password: &str,
|
||||||
|
confirmed_password: &str,
|
||||||
|
) -> Result<axum::response::Response, axum::http::Error> {
|
||||||
|
let payload = serde_json::json!({
|
||||||
|
"user_id": user_id,
|
||||||
|
"current_password": current_password,
|
||||||
|
"updated_password": updated_password,
|
||||||
|
"confirmed_password": confirmed_password,
|
||||||
|
});
|
||||||
|
match axum::http::Request::builder()
|
||||||
|
.method(axum::http::Method::PATCH)
|
||||||
|
.uri(super::callers::endpoints::UPDATE_PASSWORD)
|
||||||
|
.header(axum::http::header::CONTENT_TYPE, "application/json")
|
||||||
|
.body(axum::body::Body::from(payload.to_string()))
|
||||||
|
{
|
||||||
|
Ok(req) => match app.clone().oneshot(req).await {
|
||||||
|
Ok(resp) => Ok(resp),
|
||||||
|
Err(err) => Err(axum::http::Error::from(err)),
|
||||||
|
},
|
||||||
|
Err(err) => Err(err),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Test user firstname
|
/// Test user firstname
|
||||||
@@ -183,11 +210,15 @@ const TEST_USERNAME: &str = "BillyBob01";
|
|||||||
const TEST_PASSWORD: &str = "923ndcry392qryudx328qrdy328r";
|
const TEST_PASSWORD: &str = "923ndcry392qryudx328qrdy328r";
|
||||||
/// Test user phone number
|
/// Test user phone number
|
||||||
const TEST_PHONE_NUMBER: &str = "+10123456789";
|
const TEST_PHONE_NUMBER: &str = "+10123456789";
|
||||||
|
/// Test updated user password
|
||||||
|
const TEST_UPDATED_PASSWORD: &str = "3cnf29ry8q27i3yrc928qi37ryndxc2198q7yd9xzq12837e";
|
||||||
|
|
||||||
/// Test service username
|
/// Test service username
|
||||||
const TEST_SERVICE_USERNAME: &str = "swoon";
|
const TEST_SERVICE_USERNAME: &str = "swoon";
|
||||||
/// Test service passphrase
|
/// Test service passphrase
|
||||||
const TEST_SERVICE_PASSPHRASE: &str = "4n5cf349tfy34w857ty39wq45nfdq23";
|
const TEST_SERVICE_PASSPHRASE: &str = "4n5cf349tfy34w857ty39wq45nfdq23";
|
||||||
|
/// Test updated service user passphrase
|
||||||
|
const TEST_SERVICE_UPDATED_PASSPHRASE: &str = "3487ncfyth934287fcrty32487fry32in7";
|
||||||
|
|
||||||
mod util {
|
mod util {
|
||||||
pub async fn convert_response<T>(
|
pub async fn convert_response<T>(
|
||||||
@@ -378,6 +409,50 @@ mod flow {
|
|||||||
Err(err) => Err(std::io::Error::other(err.to_string())),
|
Err(err) => Err(std::io::Error::other(err.to_string())),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn update_password(
|
||||||
|
app: &axum::Router,
|
||||||
|
user_id: &uuid::Uuid,
|
||||||
|
current_password: &str,
|
||||||
|
updated_password: &str,
|
||||||
|
confirmed_password: &str,
|
||||||
|
) -> Result<uuid::Uuid, std::io::Error> {
|
||||||
|
match requests::update_password(
|
||||||
|
app,
|
||||||
|
user_id,
|
||||||
|
current_password,
|
||||||
|
updated_password,
|
||||||
|
confirmed_password,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
Ok(response) => {
|
||||||
|
if axum::http::StatusCode::OK != response.status() {
|
||||||
|
Err(std::io::Error::other(format!(
|
||||||
|
"Status code is off {:?}",
|
||||||
|
response.status()
|
||||||
|
)))
|
||||||
|
} else {
|
||||||
|
match util::convert_response::<callers::login::response::UpdatePasswordResponse>(
|
||||||
|
response,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
Ok(response) => {
|
||||||
|
if response.data.len() > 0 {
|
||||||
|
let id = response.data[0].clone();
|
||||||
|
Ok(id)
|
||||||
|
} else {
|
||||||
|
Err(std::io::Error::other("No data returned"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(err) => Err(err),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(err) => Err(std::io::Error::other(err.to_string())),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
@@ -700,6 +775,23 @@ async fn test_update_password() {
|
|||||||
login_result.access_token.is_empty(),
|
login_result.access_token.is_empty(),
|
||||||
"Access token is empty when it should not be"
|
"Access token is empty when it should not be"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
match flow::update_password(
|
||||||
|
&app,
|
||||||
|
&user.id,
|
||||||
|
TEST_PASSWORD,
|
||||||
|
TEST_UPDATED_PASSWORD,
|
||||||
|
TEST_UPDATED_PASSWORD,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
Ok(id) => {
|
||||||
|
assert_eq!(id, user.id, "Ids do not match");
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error: {err:?}");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
assert!(false, "Error: {err:?}");
|
assert!(false, "Error: {err:?}");
|
||||||
|
|||||||
Reference in New Issue
Block a user