summaryrefslogtreecommitdiff
path: root/userfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'userfs.c')
-rw-r--r--userfs.c158
1 files changed, 133 insertions, 25 deletions
diff --git a/userfs.c b/userfs.c
index 54bc334..47add52 100644
--- a/userfs.c
+++ b/userfs.c
@@ -4,25 +4,18 @@
#include "fs.h"
#include "fcntl.h"
-// file system tests
+// simple file system tests
char buf[2000];
char name[3];
char *echo_args[] = { "echo", "hello", "goodbye", 0 };
char *cat_args[] = { "cat", "readme", 0 };
+int stdout = 1;
-int
-main(void)
+void
+opentest(void)
{
int fd;
- int i;
- int stdout = 1;
-
- printf(stdout, "userfs is running\n");
-
- if (sbrk(4096) < 0) {
- printf(stdout, "sbrk failed\n");
- }
fd = open("echo", 0);
if(fd >= 0){
@@ -30,47 +23,123 @@ main(void)
close(fd);
} else {
printf(stdout, "open echo failed!\n");
+ exit();
}
fd = open("doesnotexist", 0);
if(fd >= 0){
printf(stdout, "open doesnotexist succeeded!\n");
- close(fd);
+ exit();
} else {
printf(stdout, "open doesnotexist failed\n");
}
- fd = open("doesnotexist", O_CREATE|O_RDWR);
+}
+
+void
+writetest(void)
+{
+ int fd;
+ int i;
+
+ fd = open("small", O_CREATE|O_RDWR);
if(fd >= 0){
- printf(stdout, "creat doesnotexist succeeded\n");
+ printf(stdout, "creat small succeeded\n");
} else {
- printf(stdout, "error: creat doesnotexist failed!\n");
+ printf(stdout, "error: creat small failed!\n");
+ exit();
}
for (i = 0; i < 100; i++) {
if (write (fd, "aaaaaaaaaa", 10) != 10) {
printf(stdout, "error: write aa %d new file failed\n", i);
+ exit();
}
if (write (fd, "bbbbbbbbbb", 10) != 10) {
printf(stdout, "error: write bb %d new file failed\n", i);
+ exit();
}
}
printf(stdout, "writes done\n");
close(fd);
- fd = open("doesnotexist", O_RDONLY);
+ fd = open("small", O_RDONLY);
if(fd >= 0){
- printf(stdout, "open doesnotexist succeeded\n");
+ printf(stdout, "open small succeeded\n");
} else {
- printf(stdout, "error: open doesnotexist failed!\n");
+ printf(stdout, "error: open small failed!\n");
+ exit();
}
i = read(fd, buf, 2000);
if (i == 2000) {
printf(stdout, "read succeeded\n");
} else {
printf(stdout, "read failed\n");
+ exit();
}
close(fd);
- printf(stdout, "unlink doesnotexist\n");
+ if (unlink("small") < 0) {
+ printf(stdout, "unlink small failed\n");
+ exit();
+ }
+}
+
+void
+writetest1(void)
+{
+ int i, fd, n;
+
+ printf(stdout, "big files\n");
+
+ fd = open("big", O_CREATE|O_RDWR);
+ if(fd < 0){
+ printf(stdout, "error: creat big failed!\n");
+ exit();
+ }
+
+ for (i = 0; i < MAXFILE; i++) {
+ ((int *) buf)[0] = i;
+ if (write (fd, buf, 512) != 512) {
+ printf(stdout, "error: write big file failed\n", i);
+ exit();
+ }
+ }
+
+ close(fd);
+
+ fd = open("big", O_RDONLY);
+ if(fd < 0){
+ printf(stdout, "error: open big failed!\n");
+ exit();
+ }
+
+ n = 0;
+ while (1) {
+ i = read(fd, buf, 512);
+ if (i == 0) {
+ if (n == MAXFILE - 1) {
+ printf(stdout, "read only %d blocks from big", n);
+ exit();
+ }
+ break;
+ } else if (i != 512) {
+ printf(stdout, "read failed %d\n", i);
+ exit();
+ }
+ if (((int *)buf)[0] != n) {
+ printf(stdout, "read content of block %d is %d\n", n, ((int *)buf)[0]);
+ exit();
+ }
+ n++;
+ }
+ close(fd);
+ if (unlink("big") < 0) {
+ printf(stdout, "unlink big failed\n");
+ exit();
+ }
+}
- unlink("doesnotexist");
+void
+createtest(void)
+{
+ int i, fd;
printf(stdout, "many creates, followed by unlink\n");
@@ -87,16 +156,55 @@ main(void)
name[1] = '0' + i;
unlink(name);
}
+}
+void dirtest(void)
+{
printf(stdout, "mkdir\n");
- if (mkdir("dir0") < 0)
+ if (mkdir("dir0") < 0) {
printf(stdout, "mkdir failed\n");
+ exit();
+ }
+
+ if (chdir("dir0") < 0) {
+ printf(stdout, "chdir dir0 failed\n");
+ exit();
+ }
- // unlink("dir0");
+ if (chdir("..") < 0) {
+ printf(stdout, "chdir .. failed\n");
+ exit ();
+ }
+
+ if (unlink("dir0") < 0) {
+ printf(stdout, "unlink dir0 failed\n");
+ exit();
+ }
+}
+
+void
+exectest(void)
+{
+ if (exec("echo", echo_args) < 0) {
+ printf(stdout, "exec echo failed\n");
+ exit();
+ }
+ if (exec("cat", cat_args) < 0) {
+ printf(stdout, "exec cat failed\n");
+ exit();
+ }
+}
+
+int
+main(void)
+{
+ printf(stdout, "userfs is running\n");
- //exec("echo", echo_args);
- printf(stdout, "about to do exec\n");
- exec("cat", cat_args);
+ opentest();
+ writetest();
+ writetest1();
+ createtest();
+ exectest();
return 0;
}