[tests] [win] include io.h for _access()
[aubio.git] / tests / utils_tests.h
index 53531ce..7915325 100644 (file)
 #define PATH_MAX 1024
 #endif
 
+#if defined(HAVE_WIN_HACKS) && !defined(__GNUC__)
+#include <io.h> // _access
+#endif
+
+// This macro is used to pass a string to msvc compiler: since msvc's -D flag
+// strips the quotes, we define the string without quotes and re-add them with
+// this macro.
+
+#define REDEFINESTRING(x) #x
+#define DEFINEDSTRING(x) REDEFINESTRING(x)
+
+#ifndef AUBIO_TESTS_SOURCE
+#error "AUBIO_TESTS_SOURCE is not defined"
+#endif
+
 #ifdef HAVE_C99_VARARGS_MACROS
 #define PRINT_ERR(...)   fprintf(stderr, "AUBIO-TESTS ERROR: " __VA_ARGS__)
 #define PRINT_MSG(...)   fprintf(stdout, __VA_ARGS__)
@@ -65,12 +80,17 @@ void utils_init_random (void) {
   size_t **tm_address = (void*)&tm_struct;
   int seed = tm_struct->tm_sec + (size_t)tm_address;
   //PRINT_WRN("current seed: %d\n", seed);
-  srandom (seed);
+  srandom ((unsigned int)seed);
 }
 
 // create_temp_sink / close_temp_sink
 #if defined(__GNUC__) // mkstemp
 
+int check_source(char *source_path)
+{
+  return access(source_path, R_OK);
+}
+
 int create_temp_sink(char *sink_path)
 {
   return mkstemp(sink_path);
@@ -86,6 +106,12 @@ int close_temp_sink(char *sink_path, int sink_fildes)
 
 #elif defined(HAVE_WIN_HACKS) //&& !defined(__GNUC__)
 // windows workaround, where mkstemp does not exist...
+
+int check_source(char *source_path)
+{
+  return _access(source_path, 04);
+}
+
 int create_temp_sink(char *templ)
 {
   int i = 0;
@@ -112,12 +138,26 @@ int close_temp_sink(char* sink_path, int sink_fildes) {
 #error "mkstemp undefined, but not on windows. additional workaround required."
 #endif
 
+// pass progname / default
+int run_on_default_source( int main(int, char**) )
+{
+  const int argc = 2;
+  int err = 0;
+  char** argv = (char**)calloc(argc, sizeof(char*));
+  argv[0] = __FILE__;
+  argv[1] = DEFINEDSTRING(AUBIO_TESTS_SOURCE);
+  // check if the file can be read
+  if ( check_source(argv[1]) ) return 1;
+  err = main(argc, argv);
+  if (argv) free(argv);
+  return err;
+}
 
 int run_on_default_sink( int main(int, char**) )
 {
   const int argc = 2;
   int err = 0;
-  char* argv[argc];
+  char** argv = (char**)calloc(argc, sizeof(char*));
   char sink_path[PATH_MAX] = "tmp_aubio_XXXXXX";
   int fd = create_temp_sink(sink_path);
   if (!fd) return 1;
@@ -125,5 +165,6 @@ int run_on_default_sink( int main(int, char**) )
   argv[1] = sink_path;
   err = main(argc, argv);
   close_temp_sink(sink_path, fd);
+  if (argv) free(argv);
   return err;
 }