summaryrefslogtreecommitdiff
path: root/source4/torture/libnet/usertest.h
diff options
context:
space:
mode:
authorRafal Szczesniak <mimir@samba.org>2006-09-19 19:15:36 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:19:01 -0500
commita76d3734aeb1a948de32ef8271c0363bd54eb593 (patch)
tree669877a2f565ba49444b2ae0eb5ae636a4ae887b /source4/torture/libnet/usertest.h
parent3394bb23fd9c7c7b9d388be414143d0fffdb2593 (diff)
downloadsamba-a76d3734aeb1a948de32ef8271c0363bd54eb593.tar.gz
samba-a76d3734aeb1a948de32ef8271c0363bd54eb593.tar.bz2
samba-a76d3734aeb1a948de32ef8271c0363bd54eb593.zip
r18683: NET-USERMOD test changed to be able to perform multiple simultaneous
changes. Also, some common definitions for user mod tests have been put into a separate file. rafal (This used to be commit 0040c087481be68d44a0b59744be5c5e569fd8a4)
Diffstat (limited to 'source4/torture/libnet/usertest.h')
-rw-r--r--source4/torture/libnet/usertest.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/source4/torture/libnet/usertest.h b/source4/torture/libnet/usertest.h
new file mode 100644
index 0000000000..6244d39501
--- /dev/null
+++ b/source4/torture/libnet/usertest.h
@@ -0,0 +1,20 @@
+#define TEST_USERNAME "libnetusertest"
+
+#define continue_if_field_set(field) \
+ if (field != 0) { \
+ i--; \
+ continue; \
+ }
+
+
+#define FIELDS_NUM 15
+enum test_fields { none = 0, account_name, full_name, description, home_directory, home_drive,
+ comment, logon_script, profile_path, acct_expiry, allow_password_change,
+ force_password_change, last_logon, last_logoff, last_password_change };
+
+
+#define TEST_CHG_ACCOUNTNAME "newlibnetusertest%02d"
+#define TEST_CHG_DESCRIPTION "Sample description %ld"
+#define TEST_CHG_FULLNAME "First%04x Last%04x"
+#define TEST_CHG_COMMENT "Comment[%04lu%04lu]"
+#define TEST_CHG_PROFILEPATH "\\\\srv%04ld\\profile%02u\\prof"