yaffs Added some more tests to direct/timothy_tests/mirror_tests
[yaffs2.git] / direct / timothy_tests / mirror_tests / mirror_tests.c
index d87dff51fc6fc7a8ac1cf2730b24c0f211ce5a03..758b0a9c391fca85dde01029b01958fc4d6dfa6b 100644 (file)
@@ -31,18 +31,20 @@ typedef struct test_temp2 {
 }test_temp;
 
 test_temp yaffs_tests={
-       3,
+       4,
        {{"yaffs_test_open",yaffs_test_open},
        {"yaffs_test_truncate",yaffs_test_truncate},
-       {"yaffs_test_unlink",yaffs_test_unlink}
+       {"yaffs_test_unlink",yaffs_test_unlink},
+       {"yaffs_test_write",yaffs_test_write}
        }
 };
 
 test_temp linux_tests={
-       3,
+       4,
        {{"linux_test_open",linux_test_open},
        {"linux_test_truncate",linux_test_truncate},
-       {"linux_test_unlink",linux_test_unlink}
+       {"linux_test_unlink",linux_test_unlink},
+       {"linux_test_write",linux_test_write}
        }
 };
 
@@ -64,9 +66,8 @@ int main(int argc, char *argv[])
        print_message(3,message);
        sprintf(message,"yaffs_num_of_tests: %d\n",yaffs_tests.num_of_tests);
        print_message(3,message);
-       for (x=0;x<num_of_random_tests;x++){
-               run_random_test();
-       }
+
+       run_random_test(num_of_random_tests);
        compare_linux_and_yaffs();
        yaffs_unmount("yaffs2");
        return 0;
@@ -106,7 +107,7 @@ void init(int argc, char *argv[])
                        printf("\t-n [number] //sets the number of random tests to run.\n");
                        printf("\t-s [number] //seeds rand with the number\n");
                        printf("\t-t [number] //sets yaffs_trace to the number\n");
-                       printf("\t-c //removes emfile and test dir\n");
+                       printf("\t-clean //removes emfile and test dir\n");
                        exit(0);
                } else if (strcmp(argv[x],"-yaffs_path")==0){
                        strcpy(yaffs_struct.root_path, argv[x+1]);
@@ -124,7 +125,7 @@ void init(int argc, char *argv[])
                        srand(atoi(argv[x+1]));
                } else if (strcmp(argv[x],"-t")==0){
                        yaffs_set_trace(atoi(argv[x+1]));
-               } else if (strcmp(argv[x],"-c")==0){
+               } else if (strcmp(argv[x],"-clean")==0){
                        clean_dir();
                        exit(0);
                }
@@ -160,36 +161,44 @@ void init(int argc, char *argv[])
        }
 }
 
-int run_random_test(void)
+int run_random_test(int num_of_random_tests)
 {
+       int y=0;
        int x=-1;
        int id=0;
        int test_id=-1;
-       int num_of_tests=1;
-       char message[100];
+       int num_of_tests_before_check=1;
+       char message[200];
        arg_temp args_struct;
-       for (x=0;x<num_of_tests;x++) {
-               errno=0;
-               yaffs_set_error(0);
-               test_id = select_test_id(yaffs_tests.num_of_tests);
-               sprintf(message,"running test_id %d\n",test_id);
-               print_message(3,message);
-               generate_random_numbers(&args_struct);
-               run_yaffs_test(test_id, &args_struct);
-               run_linux_test(test_id, &args_struct);
-               if      ((abs(yaffs_get_error())!=abs(errno)) &&
-                       (abs(yaffs_get_error())!=EISDIR && abs(errno) != 0) &&
-                       (abs(yaffs_get_error())!=ENOENT && abs(errno) != EACCES)
-                       ){
-                       print_message(2,"\ndifference in returned errors######################################\n");
-                       get_error_yaffs();
-                       get_error_linux();
-                       if (get_exit_on_error()){ 
-                               exit(0);
+       for (y=0;(y*num_of_tests_before_check)<num_of_random_tests;y++){
+               for (x=0;x<num_of_tests_before_check && (x+(y*num_of_tests_before_check)<num_of_random_tests);x++) {
+                       errno=0;
+                       yaffs_set_error(0);
+                       test_id = select_test_id(yaffs_tests.num_of_tests);
+                       sprintf(message,"running test_id %d\n",test_id);
+                       print_message(3,message);
+                       generate_random_numbers(&args_struct);
+                       run_yaffs_test(test_id, &args_struct);
+                       run_linux_test(test_id, &args_struct);
+                       if (get_print_level()>=4){
+                               get_error_yaffs();
+                               get_error_linux();
                        }
-               }
-       }
-       compare_linux_and_yaffs(); 
+                       if      ((abs(yaffs_get_error())!=abs(errno)) &&
+                               (abs(yaffs_get_error())!=EISDIR && abs(errno) != 0) &&
+                               (abs(yaffs_get_error())!=ENOENT && abs(errno) != EACCES)&&
+                               (abs(yaffs_get_error())!=EINVAL && abs(errno) != EBADF)
+                               ){
+                               print_message(2,"\ndifference in returned errors######################################\n");
+                               get_error_yaffs();
+                               get_error_linux();
+                               if (get_exit_on_error()){ 
+                                       exit(0);
+                               }
+                       }
+               }       
+               compare_linux_and_yaffs();
+       } 
 }
 
 int select_test_id(int test_len)
@@ -204,34 +213,128 @@ int select_test_id(int test_len)
 
 int compare_linux_and_yaffs(void)
 {
-       int x=0;
+       int x=0,y=0;
+       int exit_bool=0;
+       int number_of_files_in_yaffs=0;
+       int number_of_files_in_linux=0;
+       char message[200];
+
        yaffs_DIR *yaffs_open_dir;
        yaffs_dirent *yaffs_current_file;
        
        DIR *linux_open_dir;
        struct dirent *linux_current_file;
+       
+       print_message(2,"\n\n comparing folders\n");
+
 
        yaffs_open_dir = yaffs_opendir(yaffs_struct.root_path);
+       if (yaffs_open_dir) {
+               for (x=0;NULL!=yaffs_readdir(yaffs_open_dir);x++){}
+               number_of_files_in_yaffs=x;
+               sprintf(message,"number of files in yaffs dir= %d\n",number_of_files_in_yaffs);
+               print_message(2,message);
+               yaffs_rewinddir(yaffs_open_dir);
+       } else {
+               print_message(3,"failed to open yaffs test dir\n");
+       }
+       char yaffs_file_list[x][200];
+
+
+       if (yaffs_open_dir){
        
-       for (x=0;NULL!=yaffs_readdir(yaffs_open_dir);x++){};
-       printf("number of files in yaffs dir= %d\n",x);
-       
-       char yaffs_file_list[x][100];
-       yaffs_rewinddir(yaffs_open_dir);
-
-       for (x=0 ;NULL!=yaffs_current_file;x++)
-       {
-               yaffs_current_file =yaffs_readdir(yaffs_open_dir);
-               if (NULL!=yaffs_current_file){
-                       strcpy(yaffs_file_list[x],yaffs_current_file->d_name);
+               for (x=0 ;NULL!=yaffs_current_file;x++)
+               {
+                       yaffs_current_file =yaffs_readdir(yaffs_open_dir);
+                       if (NULL!=yaffs_current_file){
+                               strcpy(yaffs_file_list[x],yaffs_current_file->d_name);
+                       }
                }
+               yaffs_closedir(yaffs_open_dir);
+       } else {
+               print_message(3,"failed to populate yaffs test list\n");
        }
 
        linux_open_dir = opendir(linux_struct.root_path);
-
-       for (x=0;NULL!=readdir(linux_open_dir);x++){};
-       printf("number of files in linux dir= %d\n",(x-2));     //the -2 is because linux shows 2 extra files which are automaticly created. 
+       if (linux_open_dir){
+               for (x=0;NULL!=readdir(linux_open_dir);x++){}
+               number_of_files_in_linux=x-2;
+               sprintf(message,"number of files in linux dir= %d\n",(number_of_files_in_linux));
+               print_message(2,message);
+               //the -2 is because linux shows 2 extra files which are automaticly created. 
+       
+               rewinddir(linux_open_dir);
+       } else {
+               print_message(3,"failed to open linux test dir\n");
+       }
+       char linux_file_list[x-2][200];
+       if (linux_open_dir){
+               for (x=0, y=0 ;NULL!=linux_current_file;x++)
+               {
+                       linux_current_file =readdir(linux_open_dir);
+                       if (NULL!=linux_current_file){
+                               strcpy(message,linux_current_file->d_name);
+                               print_message(3,"opened file: ");
+                               print_message(3,message);
+                               print_message(3,"\n");
+                       }
+                       if (NULL!=linux_current_file && 
+                               0!=strcmp(message,".")&&
+                               0!=strcmp(message,"..")){
+                       //      strcpy(message,linux_current_file->d_name);
+                               //sprintf("file opened: %s\n",linux_current_file->d_name);
+                               //print_message(3,message);
+                               print_message(3,"added file to list\n");
+                               strcpy(linux_file_list[y],message);
+                               y++;
+                               sprintf(message,"file added to list: %s\n",linux_file_list[x]);
+                               print_message(3,message);
+                       }
+               }
+               closedir(linux_open_dir);
+       } else {
+               print_message(3,"failed to populate linux test dir\n");
+       }
        
+
+
+       for (x=0;x<number_of_files_in_yaffs;x++){
+               sprintf(message,"searching for yaffs file: %s\n",yaffs_file_list[x]);
+               print_message(3,message);
+               for (y=0;y<number_of_files_in_linux;y++){
+                       sprintf(message,"comparing to linux file: %s\n",linux_file_list[y]);
+                       print_message(3,message);
+
+                       if (0==strcmp(yaffs_file_list[x],linux_file_list[y])){
+                               sprintf(message,"file matched: %s\n",linux_file_list[y]);
+                               print_message(3,message);
+                               linux_file_list[y][0]=NULL;
+                               yaffs_file_list[x][0]=NULL;
+                               break;
+                       }
+               }
+       }
+
+       //print remaining files
+       for (x=0;x<number_of_files_in_linux;x++){
+               if (linux_file_list[x][0]!=NULL){
+                       sprintf(message,"unmatched file in linux: %s\n",linux_file_list[x]);
+                       print_message(2,message);
+                       exit_bool=1;
+               }
+       }
+       for (x=0;x<number_of_files_in_yaffs;x++){
+               if (yaffs_file_list[x][0]!=NULL){
+                       sprintf(message,"unmatched file in yaffs: %s\n",yaffs_file_list[x]);
+                       print_message(2,message);
+                       exit_bool=1;
+               }
+       }
+       if (exit_bool==1){
+               print_message(2,"exiting program\n");
+               exit(0);
+       }
+
        //printf("file_name %s\n", yaffs_current_file->d_name);
 //     generate_array_of_objects_in_yaffs(); 
 //     generate_array_of_objects_in_linux();
@@ -348,7 +451,8 @@ void clean_dir(void)
                                unlink(file);
                        }
                }
-               unlink(linux_struct.root_path);
+               closedir(linux_open_dir);
+               rmdir(linux_struct.root_path);
        }
        
 }