yaffs Adding more tests to direct/timothy_tests/quick_tests
authorTimothy Manning <tfhmanning@gmail.com>
Tue, 23 Nov 2010 20:48:36 +0000 (09:48 +1300)
committerTimothy Manning <tfhmanning@gmail.com>
Tue, 23 Nov 2010 20:48:36 +0000 (09:48 +1300)
Signed-off-by: Timothy Manning <tfhmanning@gmail.com>
direct/timothy_tests/quick_tests/Makefile
direct/timothy_tests/quick_tests/README.txt
direct/timothy_tests/quick_tests/quick_tests.h
direct/timothy_tests/quick_tests/test_yaffs_rename_EINVAL.c
direct/timothy_tests/quick_tests/test_yaffs_rename_dir.c
direct/timothy_tests/quick_tests/test_yaffs_rename_dir_ENOENT.c
direct/timothy_tests/quick_tests/test_yaffs_rename_dir_ENOENT2.c [new file with mode: 0644]
direct/timothy_tests/quick_tests/test_yaffs_rename_dir_ENOENT2.h [new file with mode: 0644]
direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.c [new file with mode: 0644]
direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.h [new file with mode: 0644]

index bb60030c929470ebd840297ffb270e74888f7680..7e4f7b382044603abff632200b09671ff24912f8 100644 (file)
@@ -86,7 +86,7 @@ TESTFILES =   quick_tests.o lib.o \
                test_yaffs_rmdir.o test_yaffs_rmdir_EBUSY.o test_yaffs_rmdir_EINVAL.o test_yaffs_rmdir_ENOENT.o \
                test_yaffs_rmdir_ENOTDIR.o \
                test_yaffs_rename.o test_yaffs_rename_ENOENT.o test_yaffs_rename_ENOTDIR.o test_yaffs_rename_EINVAL.o \
-               test_yaffs_rename_dir.o test_yaffs_rename_dir_ENOENT.o
+               test_yaffs_rename_dir.o test_yaffs_rename_dir_ENOENT.o test_yaffs_rename_dir_ENOENT2.o
 
 
                  
index d26844a6ba9c3cd78d9af9a329c122a79a4fb421..c6d316b4f25d3a7d407824cedde6dd7417ea7f27 100644 (file)
@@ -241,6 +241,8 @@ Tests to add
        test_yaffs_rmdir_ENOTEMPTY
        test_yaffs_rmdir_EROFS
 
+
+       what happens if a file is renamed into a dir.
        //need to do rename for directories.
        //what happens if the dir or file is renamed over an existing dir or file 
        test_yaffs_rename_EACCES
index fe10c7316e4dc85f76b7ff5581dd038a9adf1e5a..91403e3bb24304d8517cd7a3d70be0eaac6ee5bd 100644 (file)
 #include "test_yaffs_rename_EINVAL.h"
 #include "test_yaffs_rename_dir.h"
 #include "test_yaffs_rename_dir_ENOENT.h"
+#include "test_yaffs_rename_dir_ENOENT2.h"
 
 #include "yaffsfs.h"
 #include "yaffs_error_converter.h"
@@ -322,7 +323,8 @@ test_template test_list[]={
        {test_yaffs_rename_ENOTDIR,test_yaffs_rename_ENOTDIR_clean,"test_yaffs_rename_ENOTDIR"},
        {test_yaffs_rename_EINVAL,test_yaffs_rename_EINVAL_clean,"test_yaffs_rename_EINVAL"},
        {test_yaffs_rename_dir,test_yaffs_rename_dir_clean,"test_yaffs_rename_dir"},
-       {test_yaffs_rename_dir_ENOENT,test_yaffs_rename_dir_ENOENT_clean,"test_yaffs_rename_dir_ENOENT"}
+       {test_yaffs_rename_dir_ENOENT,test_yaffs_rename_dir_ENOENT_clean,"test_yaffs_rename_dir_ENOENT"},
+       {test_yaffs_rename_dir_ENOENT2,test_yaffs_rename_dir_ENOENT2_clean,"test_yaffs_rename_dir_ENOENT2"}
        };
 
 void init_quick_tests(int argc, char *argv[]);
index 95ddc37991f8da699e06f3ed83f838a70ddfc851..5a1f67567a57233d58e1ea72248673cf0bdbd79c 100644 (file)
@@ -46,7 +46,7 @@ int test_yaffs_rename_EINVAL(void)
 int test_yaffs_rename_EINVAL_clean(void)
 {
        int output = 0;
-       if (0 ==  yaffs_access(RENAME_PATH,0)) {
+       if (0 ==  yaffs_access(RENAME_PATH,0) && 0 != yaffs_access(DIR_PATH,0)) {
                output = yaffs_rename(RENAME_PATH,FILE_PATH);
                if (output < 0) {
                        print_message("failed to remove the directory\n",2);
index 5c7a2547dbc378e36b05aabfbd1d27f403bad9f7..323a0e749787505110de321d96151424ed253053 100644 (file)
@@ -27,6 +27,7 @@ int test_yaffs_rename_dir(void)
                }
        }
        output = yaffs_rename( DIR_PATH , RENAME_DIR_PATH);
+       printf("output %d\n",output);
        return output;  
 }
 
index a4232e61af819d76d66e5a1193d1c75e9072a63b..34852362099511cb93eb7a583b30fb3db61b4998 100644 (file)
@@ -29,7 +29,7 @@ int test_yaffs_rename_dir_ENOENT(void)
        output = yaffs_rename( "/yaffs2/non-existing-dir/" , RENAME_DIR_PATH);
        if (output<0){ 
                error_code=yaffs_get_error();
-               if (abs(error_code)==EINVAL){
+               if (abs(error_code)==ENOENT){
                        return 1;
                } else {
                        print_message("returned error does not match the the expected error\n",2);
diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_ENOENT2.c b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_ENOENT2.c
new file mode 100644 (file)
index 0000000..9550cce
--- /dev/null
@@ -0,0 +1,59 @@
+/*
+ * YAFFS: Yet another FFS. A NAND-flash specific file system.
+ *
+ * Copyright (C) 2002-2010 Aleph One Ltd.
+ *   for Toby Churchill Ltd and Brightstar Engineering
+ *
+ * Created by Timothy Manning <timothy@yaffs.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include "test_yaffs_rename_dir_ENOENT2.h"
+
+
+int test_yaffs_rename_dir_ENOENT2(void)
+{
+       int output=0;
+       int error_code =0;
+
+       if (0 !=  yaffs_access(DIR_PATH,0)) {
+               output = mkdir(DIR_PATH,S_IREAD | S_IWRITE);
+               if (output < 0) {
+                       print_message("failed to create dir\n",2);
+                       return -1;
+               }
+       }
+       output = yaffs_rename( DIR_PATH , "/yaffs2/nonexisting-dir/dir");
+       if (output<0){ 
+               error_code=yaffs_get_error();
+               if (abs(error_code)==ENOENT){
+                       return 1;
+               } else {
+                       print_message("returned error does not match the the expected error\n",2);
+                       return -1;
+               }
+       } else{
+               print_message("removed /yaffs2/ directory (which is a bad thing)\n",2);
+               return -1;
+       }       
+
+}
+
+
+int test_yaffs_rename_dir_ENOENT2_clean(void)
+{
+       int output = 0;
+       if (0 ==  yaffs_access(RENAME_DIR_PATH,0)) {
+               output = yaffs_rename(RENAME_DIR_PATH,DIR_PATH);
+               if (output < 0) {
+                       print_message("failed to rename the file\n",2);
+                       return -1;
+               }
+       }
+       return 1;
+
+}
+
diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_ENOENT2.h b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_ENOENT2.h
new file mode 100644 (file)
index 0000000..0cdb256
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * YAFFS: Yet another Flash File System . A NAND-flash specific file system. 
+ *
+ * Copyright (C) 2002-2010 Aleph One Ltd.
+ *   for Toby Churchill Ltd and Brightstar Engineering
+ *
+ * Created by Timothy Manning <timothy@yaffs.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 2.1 as
+ * published by the Free Software Foundation.
+ *
+ * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
+ */
+
+#ifndef __test_yaffs_rename_dir_ENOENT2_h__
+#define __test_yaffs_rename_dir_ENOENT2_h__
+
+#include "lib.h"
+#include "yaffsfs.h"
+#include "test_yaffs_open.h"
+
+int test_yaffs_rename_dir_ENOENT2(void);
+int test_yaffs_rename_dir_ENOENT2_clean(void);
+
+#endif
diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.c b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.c
new file mode 100644 (file)
index 0000000..637f758
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * YAFFS: Yet another FFS. A NAND-flash specific file system.
+ *
+ * Copyright (C) 2002-2010 Aleph One Ltd.
+ *   for Toby Churchill Ltd and Brightstar Engineering
+ *
+ * Created by Timothy Manning <timothy@yaffs.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include "test_yaffs_rename_dir.h"
+
+
+int test_yaffs_rename_dir(void)
+{
+       int output=0;
+       int error_code =0;
+       output = yaffs_open("/yaffs2/new_directory/file",O_CREAT | O_RDWR, S_IREAD | S_IWRITE);
+       if (output < 0 )
+
+       if (0 !=  yaffs_access(FILE_PATH,0)) {
+               output = test_yaffs_open();
+               if (output < 0) {
+                       print_message("failed to create file\n",2);
+                       return -1;
+               }
+       }
+       output = yaffs_rename( DIR_PATH , RENAME_DIR_PATH);
+       return output;  
+}
+
+
+int test_yaffs_rename_dir_clean(void)
+{
+       int output = 0;
+       if (0 ==  yaffs_access(RENAME_DIR_PATH,0)) {
+               output = yaffs_rename(RENAME_DIR_PATH,DIR_PATH);
+               if (output < 0) {
+                       print_message("failed to rename the dir\n",2);
+                       return -1;
+               }
+       }
+       return 1;
+
+}
+
diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.h b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.h
new file mode 100644 (file)
index 0000000..1b99f95
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * YAFFS: Yet another Flash File System . A NAND-flash specific file system. 
+ *
+ * Copyright (C) 2002-2010 Aleph One Ltd.
+ *   for Toby Churchill Ltd and Brightstar Engineering
+ *
+ * Created by Timothy Manning <timothy@yaffs.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 2.1 as
+ * published by the Free Software Foundation.
+ *
+ * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
+ */
+
+#ifndef __test_yaffs_rename_dir_h__
+#define __test_yaffs_rename_dir_h__
+
+#include "lib.h"
+#include "yaffsfs.h"
+#include "test_yaffs_open.h"
+
+int test_yaffs_rename_dir(void);
+int test_yaffs_rename_dir_clean(void);
+
+#endif