2006-08-08 18:07:37 +00:00
|
|
|
#include "types.h"
|
2006-08-12 04:33:50 +00:00
|
|
|
#include "stat.h"
|
|
|
|
#include "user.h"
|
2006-08-08 18:07:37 +00:00
|
|
|
#include "fs.h"
|
2006-08-10 02:07:10 +00:00
|
|
|
#include "fcntl.h"
|
2006-07-16 15:36:31 +00:00
|
|
|
|
2006-07-10 16:27:15 +00:00
|
|
|
// file system tests
|
|
|
|
|
2006-08-12 01:25:45 +00:00
|
|
|
char buf[2000];
|
2006-08-13 05:28:04 +00:00
|
|
|
char name[3];
|
2006-08-08 19:58:06 +00:00
|
|
|
char *echo_args[] = { "echo", "hello", "goodbye", 0 };
|
|
|
|
char *cat_args[] = { "cat", "README", 0 };
|
2006-07-10 16:27:15 +00:00
|
|
|
|
2006-07-16 15:36:31 +00:00
|
|
|
int
|
2006-07-17 01:25:22 +00:00
|
|
|
main(void)
|
2006-07-10 16:27:15 +00:00
|
|
|
{
|
2006-07-29 09:35:02 +00:00
|
|
|
int fd;
|
2006-08-10 01:28:57 +00:00
|
|
|
int i;
|
2006-08-12 01:25:45 +00:00
|
|
|
int stdout = 1;
|
2006-07-29 09:35:02 +00:00
|
|
|
|
2006-08-10 01:28:57 +00:00
|
|
|
printf(stdout, "userfs is running\n");
|
|
|
|
|
|
|
|
block();
|
2006-08-08 18:07:37 +00:00
|
|
|
|
2006-07-29 09:35:02 +00:00
|
|
|
fd = open("echo", 0);
|
|
|
|
if(fd >= 0){
|
2006-08-10 01:28:57 +00:00
|
|
|
printf(stdout, "open echo ok\n");
|
2006-07-29 09:35:02 +00:00
|
|
|
close(fd);
|
|
|
|
} else {
|
2006-08-10 01:28:57 +00:00
|
|
|
printf(stdout, "open echo failed!\n");
|
2006-07-29 09:35:02 +00:00
|
|
|
}
|
|
|
|
fd = open("doesnotexist", 0);
|
|
|
|
if(fd >= 0){
|
2006-08-10 01:28:57 +00:00
|
|
|
printf(stdout, "open doesnotexist succeeded!\n");
|
2006-07-29 09:35:02 +00:00
|
|
|
close(fd);
|
|
|
|
} else {
|
2006-08-10 01:28:57 +00:00
|
|
|
printf(stdout, "open doesnotexist failed\n");
|
2006-07-29 09:35:02 +00:00
|
|
|
}
|
2006-08-09 19:25:20 +00:00
|
|
|
fd = open("doesnotexist", O_CREATE|O_RDWR);
|
|
|
|
if(fd >= 0){
|
2006-08-10 01:28:57 +00:00
|
|
|
printf(stdout, "creat doesnotexist succeeded\n");
|
|
|
|
} else {
|
|
|
|
printf(stdout, "error: creat doesnotexist failed!\n");
|
|
|
|
}
|
|
|
|
for (i = 0; i < 100; i++) {
|
|
|
|
if (write (fd, "aaaaaaaaaa", 10) != 10) {
|
|
|
|
printf(stdout, "error: write new file failed\n");
|
|
|
|
}
|
|
|
|
if (write (fd, "bbbbbbbbbb", 10) != 10) {
|
|
|
|
printf(stdout, "error: write new file failed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf(stdout, "writes done\n");
|
|
|
|
close(fd);
|
|
|
|
fd = open("doesnotexist", O_RDONLY);
|
|
|
|
if(fd >= 0){
|
|
|
|
printf(stdout, "open doesnotexist succeeded\n");
|
|
|
|
} else {
|
|
|
|
printf(stdout, "error: open doesnotexist failed!\n");
|
|
|
|
}
|
2006-08-11 18:18:38 +00:00
|
|
|
i = read(fd, buf, 2000);
|
2006-08-10 01:28:57 +00:00
|
|
|
if (i == 2000) {
|
2006-08-11 18:18:38 +00:00
|
|
|
printf(stdout, "read succeeded\n");
|
2006-08-09 19:25:20 +00:00
|
|
|
} else {
|
2006-08-10 01:28:57 +00:00
|
|
|
printf(stdout, "read failed\n");
|
2006-08-09 19:25:20 +00:00
|
|
|
}
|
|
|
|
close(fd);
|
2006-08-14 03:00:13 +00:00
|
|
|
|
|
|
|
printf(stdout, "unlink doesnotexist\n");
|
|
|
|
|
2006-08-11 18:18:38 +00:00
|
|
|
unlink("doesnotexist");
|
2006-08-14 03:00:13 +00:00
|
|
|
|
|
|
|
printf(stdout, "many creates, followed by unlink\n");
|
|
|
|
|
2006-08-13 05:28:04 +00:00
|
|
|
name[0] = 'a';
|
|
|
|
name[2] = '\0';
|
|
|
|
for (i = 0; i < 52; i++) {
|
|
|
|
name[1] = '0' + i;
|
|
|
|
fd = open(name, O_CREATE|O_RDWR);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
name[0] = 'a';
|
|
|
|
name[2] = '\0';
|
|
|
|
for (i = 0; i < 52; i++) {
|
|
|
|
name[1] = '0' + i;
|
|
|
|
unlink(name);
|
|
|
|
}
|
|
|
|
|
2006-08-14 03:00:13 +00:00
|
|
|
printf(stdout, "mkdir\n");
|
|
|
|
|
|
|
|
if (mkdir("dir0") < 0)
|
|
|
|
printf(stdout, "mkdir failed\n");
|
|
|
|
|
|
|
|
// unlink("dir0");
|
|
|
|
|
2006-08-08 19:58:06 +00:00
|
|
|
//exec("echo", echo_args);
|
2006-08-10 01:28:57 +00:00
|
|
|
printf(stdout, "about to do exec\n");
|
2006-08-08 19:58:06 +00:00
|
|
|
exec("cat", cat_args);
|
2006-07-16 15:36:31 +00:00
|
|
|
return 0;
|
2006-07-10 16:27:15 +00:00
|
|
|
}
|