all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pbs-devel] [PATCH proxmox 1/2] ldap: add an integration test for `check_connection`
@ 2023-07-21 14:34 Stefan Sterz
  2023-07-21 14:34 ` [pbs-devel] [PATCH proxmox 2/2] ldap: only search base of base_dn when checking connection Stefan Sterz
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Sterz @ 2023-07-21 14:34 UTC (permalink / raw)
  To: pbs-devel

Signed-off-by: Stefan Sterz <s.sterz@proxmox.com>
---
 proxmox-ldap/tests/glauth.rs | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/proxmox-ldap/tests/glauth.rs b/proxmox-ldap/tests/glauth.rs
index 8c0480e..88875d2 100644
--- a/proxmox-ldap/tests/glauth.rs
+++ b/proxmox-ldap/tests/glauth.rs
@@ -40,6 +40,11 @@ fn authenticate(con: &Connection, user: &str, pass: &str) -> Result<(), Error> {
     proxmox_async::runtime::block_on(con.authenticate_user(user, pass))
 }
 
+fn check_connection(config: &Config) -> Result<(), Error> {
+    let connection = Connection::new(config.clone());
+    proxmox_async::runtime::block_on(connection.check_connection())
+}
+
 fn default_config() -> Config {
     Config {
         servers: vec!["localhost".into()],
@@ -164,3 +169,25 @@ fn test_search() -> Result<(), Error> {
 
     Ok(())
 }
+
+#[test]
+#[ignore]
+fn test_check_connection() -> Result<(), Error> {
+    let _glauth = GlauthServer::new("tests/assets/glauth.cfg")?;
+
+    let mut config = default_config();
+    assert!(check_connection(&config).is_ok());
+
+    config.base_dn = "dc=invalid,dc=com".into();
+    assert!(check_connection(&config).is_err());
+    config.base_dn = "dc=example,dc=com".into();
+
+    config.bind_password = Some("invalid".into());
+    assert!(check_connection(&config).is_err());
+    config.bind_password = Some("password".into());
+
+    config.bind_password = None;
+    assert!(check_connection(&config).is_err());
+
+    Ok(())
+}
-- 
2.39.2





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-08-08 12:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-21 14:34 [pbs-devel] [PATCH proxmox 1/2] ldap: add an integration test for `check_connection` Stefan Sterz
2023-07-21 14:34 ` [pbs-devel] [PATCH proxmox 2/2] ldap: only search base of base_dn when checking connection Stefan Sterz
2023-07-25  8:56   ` Lukas Wagner
2023-08-08 12:03     ` [pbs-devel] applied: " Wolfgang Bumiller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal