Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src Add some basic tests for fsync(2) and <paths.h>.
details: https://anonhg.NetBSD.org/src/rev/459fd33e434b
branches: trunk
changeset: 763661:459fd33e434b
user: jruoho <jruoho%NetBSD.org@localhost>
date: Wed Mar 30 09:43:21 2011 +0000
description:
Add some basic tests for fsync(2) and <paths.h>.
diffstat:
distrib/sets/lists/tests/mi | 6 +-
tests/include/Makefile | 3 +-
tests/include/t_paths.c | 195 ++++++++++++++++++++++++++++++++++++++++++++
tests/syscall/Makefile | 8 +-
tests/syscall/t_fsync.c | 119 ++++++++++++++++++++++++++
5 files changed, 325 insertions(+), 6 deletions(-)
diffs (truncated from 401 to 300 lines):
diff -r f73edfe92c18 -r 459fd33e434b distrib/sets/lists/tests/mi
--- a/distrib/sets/lists/tests/mi Wed Mar 30 09:23:26 2011 +0000
+++ b/distrib/sets/lists/tests/mi Wed Mar 30 09:43:21 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.278 2011/03/25 09:34:02 jruoho Exp $
+# $NetBSD: mi,v 1.279 2011/03/30 09:43:21 jruoho Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@@ -286,6 +286,7 @@
./usr/libdata/debug/usr/tests/include/t_bitstring.debug tests-ipf-tests debug,atf
./usr/libdata/debug/usr/tests/include/t_inttypes.debug tests-ipf-tests debug,atf
./usr/libdata/debug/usr/tests/include/t_limits.debug tests-ipf-tests debug,atf
+./usr/libdata/debug/usr/tests/include/t_paths.debug tests-ipf-tests debug,atf
./usr/libdata/debug/usr/tests/include/t_stdint.debug tests-ipf-tests debug,atf
./usr/libdata/debug/usr/tests/ipf tests-ipf-tests
./usr/libdata/debug/usr/tests/kernel tests-kernel-tests
@@ -564,6 +565,7 @@
./usr/libdata/debug/usr/tests/sbin/resize_ffs tests-sbin-tests
./usr/libdata/debug/usr/tests/syscall tests-syscall-debug
./usr/libdata/debug/usr/tests/syscall/t_cmsg.debug tests-syscall-debug debug,atf
+./usr/libdata/debug/usr/tests/syscall/t_fsync.debug tests-syscall-debug debug,atf
./usr/libdata/debug/usr/tests/syscall/t_timer.debug tests-syscall-debug debug,atf
./usr/libdata/debug/usr/tests/usr.bin tests-sbin-tests
./usr/libdata/debug/usr/tests/usr.sbin tests-sbin-tests
@@ -1337,6 +1339,7 @@
./usr/tests/include/t_bitstring tests-include-tests atf
./usr/tests/include/t_inttypes tests-include-tests atf
./usr/tests/include/t_limits tests-include-tests atf
+./usr/tests/include/t_paths tests-include-tests atf
./usr/tests/include/t_stdint tests-include-tests atf
./usr/tests/ipf tests-ipf-tests
./usr/tests/ipf/Atffile tests-ipf-tests
@@ -2100,6 +2103,7 @@
./usr/tests/syscall tests-syscall-tests
./usr/tests/syscall/Atffile tests-syscall-tests atf
./usr/tests/syscall/t_cmsg tests-syscall-tests atf
+./usr/tests/syscall/t_fsync tests-syscall-tests atf
./usr/tests/syscall/t_timer tests-syscall-tests atf
./usr/tests/toolchain tests-syscall-tests atf
./usr/tests/toolchain/Atffile tests-syscall-tests atf
diff -r f73edfe92c18 -r 459fd33e434b tests/include/Makefile
--- a/tests/include/Makefile Wed Mar 30 09:23:26 2011 +0000
+++ b/tests/include/Makefile Wed Mar 30 09:43:21 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2010/07/17 19:26:27 jmmv Exp $
+# $NetBSD: Makefile,v 1.2 2011/03/30 09:43:22 jruoho Exp $
NOMAN= # defined
@@ -10,6 +10,7 @@
TESTS_C= t_bitstring
TESTS_C+= t_inttypes
TESTS_C+= t_limits
+TESTS_C+= t_paths
TESTS_C+= t_stdint
FILESDIR= ${TESTSDIR}
diff -r f73edfe92c18 -r 459fd33e434b tests/include/t_paths.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/include/t_paths.c Wed Mar 30 09:43:21 2011 +0000
@@ -0,0 +1,195 @@
+/* $NetBSD: t_paths.c,v 1.1 2011/03/30 09:43:22 jruoho Exp $ */
+
+/*-
+ * Copyright (c) 2011 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Jukka Ruohonen.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: t_paths.c,v 1.1 2011/03/30 09:43:22 jruoho Exp $");
+
+#include <sys/param.h>
+#include <sys/stat.h>
+
+#include <errno.h>
+#include <fcntl.h>
+#include <paths.h>
+#include <string.h>
+#include <unistd.h>
+
+#include <atf-c.h>
+
+#define PATH_DEV __BIT(0) /* A device node */
+#define PATH_DIR __BIT(1) /* A directory */
+#define PATH_FILE __BIT(2) /* A file */
+#define PATH_ROOT __BIT(3) /* Access for root only */
+
+static const struct {
+ const char *path;
+ int flags;
+} paths[] = {
+ { _PATH_AUDIO, PATH_DEV },
+ { _PATH_AUDIO0, PATH_DEV },
+ { _PATH_AUDIOCTL, PATH_DEV },
+ { _PATH_AUDIOCTL0, PATH_DEV },
+ { _PATH_BPF, PATH_DEV | PATH_ROOT },
+ { _PATH_CLOCKCTL, PATH_DEV | PATH_ROOT },
+ { _PATH_CONSOLE, PATH_DEV },
+ { _PATH_CONSTTY, PATH_DEV | PATH_ROOT },
+ { _PATH_CSMAPPER, PATH_DIR },
+ { _PATH_DEFTAPE, PATH_DEV | PATH_ROOT },
+ { _PATH_DEVDB, PATH_FILE },
+ { _PATH_DEVNULL, PATH_DEV },
+ { _PATH_DRUM, PATH_DEV | PATH_ROOT },
+ { _PATH_ESDB, PATH_DIR },
+ { _PATH_FTPUSERS, PATH_FILE },
+ { _PATH_GETTYTAB, PATH_FILE },
+ { _PATH_I18NMODULE, PATH_DIR },
+ { _PATH_ICONV, PATH_DIR },
+ { _PATH_KMEM, PATH_DEV | PATH_ROOT },
+ { _PATH_KSYMS, PATH_DEV },
+ { _PATH_KVMDB, PATH_FILE },
+ { _PATH_LOCALE, PATH_DIR },
+ { _PATH_MAILDIR, PATH_DIR },
+ { _PATH_MAN, PATH_DIR },
+ { _PATH_MEM, PATH_DEV | PATH_ROOT },
+ { _PATH_MIXER, PATH_DEV },
+ { _PATH_MIXER0, PATH_DEV },
+ { _PATH_NOLOGIN, PATH_FILE },
+ { _PATH_POWER, PATH_DEV },
+ { _PATH_PRINTCAP, PATH_FILE },
+ { _PATH_PUD, PATH_DEV | PATH_ROOT },
+ { _PATH_PUFFS, PATH_DEV | PATH_ROOT },
+ { _PATH_RANDOM, PATH_DEV },
+ { _PATH_SENDMAIL, PATH_FILE },
+ { _PATH_SHELLS, PATH_FILE },
+ { _PATH_SKEYKEYS, PATH_FILE | PATH_ROOT },
+ { _PATH_SOUND, PATH_DEV },
+ { _PATH_SOUND0, PATH_DEV },
+ { _PATH_SYSMON, PATH_DEV },
+ { _PATH_TTY, PATH_DEV },
+ { _PATH_UNIX, PATH_FILE },
+ { _PATH_URANDOM, PATH_DEV },
+ { _PATH_VIDEO, PATH_DEV },
+ { _PATH_VIDEO0, PATH_DEV },
+
+ { _PATH_DEV, PATH_DIR },
+ { _PATH_DEV_PTS, PATH_DIR },
+ { _PATH_EMUL_AOUT, PATH_DIR },
+ { _PATH_TMP, PATH_DIR },
+ { _PATH_VARDB, PATH_DIR },
+ { _PATH_VARRUN, PATH_DIR },
+ { _PATH_VARTMP, PATH_DIR },
+
+ { _PATH_BSHELL, PATH_FILE },
+ { _PATH_CSHELL, PATH_FILE },
+ { _PATH_VI, PATH_FILE },
+};
+
+ATF_TC(paths);
+ATF_TC_HEAD(paths, tc)
+{
+ atf_tc_set_md_var(tc, "descr", "A basic test for <paths.h>");
+}
+
+ATF_TC_BODY(paths, tc)
+{
+ struct stat st;
+ uid_t uid;
+ mode_t m;
+ size_t i;
+ int fd;
+
+ uid = getuid();
+
+ for (i = 0; i < __arraycount(paths); i++) {
+
+ errno = 0;
+ fd = open(paths[i].path, O_RDONLY);
+
+ if (fd < 0) {
+
+ switch (errno) {
+
+ case EPERM: /* FALLTHROUGH */
+ case EACCES: /* FALLTHROUGH */
+
+ if ((paths[i].flags & PATH_ROOT) == 0) {
+
+ atf_tc_fail("UID %u failed to open %s",
+ (uint32_t)uid, paths[i].path);
+ }
+
+ case EBUSY: /* FALLTHROUGH */
+ case ENXIO: /* FALLTHROUGH */
+ case ENOENT: /* FALLTHROUGH */
+
+ default:
+ continue;
+ }
+ }
+
+ (void)memset(&st, 0, sizeof(struct stat));
+
+ ATF_REQUIRE(fstat(fd, &st) == 0);
+
+ m = st.st_mode;
+
+ if ((paths[i].flags & PATH_DEV) != 0) {
+
+ ATF_REQUIRE(S_ISBLK(m) != 0 || S_ISCHR(m) != 0);
+
+ ATF_REQUIRE((paths[i].flags & PATH_DIR) == 0);
+ ATF_REQUIRE((paths[i].flags & PATH_FILE) == 0);
+ }
+
+ if ((paths[i].flags & PATH_DIR) != 0) {
+
+ ATF_REQUIRE(S_ISDIR(m) != 0);
+
+ ATF_REQUIRE((paths[i].flags & PATH_DEV) == 0);
+ ATF_REQUIRE((paths[i].flags & PATH_FILE) == 0);
+ }
+
+ if ((paths[i].flags & PATH_FILE) != 0) {
+
+ ATF_REQUIRE(S_ISREG(m) != 0);
+
+ ATF_REQUIRE((paths[i].flags & PATH_DEV) == 0);
+ ATF_REQUIRE((paths[i].flags & PATH_DIR) == 0);
+ }
+
+ ATF_REQUIRE(close(fd) == 0);
+ }
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+
+ ATF_TP_ADD_TC(tp, paths);
+
+ return atf_no_error();
+}
diff -r f73edfe92c18 -r 459fd33e434b tests/syscall/Makefile
--- a/tests/syscall/Makefile Wed Mar 30 09:23:26 2011 +0000
+++ b/tests/syscall/Makefile Wed Mar 30 09:43:21 2011 +0000
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.9 2010/05/19 19:17:08 jruoho Exp $
+# $NetBSD: Makefile,v 1.10 2011/03/30 09:43:21 jruoho Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/syscall
-TESTS_C+= t_cmsg t_timer
+TESTS_C+= t_cmsg t_fsync t_timer
-LDADD+= -lrumpnet_local -lrumpnet_net -lrumpnet
-LDADD+= -lrumpvfs -lrump -lrumpuser -lpthread
+LDADD.t_cmsg+= -lrumpnet_local -lrumpnet_net -lrumpnet
+LDADD.t_cmsg+= -lrumpvfs -lrump -lrumpuser -lpthread
WARNS= 4
diff -r f73edfe92c18 -r 459fd33e434b tests/syscall/t_fsync.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/syscall/t_fsync.c Wed Mar 30 09:43:21 2011 +0000
@@ -0,0 +1,119 @@
+/* $NetBSD: t_fsync.c,v 1.1 2011/03/30 09:43:21 jruoho Exp $ */
+
+/*-
+ * Copyright (c) 2011 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Jukka Ruohonen.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
Home |
Main Index |
Thread Index |
Old Index