diff options
Diffstat (limited to '')
-rw-r--r-- | tests/data/lloadd-anon.conf | 39 | ||||
-rw-r--r-- | tests/data/lloadd-backend-issues.conf | 55 | ||||
-rw-r--r-- | tests/data/lloadd-empty.conf | 25 | ||||
-rw-r--r-- | tests/data/lloadd-sasl.conf | 48 | ||||
-rw-r--r-- | tests/data/lloadd-tls.conf | 57 | ||||
-rw-r--r-- | tests/data/lloadd.conf | 46 | ||||
-rw-r--r-- | tests/data/lloadd/monitor.ldif | 278 |
7 files changed, 548 insertions, 0 deletions
diff --git a/tests/data/lloadd-anon.conf b/tests/data/lloadd-anon.conf new file mode 100644 index 0000000..a36ab39 --- /dev/null +++ b/tests/data/lloadd-anon.conf @@ -0,0 +1,39 @@ +# Load balancer config -- for testing +# $OpenLDAP$ +## This work is part of OpenLDAP Software <http://www.openldap.org/>. +## +## Copyright 1998-2022 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## <http://www.OpenLDAP.org/license.html>. + +# allow big PDUs from anonymous (for testing purposes) +sockbuf_max_incoming_client 4194303 +sockbuf_max_incoming_upstream 4194303 + +backend-server uri=@URI2@ + numconns=3 + bindconns=2 + retry=5000 + max-pending-ops=5 + conn-max-pending=3 + +backend-server uri=@URI3@ + numconns=3 + bindconns=2 + retry=5000 + max-pending-ops=5 + conn-max-pending=3 + +backend-server uri=@URI4@ + numconns=3 + bindconns=2 + retry=5000 + max-pending-ops=5 + conn-max-pending=3 diff --git a/tests/data/lloadd-backend-issues.conf b/tests/data/lloadd-backend-issues.conf new file mode 100644 index 0000000..2796304 --- /dev/null +++ b/tests/data/lloadd-backend-issues.conf @@ -0,0 +1,55 @@ +# Load balancer config -- for testing +# $OpenLDAP$ +## This work is part of OpenLDAP Software <http://www.openldap.org/>. +## +## Copyright 1998-2022 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## <http://www.OpenLDAP.org/license.html>. + +# allow big PDUs from anonymous (for testing purposes) +sockbuf_max_incoming_client 4194303 +sockbuf_max_incoming_upstream 4194303 + +bindconf + bindmethod=simple + binddn="cn=Manager,dc=example,dc=com" + credentials=secret + +# incorrect password (DB is empty) +backend-server uri=@URI2@ + numconns=3 + bindconns=2 + retry=500 + max-pending-ops=5 + conn-max-pending=3 + +# backend is often unresponsive +backend-server uri=@URI3@ + numconns=3 + bindconns=2 + retry=500 + max-pending-ops=5 + conn-max-pending=3 + +# unreachable backend (not running) +backend-server uri=@URI4@ + numconns=3 + bindconns=2 + retry=500 + max-pending-ops=5 + conn-max-pending=3 + +# backend that fails to resolve +backend-server uri=ldap://does.not.resolve.example.com + numconns=3 + bindconns=2 + retry=500 + max-pending-ops=5 + conn-max-pending=3 diff --git a/tests/data/lloadd-empty.conf b/tests/data/lloadd-empty.conf new file mode 100644 index 0000000..a5b0ac6 --- /dev/null +++ b/tests/data/lloadd-empty.conf @@ -0,0 +1,25 @@ +# Load balancer config -- for testing +# $OpenLDAP$ +## This work is part of OpenLDAP Software <http://www.openldap.org/>. +## +## Copyright 1998-2022 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## <http://www.OpenLDAP.org/license.html>. + +# allow big PDUs from anonymous (for testing purposes) +sockbuf_max_incoming_client 4194303 +sockbuf_max_incoming_upstream 4194303 + +feature proxyauthz + +bindconf + bindmethod=simple + binddn="cn=Manager,dc=example,dc=com" + credentials=secret diff --git a/tests/data/lloadd-sasl.conf b/tests/data/lloadd-sasl.conf new file mode 100644 index 0000000..343e10c --- /dev/null +++ b/tests/data/lloadd-sasl.conf @@ -0,0 +1,48 @@ +# Load balancer config -- for testing +# $OpenLDAP$ +## This work is part of OpenLDAP Software <http://www.openldap.org/>. +## +## Copyright 1998-2022 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## <http://www.OpenLDAP.org/license.html>. + +# allow big PDUs from anonymous (for testing purposes) +sockbuf_max_incoming_client 4194303 +sockbuf_max_incoming_upstream 4194303 + +feature proxyauthz + +bindconf + bindmethod=sasl + @SASL_MECH@ + authcid=manager + authzid="dn:cn=Manager,dc=example,dc=com" + credentials=secret + +backend-server uri=@URI2@ + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 + +backend-server uri=@URI3@ + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 + +backend-server uri=@URI4@ + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 diff --git a/tests/data/lloadd-tls.conf b/tests/data/lloadd-tls.conf new file mode 100644 index 0000000..310ce8f --- /dev/null +++ b/tests/data/lloadd-tls.conf @@ -0,0 +1,57 @@ +# Load balancer config -- for testing +# $OpenLDAP$ +## This work is part of OpenLDAP Software <http://www.openldap.org/>. +## +## Copyright 1998-2022 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## <http://www.OpenLDAP.org/license.html>. + +# SSL configuration +TLSCACertificateFile @TESTDIR@/tls/ca/certs/testsuiteCA.crt +TLSCertificateKeyFile @TESTDIR@/tls/private/localhost.key +TLSCertificateFile @TESTDIR@/tls/certs/localhost.crt +TLSVerifyClient try + +# noop for standalone +TLSShareSlapdCTX yes + +# allow big PDUs from anonymous (for testing purposes) +sockbuf_max_incoming_client 4194303 +sockbuf_max_incoming_upstream 4194303 + +feature proxyauthz + +bindconf + bindmethod=simple + binddn="cn=Manager,dc=example,dc=com" + credentials=secret + tls_cacert=@TESTDIR@/tls/ca/certs/testsuiteCA.crt + +backend-server uri=@URIP3@ + starttls=critical + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 + +backend-server uri=@SURIP4@ + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 + +backend-server uri=@URI5@ + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 diff --git a/tests/data/lloadd.conf b/tests/data/lloadd.conf new file mode 100644 index 0000000..4544eb2 --- /dev/null +++ b/tests/data/lloadd.conf @@ -0,0 +1,46 @@ +# Load balancer config -- for testing +# $OpenLDAP$ +## This work is part of OpenLDAP Software <http://www.openldap.org/>. +## +## Copyright 1998-2022 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## <http://www.OpenLDAP.org/license.html>. + +# allow big PDUs from anonymous (for testing purposes) +sockbuf_max_incoming_client 4194303 +sockbuf_max_incoming_upstream 4194303 + +feature proxyauthz + +bindconf + bindmethod=simple + binddn="cn=Manager,dc=example,dc=com" + credentials=secret + +backend-server uri=@URI2@ + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 + +backend-server uri=@URI3@ + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 + +backend-server uri=@URI4@ + numconns=3 + bindconns=3 + retry=5000 + max-pending-ops=20 + conn-max-pending=3 diff --git a/tests/data/lloadd/monitor.ldif b/tests/data/lloadd/monitor.ldif new file mode 100644 index 0000000..9e0f3ff --- /dev/null +++ b/tests/data/lloadd/monitor.ldif @@ -0,0 +1,278 @@ +# empty lloadd +dn: cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancer +olmIncomingConnections: 0 +olmOutgoingConnections: 0 + +dn: cn=Incoming Connections,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + +dn: cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + +dn: cn=Bind,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerOperation +olmReceivedOps: 1 +olmForwardedOps: 0 +olmRejectedOps: 1 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Other,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerOperation +olmReceivedOps: 1 +olmForwardedOps: 0 +olmRejectedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Backend Servers,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + + +# with first backend +dn: cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancer +olmIncomingConnections: 0 +olmOutgoingConnections: 4 + +dn: cn=Incoming Connections,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + +dn: cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + +dn: cn=Bind,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerOperation +olmReceivedOps: 1 +olmForwardedOps: 0 +olmRejectedOps: 1 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Other,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerOperation +olmReceivedOps: 1 +olmForwardedOps: 0 +olmRejectedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Backend Servers,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + +dn: cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerServer +olmServerURI: ldap://localhost:9012/ +olmActiveConnections: 4 +olmPendingConnections: 0 +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 1,cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,c + n=Monitor +objectClass: olmBalancerConnection +olmConnectionType: regular +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 3,cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,c + n=Monitor +objectClass: olmBalancerConnection +olmConnectionType: regular +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 2,cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,c + n=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 4,cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,c + n=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + + +# second backend and a search+WhoAmI? +dn: cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancer +olmIncomingConnections: 0 +olmOutgoingConnections: 13 + +dn: cn=Incoming Connections,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + +dn: cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + +dn: cn=Bind,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerOperation +olmReceivedOps: 3 +olmForwardedOps: 2 +olmRejectedOps: 1 +olmCompletedOps: 2 +olmFailedOps: 0 + +dn: cn=Other,cn=Operations,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerOperation +olmReceivedOps: 5 +olmForwardedOps: 2 +olmRejectedOps: 0 +olmCompletedOps: 2 +olmFailedOps: 0 + +dn: cn=Backend Servers,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: monitorContainer + +dn: cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerServer +olmServerURI: ldap://localhost:9012/ +olmActiveConnections: 4 +olmPendingConnections: 0 +olmPendingOps: 0 +olmReceivedOps: 2 +olmCompletedOps: 2 +olmFailedOps: 0 + +dn: cn=Connection 1,cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,c + n=Monitor +objectClass: olmBalancerConnection +olmConnectionType: regular +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 3,cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,c + n=Monitor +objectClass: olmBalancerConnection +olmConnectionType: regular +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 2,cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,c + n=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 1 +olmCompletedOps: 1 +olmFailedOps: 0 + +dn: cn=Connection 4,cn=first,cn=Backend Servers,cn=Load Balancer,cn=Backends,c + n=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 1 +olmCompletedOps: 1 +olmFailedOps: 0 + +dn: cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backends,cn=Monitor +objectClass: olmBalancerServer +olmServerURI: ldap://localhost:9013/ +olmActiveConnections: 9 +olmPendingConnections: 0 +olmPendingOps: 0 +olmReceivedOps: 2 +olmCompletedOps: 2 +olmFailedOps: 0 + +dn: cn=Connection 5,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backend + s,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: regular +olmPendingOps: 0 +olmReceivedOps: 1 +olmCompletedOps: 1 +olmFailedOps: 0 + +dn: cn=Connection 7,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backend + s,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: regular +olmPendingOps: 0 +olmReceivedOps: 1 +olmCompletedOps: 1 +olmFailedOps: 0 + +dn: cn=Connection 8,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backend + s,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: regular +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 9,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backend + s,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: regular +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 6,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backend + s,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 10,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backen + ds,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 11,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backen + ds,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 12,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backen + ds,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + +dn: cn=Connection 13,cn=server 2,cn=Backend Servers,cn=Load Balancer,cn=Backen + ds,cn=Monitor +objectClass: olmBalancerConnection +olmConnectionType: bind +olmPendingOps: 0 +olmReceivedOps: 0 +olmCompletedOps: 0 +olmFailedOps: 0 + |