refactor(oauth): rename request_login to request_login_with_scanned_qr_code to avoid future name clashes for the opposite flow

Signed-off-by: Johannes Marbach <n0-0ne+github@mailbox.org>
This commit is contained in:
Johannes Marbach
2025-10-30 16:06:28 +01:00
committed by Damir Jelić
parent d122f10147
commit da1369b9c2
@@ -304,7 +304,7 @@ mod test {
DeviceNotCreated,
}
async fn request_login(
async fn request_login_with_scanned_qr_code(
behaviour: BobBehaviour,
qr_code_rx: oneshot::Receiver<QrCodeData>,
check_code_tx: oneshot::Sender<u8>,
@@ -555,7 +555,7 @@ mod test {
// Let Bob request the login and run through the process.
let bob_task = spawn(async move {
request_login(
request_login_with_scanned_qr_code(
BobBehaviour::HappyPath,
qr_code_rx,
checkcode_tx,
@@ -673,7 +673,7 @@ mod test {
// Let Bob request the login and run through the process.
let bob_task = spawn(async move {
request_login(
request_login_with_scanned_qr_code(
BobBehaviour::UnexpectedMessageInsteadOfLoginProtocol,
qr_code_rx,
checkcode_tx,
@@ -799,7 +799,7 @@ mod test {
// Let Bob request the login and run through the process.
let bob_task = spawn(async move {
request_login(
request_login_with_scanned_qr_code(
BobBehaviour::DeviceAlreadyExists,
qr_code_rx,
checkcode_tx,
@@ -936,7 +936,7 @@ mod test {
// Let Bob request the login and run through the process.
let bob_task = spawn(async move {
request_login(
request_login_with_scanned_qr_code(
BobBehaviour::DeviceNotCreated,
qr_code_rx,
checkcode_tx,