aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/posix/pwd.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:00 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 17:28:32 -0500
commitbd5969fc876a10b18613302db7087ef3c40f18e1 (patch)
tree7c2b8619afe902abf99570df2873fbdf40a4d1a1 /lib/mlibc/tests/posix/pwd.c
parenta95b38b1b92b172e6cc4e8e56a88a30cc65907b0 (diff)
lib: Add mlibc
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/tests/posix/pwd.c')
-rw-r--r--lib/mlibc/tests/posix/pwd.c88
1 files changed, 88 insertions, 0 deletions
diff --git a/lib/mlibc/tests/posix/pwd.c b/lib/mlibc/tests/posix/pwd.c
new file mode 100644
index 0000000..a9ebd8e
--- /dev/null
+++ b/lib/mlibc/tests/posix/pwd.c
@@ -0,0 +1,88 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <pwd.h>
+#include <unistd.h>
+#include <assert.h>
+#include <string.h>
+#include <errno.h>
+
+int main()
+{
+ struct passwd pwd, *result = NULL;
+ char *buf;
+ size_t bufsize;
+ int s;
+
+ bufsize = sysconf(_SC_GETPW_R_SIZE_MAX);
+ assert(bufsize > 0 && bufsize < 0x100000);
+
+ buf = malloc(bufsize);
+ assert(buf);
+
+ s = getpwnam_r("root", &pwd, buf, bufsize, &result);
+ assert(!s);
+ assert(pwd.pw_uid == 0);
+ assert(!strcmp(pwd.pw_name, "root"));
+ assert(strlen(pwd.pw_passwd) <= 1000);
+
+ s = getpwuid_r(0, &pwd, buf, bufsize, &result);
+ assert(!s);
+ assert(pwd.pw_uid == 0);
+ assert(!strcmp(pwd.pw_name, "root"));
+ assert(strlen(pwd.pw_passwd) <= 1000);
+
+ result = getpwnam("root");
+ assert(result);
+ assert(result->pw_uid == 0);
+ assert(!strcmp(result->pw_name, "root"));
+ assert(strlen(result->pw_passwd) <= 1000);
+
+ result = getpwuid(0);
+ assert(result);
+ assert(result->pw_uid == 0);
+ assert(!strcmp(result->pw_name, "root"));
+ assert(strlen(result->pw_passwd) <= 1000);
+
+ errno = 0;
+ setpwent();
+ assert(errno == 0);
+
+ errno = 0;
+ result = getpwent();
+ assert(result);
+
+ pwd = *result;
+ pwd.pw_name = strdup(result->pw_name);
+ pwd.pw_passwd = strdup(result->pw_passwd);
+ pwd.pw_gecos = strdup(result->pw_gecos);
+ pwd.pw_dir = strdup(result->pw_dir);
+ pwd.pw_shell = strdup(result->pw_shell);
+ assert(pwd.pw_name);
+ assert(pwd.pw_passwd);
+ assert(pwd.pw_gecos);
+ assert(pwd.pw_dir);
+ assert(pwd.pw_shell);
+
+ errno = 0;
+ setpwent();
+ assert(errno == 0);
+
+ errno = 0;
+ result = getpwent();
+ assert(result);
+
+ assert(!strcmp(pwd.pw_name, result->pw_name));
+ assert(!strcmp(pwd.pw_passwd, result->pw_passwd));
+ assert(!strcmp(pwd.pw_gecos, result->pw_gecos));
+ assert(!strcmp(pwd.pw_dir, result->pw_dir));
+ assert(!strcmp(pwd.pw_shell, result->pw_shell));
+ assert(pwd.pw_uid == result->pw_uid);
+ assert(pwd.pw_gid == result->pw_gid);
+
+ free(buf);
+ free(pwd.pw_name);
+ free(pwd.pw_passwd);
+ free(pwd.pw_gecos);
+ free(pwd.pw_dir);
+ free(pwd.pw_shell);
+}