[PATCH] Test suite for FTW.H methods

Eshan dhawan eshandhawan51 at gmail.com
Thu Jul 9 22:24:56 UTC 2020


It mainly uses nftw to test
as ftw also calls nftw with flag as 0

Signed-off-by: Eshan dhawan <eshandhawan51 at gmail.com>
---
 testsuites/psxtests/Makefile.am           |  26 +++
 testsuites/psxtests/configure.ac          |   1 +
 testsuites/psxtests/psxftw01/init.c       | 204 ++++++++++++++++++++++
 testsuites/psxtests/psxftw01/psxftw01.doc |  18 ++
 testsuites/psxtests/psxftw01/psxftw01.scn |  10 ++
 testsuites/psxtests/psxftw01/psxftw01.tar | Bin 0 -> 10240 bytes
 6 files changed, 259 insertions(+)
 create mode 100644 testsuites/psxtests/psxftw01/init.c
 create mode 100644 testsuites/psxtests/psxftw01/psxftw01.doc
 create mode 100644 testsuites/psxtests/psxftw01/psxftw01.scn
 create mode 100644 testsuites/psxtests/psxftw01/psxftw01.tar

diff --git a/testsuites/psxtests/Makefile.am b/testsuites/psxtests/Makefile.am
index 1f9e4233ec..39a6995827 100755
--- a/testsuites/psxtests/Makefile.am
+++ b/testsuites/psxtests/Makefile.am
@@ -453,6 +453,32 @@ psxfilelock01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxfilelock01) \
 	$(support_includes)
 endif
 
+if TEST_psxftw01
+psx_tests += psxftw01
+psx_screens += psxftw01/psxftw01.scn
+psx_docs += psxftw01/psxftw01.doc
+psxftw01_SOURCES = psxftw01/init.c psxfile01/test_cat.c \
+	psxftw01-tar.c psxftw01-tar.h psxftw01-tar-gz.c psxftw01-tar-gz.h
+
+psxftw01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxftw01) \
+	$(support_includes) $(test_includes) -I$(top_srcdir)/include
+psxftw01_LDADD = $(RTEMS_ROOT)cpukit/librtemscpu.a $(RTEMS_ROOT)cpukit/libz.a $(LDADD)
+psxftw01-tar.c: psxftw01/psxftw01.tar
+	$(AM_V_GEN)$(BIN2C) -C $< $@
+psxftw01-tar.h: psxftw01/psxftw01.tar
+	$(AM_V_GEN)$(BIN2C) -H $< $@
+psxftw01-tar.o: psxftw01-tar.c psxftw01-tar.h
+psxftw01.tar.gz: psxftw01/psxftw01.tar
+	$(AM_V_GEN)$(GZIP) < $< > $@
+psxftw01-tar-gz.c: psxftw01.tar.gz
+	$(AM_V_GEN)$(BIN2C) -C $< $@
+psxftw01-tar-gz.h: psxftw01.tar.gz
+	$(AM_V_GEN)$(BIN2C) -H $< $@
+CLEANFILES += psxftw01.tar psxftw01-tar.c psxftw01-tar.h \
+	psxftw01.tar.gz psxftw01-tar-gz.c psxftw01-tar-gz.h
+psxftw01/init.c: psxftw01-tar.h psxftw01-tar-gz.h $(TAR01_XZ_H)
+endif
+
 if TEST_psxgetattrnp01
 psx_tests += psxgetattrnp01
 psx_screens += psxgetattrnp01/psxgetattrnp01.scn
diff --git a/testsuites/psxtests/configure.ac b/testsuites/psxtests/configure.ac
index 139787cccb..3f95010cd3 100644
--- a/testsuites/psxtests/configure.ac
+++ b/testsuites/psxtests/configure.ac
@@ -90,6 +90,7 @@ RTEMS_TEST_CHECK([psxfenv01])
 RTEMS_TEST_CHECK([psxfile01])
 RTEMS_TEST_CHECK([psxfile02])
 RTEMS_TEST_CHECK([psxfilelock01])
+RTEMS_TEST_CHECK([psxftw01])
 RTEMS_TEST_CHECK([psxgetattrnp01])
 RTEMS_TEST_CHECK([psxgetrusage01])
 RTEMS_TEST_CHECK([psxglobalcon01])
diff --git a/testsuites/psxtests/psxftw01/init.c b/testsuites/psxtests/psxftw01/init.c
new file mode 100644
index 0000000000..8e7e996d10
--- /dev/null
+++ b/testsuites/psxtests/psxftw01/init.c
@@ -0,0 +1,204 @@
+/*
+ *  @file
+ *  @brief Test suite for ftw.h methods
+ */
+
+/*
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
+ * Copyright (C) 2020 Eshan Dhawan, embedded brains GmbH, Joel Sherrill
+ *
+ * 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 COPYRIGHT HOLDERS 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 COPYRIGHT OWNER 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+/* Header files */
+#include <bsp.h> /* for device driver prototypes */
+#include "tmacros.h"
+#include <rtems.h>
+#include <rtems/bspIo.h>
+#include <rtems/untar.h>
+#include <rtems/error.h>
+#include <ftw.h>
+#include <dirent.h>
+#include <sys/stat.h>
+#include <errno.h>
+#include <unistd.h>
+#include <string.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <t.h>
+
+#include "psxftw01-tar.h"
+#include "psxftw01-tar-gz.h"
+
+#define TARFILE_START    psxftw01_tar
+#define TARFILE_SIZE     psxftw01_tar_size
+#define TARFILE_GZ_START psxftw01_tar_gz
+#define TARFILE_GZ_SIZE  psxftw01_tar_gz_size
+
+const char rtems_test_name[] = "psxftw01";
+/* Function decleration to avoid warning */
+void *POSIX_Init (void * argument);
+
+static char  file_traverse_order[6][20];
+static int file_order;
+
+static char buffer[512];
+
+static const T_action actions[] = {
+  T_report_hash_sha256,
+  T_check_task_context,
+  T_check_file_descriptors,
+  T_check_rtems_barriers,
+  T_check_rtems_extensions,
+  T_check_rtems_message_queues,
+  T_check_rtems_partitions,
+  T_check_rtems_periods,
+  T_check_rtems_regions,
+  T_check_rtems_semaphores,
+  T_check_rtems_tasks,
+  T_check_rtems_timers,
+  T_check_posix_keys
+};
+
+static const T_config config = {
+  .name = "psxftw01",
+  .buf = buffer,
+  .buf_size = sizeof(buffer),
+  .putchar = rtems_put_char,
+  .verbosity = T_VERBOSE,
+  .now = T_now_clock,
+  .action_count = T_ARRAY_SIZE(actions),
+  .actions = actions
+};
+
+
+static int fn_function (const char *fpath, const struct stat *sb,
+int tflag, struct FTW *ftwbuf)
+{
+  strcpy(file_traverse_order [file_order], fpath + ftwbuf->base) ;
+  file_order = file_order + 1;
+  return 0; /* to make nftw run further */
+}
+
+
+T_TEST_CASE(ftw)
+{
+
+  /* VARIABLE DECLEARATION */
+  int r;
+  char *files_path;
+  int flags;
+  int i;
+  /* setting up filesystem */
+  rtems_status_code sc;
+
+  /*Untaring from memory */
+  sc = Untar_FromMemory_Print(
+   (void *)TARFILE_START,
+   TARFILE_SIZE,
+   &rtems_test_printer
+   );
+  if (sc != RTEMS_SUCCESSFUL) {
+     printf ("error: untar failed: %s\n", rtems_status_text (sc));
+   }
+
+  /* Array with expected file order */
+  char arr_ftw_depth[5][20] = { "test_file", "test_script", "def", "abc", "home" };
+  char arr_ftw_phys[5][20] = { "home", "test_file", "abc", "def", "test_script" };
+  /* defining the path to run nftw*/
+  files_path = "/home";
+  /* nftw test with FTW_DEPTH flag*/
+  flags = 0;
+  file_order = 0;
+  flags |= FTW_DEPTH;
+  r = nftw( files_path, fn_function, 5, flags );
+
+  T_quiet_psx_success(r);
+
+  /*comparing the nftw file tree to the expexted file tree traversal */
+  for (i = 0; i < file_order; i++){
+    r = strcmp( arr_ftw_depth[i], file_traverse_order[i]);
+    if (r){
+      printf( "Incorrect Order " );
+    }
+    T_quiet_psx_success(r);
+  }
+    /*----------------Test Block 2--------------------*/
+  flags = 0;
+  file_order = 0;
+  flags |= FTW_PHYS;
+  r = nftw( files_path, fn_function, 5, flags );
+  T_quiet_psx_success(r);
+
+  /*comparing the nftw file tree to the expected file tree traversal*/
+  for (i = 0; i < file_order; i++){
+    r = strcmp( arr_ftw_phys[i], file_traverse_order[i]);
+    if (r){
+      printf( "Incorrect Order " );
+    }
+    T_quiet_psx_success(r);
+  }
+
+}
+
+void *POSIX_Init (void * argument)
+{
+  int exit_code;
+
+  TEST_BEGIN();
+
+  T_register();
+  exit_code = T_main(&config);
+  if (exit_code == 0) {
+    TEST_END();
+  }
+
+ rtems_test_exit(exit_code);
+
+}
+
+/* NOTICE: the clock driver is explicitly disabled */
+
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS                  1
+
+#define CONFIGURE_MAXIMUM_FILE_DESCRIPTORS 6
+
+#define CONFIGURE_MAXIMUM_POSIX_THREADS  2 
+
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
+#define CONFIGURE_POSIX_INIT_THREAD_TABLE
+
+#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
+
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
+/* end of file */
diff --git a/testsuites/psxtests/psxftw01/psxftw01.doc b/testsuites/psxtests/psxftw01/psxftw01.doc
new file mode 100644
index 0000000000..7b2863a2da
--- /dev/null
+++ b/testsuites/psxtests/psxftw01/psxftw01.doc
@@ -0,0 +1,18 @@
+#  COPYRIGHT (c) 2019
+#  On-Line Applications Research Corporation (OAR).
+#
+# SPDX-License-Identifier: BSD-2-Clause
+#
+
+This file describes the directives and concepts tested by this test set.
+
+test set name:  psxftw01
+
+Directives:
+nftw
+
+Concepts:
+
++ This test exercises the ftw.h methods.
+
+
diff --git a/testsuites/psxtests/psxftw01/psxftw01.scn b/testsuites/psxtests/psxftw01/psxftw01.scn
new file mode 100644
index 0000000000..650d365033
--- /dev/null
+++ b/testsuites/psxtests/psxftw01/psxftw01.scn
@@ -0,0 +1,10 @@
+*** BEGIN OF TEST psxftw01 ***
+
+untar: memory at 0x12608c (10240)
+untar: file: home/test_file (s:73,m:0644)
+untar: file: home/abc/def/test_script (s:21,m:0755)
+untar: symlink: home/test_file -> symlink
+
+*** END OF TEST psxftw01 ***
+
+
diff --git a/testsuites/psxtests/psxftw01/psxftw01.tar b/testsuites/psxtests/psxftw01/psxftw01.tar
new file mode 100644
index 0000000000000000000000000000000000000000..6c6952ef183d51a9635c6ebbc8ed0443e8da1725
GIT binary patch
literal 10240
zcmeI!-)h1z6b5jw`xIyFdh?`zpJ11}*}Ru%Q=2VqM^7F2_Dfp^QXGoV;n)`hsW~ah
z&wOdirZUUUNVhJmGmBXo`<BKrF^5qc^3iwS!>p7d6{RW-lY}|){VG$LubX8ylbi0P
z)9r#;%tlLRb-gYp72{>zRNB_G7t_kAf^jMR;)X`2YHskiRcVF%M^nEEs42)bI=A(X
zbWJa-r{`DdH-;RfGZhtWQ~8d-*49%w@^oY?y)%!&4XzDSIxkT6`PZB6GB?F|4#>8(
zAKm$pmsj+G$dcqJ_uuEhm=z9_N&Z8{afbX~PJDIc{T;nE#syC3!D%7C4?dCQt2zJN
zKsi*-*6*{<d&qz0^Zdi}-}g`R&nYJq4u{jsFDL)}`9JF)kDEgP0uX=z1Rwwb2tWV=
g5P$##AOHafKmY;|fB*y_009U<00Izzz^@5>0Tj at K8~^|S

literal 0
HcmV?d00001

-- 
2.17.1



More information about the devel mailing list