Still trying to fix KyoungSoo's bug
[vsys.git] / tests / vsys_conctest.c
1 #include <stdio.h>
2 #include <sys/select.h>
3 #include <sys/time.h>
4 #include <sys/types.h>
5 #include <sys/stat.h>
6 #include <fcntl.h>
7 #include <unistd.h>
8 #include <errno.h>
9
10 int main()
11 {
12   FILE *fp = NULL, *fp_in = NULL;
13   FILE *out_fp = NULL, *diff_fp = NULL;
14   const char* topcmd = "fe/test.out";
15   const char* top_in_file = "fe/test.in";
16   char buf[4096];
17   int fd_in = -1, fd_out;
18   int res;
19   int flag;
20   int count = 1;
21   struct timeval tv={.tv_sec=5,.tv_usec=0};
22
23   while (count < 100000) {
24     fd_set readSet;
25     int res;
26     int nlines=0;
27
28     //usleep(200);
29     printf("(%d)", count);fflush(stdout);
30
31     if ((fd_out = open(topcmd, O_RDONLY | O_NONBLOCK)) < 0) {
32       fprintf(stderr, "error executing top\n");
33       exit(-1);
34     }
35
36 //    printf("(opening in file)");
37     if ((fd_in = open(top_in_file, O_WRONLY)) < 0) {
38       fprintf(stderr, "error opening %s\n", top_in_file);
39       exit(-1);
40     }
41     if ((flag = fcntl(fd_out, F_GETFL)) == -1) {
42       printf("fcntl get failed\n");
43       exit(-1);
44     }
45
46     while (1) {
47             FD_ZERO(&readSet);
48             FD_SET(fd_out, &readSet);
49
50             res = select(fd_out + 1, &readSet, NULL, NULL, NULL);
51             if (res < 0) {
52                     if (errno == EINTR || errno == EAGAIN) {
53                             printf(".");
54                             continue;
55                     }
56                     fprintf(stderr,"select failed errno=%d errstr=%s\n", errno, strerror(errno));
57                     exit(-1);
58             }
59             break; /* we're done */
60     }
61
62     if (fcntl(fd_out, F_SETFL, flag & ~O_NONBLOCK) == -1) {
63       printf("fcntl set failed\n");
64       exit(-1);
65     }
66
67     if ((flag = fcntl(fd_out, F_GETFL)) == -1) {
68       printf("fcntl get failed\n");
69       exit(-1);
70     }
71
72     if (flag & O_NONBLOCK == 0) {
73       printf("fd_out still nonblocking\n");
74       exit(-1);
75     }
76
77     if ((fp = fdopen(fd_out, "r")) == NULL) {
78       printf("fdopen failed\n");
79       exit(-1);
80     }
81
82     while (fgets(buf, sizeof(buf), fp) != NULL) {
83             nlines++;
84     }
85
86     if (nlines<5) {
87             printf("Test returned different results - run again to verify\n");
88             exit(-1);
89     }
90
91     fclose(fp);
92     close(fd_in);
93     close(fd_out);
94     count++;
95   }
96   printf("test successful.\n");
97   exit(0);
98
99 }