summaryrefslogtreecommitdiffstats
path: root/src/tests/modules/ldap/acct.unlang
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/modules/ldap/acct.unlang')
-rw-r--r--src/tests/modules/ldap/acct.unlang23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/tests/modules/ldap/acct.unlang b/src/tests/modules/ldap/acct.unlang
new file mode 100644
index 0000000..2297ea7
--- /dev/null
+++ b/src/tests/modules/ldap/acct.unlang
@@ -0,0 +1,23 @@
+#
+# Run the "ldap" module
+# PRE: auth
+#
+ldap.accounting {
+}
+if (ok) {
+ test_pass
+}
+else {
+ test_fail
+}
+
+update {
+ Tmp-String-0 := "%{ldap:ldap://$ENV{TEST_SERVER}/uid=john,ou=people,dc=example,dc=com?description}"
+}
+
+if (&Tmp-String-0 != "User john is online") {
+ test_fail
+}
+else {
+ test_pass
+}