diff --git a/tests/integration_config_oidc_tests.rs b/tests/integration_config_oidc_tests.rs index c85ce27..42cee1b 100644 --- a/tests/integration_config_oidc_tests.rs +++ b/tests/integration_config_oidc_tests.rs @@ -70,6 +70,8 @@ mod tests { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, } diff --git a/tests/integration_document_upload_hash_duplicate_tests.rs b/tests/integration_document_upload_hash_duplicate_tests.rs index 9e7971c..fa892b9 100644 --- a/tests/integration_document_upload_hash_duplicate_tests.rs +++ b/tests/integration_document_upload_hash_duplicate_tests.rs @@ -96,6 +96,8 @@ async fn create_test_app_state() -> Result> { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, } diff --git a/tests/integration_ignored_files_integration_tests.rs b/tests/integration_ignored_files_integration_tests.rs index 9b59607..cb5efaa 100644 --- a/tests/integration_ignored_files_integration_tests.rs +++ b/tests/integration_ignored_files_integration_tests.rs @@ -38,6 +38,8 @@ async fn create_test_app_state() -> Result> { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, } diff --git a/tests/integration_oidc_tests.rs b/tests/integration_oidc_tests.rs index 84622a6..05553ba 100644 --- a/tests/integration_oidc_tests.rs +++ b/tests/integration_oidc_tests.rs @@ -37,6 +37,8 @@ mod tests { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, }; diff --git a/tests/integration_source_scheduler_simple_tests.rs b/tests/integration_source_scheduler_simple_tests.rs index 676dea7..9e7d835 100644 --- a/tests/integration_source_scheduler_simple_tests.rs +++ b/tests/integration_source_scheduler_simple_tests.rs @@ -46,6 +46,8 @@ async fn create_test_app_state() -> Arc { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, }; diff --git a/tests/integration_source_scheduler_tests.rs b/tests/integration_source_scheduler_tests.rs index 1585ca7..5770783 100644 --- a/tests/integration_source_scheduler_tests.rs +++ b/tests/integration_source_scheduler_tests.rs @@ -190,6 +190,8 @@ async fn create_test_app_state() -> Arc { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, }; diff --git a/tests/integration_source_sync_cancellation_workflow_tests.rs b/tests/integration_source_sync_cancellation_workflow_tests.rs index f17638d..694127f 100644 --- a/tests/integration_source_sync_cancellation_workflow_tests.rs +++ b/tests/integration_source_sync_cancellation_workflow_tests.rs @@ -60,6 +60,8 @@ async fn create_test_app_state() -> Arc { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, }; diff --git a/tests/integration_source_sync_hash_duplicate_tests.rs b/tests/integration_source_sync_hash_duplicate_tests.rs index d75e33d..2bd610e 100644 --- a/tests/integration_source_sync_hash_duplicate_tests.rs +++ b/tests/integration_source_sync_hash_duplicate_tests.rs @@ -143,6 +143,8 @@ async fn create_test_app_state() -> Result> { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, } diff --git a/tests/integration_stop_sync_functionality_tests.rs b/tests/integration_stop_sync_functionality_tests.rs index 2661616..181538f 100644 --- a/tests/integration_stop_sync_functionality_tests.rs +++ b/tests/integration_stop_sync_functionality_tests.rs @@ -53,6 +53,8 @@ async fn create_test_app_state() -> Arc { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, }; diff --git a/tests/integration_universal_source_sync_tests.rs b/tests/integration_universal_source_sync_tests.rs index 8b41ac8..f681dbb 100644 --- a/tests/integration_universal_source_sync_tests.rs +++ b/tests/integration_universal_source_sync_tests.rs @@ -154,6 +154,8 @@ async fn create_test_app_state() -> Arc { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, }; diff --git a/tests/integration_webdav_comprehensive_tests.rs b/tests/integration_webdav_comprehensive_tests.rs index ddea9af..0d80efe 100644 --- a/tests/integration_webdav_comprehensive_tests.rs +++ b/tests/integration_webdav_comprehensive_tests.rs @@ -348,6 +348,8 @@ fn test_webdav_scheduler_creation() { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, }; diff --git a/tests/integration_webdav_hash_duplicate_tests.rs b/tests/integration_webdav_hash_duplicate_tests.rs index e091543..918ad5e 100644 --- a/tests/integration_webdav_hash_duplicate_tests.rs +++ b/tests/integration_webdav_hash_duplicate_tests.rs @@ -143,6 +143,8 @@ async fn create_test_app_state() -> Result> { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, } diff --git a/tests/integration_webdav_integration_tests.rs b/tests/integration_webdav_integration_tests.rs index afc8149..693bca7 100644 --- a/tests/integration_webdav_integration_tests.rs +++ b/tests/integration_webdav_integration_tests.rs @@ -104,6 +104,8 @@ async fn setup_test_app() -> (Router, Arc) { oidc_client_secret: None, oidc_issuer_url: None, oidc_redirect_uri: None, + oidc_auto_register: None, + allow_local_auth: None, s3_enabled: false, s3_config: None, };