1f94c69da8d9e21d68dc5512ca70961c85c5c9d1
[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     if ((fd_in = open(top_in_file, O_WRONLY)) < 0) {
37       fprintf(stderr, "error opening %s\n", top_in_file);
38       exit(-1);
39     }
40     if ((flag = fcntl(fd_out, F_GETFL)) == -1) {
41       printf("fcntl get failed\n");
42       exit(-1);
43     }
44
45     while (1) {
46             FD_ZERO(&readSet);
47             FD_SET(fd_out, &readSet);
48
49             res = select(fd_out + 1, &readSet, NULL, NULL, NULL);
50             if (res < 0) {
51                     if (errno == EINTR || errno == EAGAIN) {
52                             printf(".");
53                             continue;
54                     }
55                     fprintf(stderr,"select failed errno=%d errstr=%s\n", errno, strerror(errno));
56                     exit(-1);
57             }
58             break; /* we're done */
59     }
60
61     if (fcntl(fd_out, F_SETFL, flag & ~O_NONBLOCK) == -1) {
62       printf("fcntl set failed\n");
63       exit(-1);
64     }
65
66     if ((flag = fcntl(fd_out, F_GETFL)) == -1) {
67       printf("fcntl get failed\n");
68       exit(-1);
69     }
70
71     if (flag & O_NONBLOCK == 0) {
72       printf("fd_out still nonblocking\n");
73       exit(-1);
74     }
75
76     if ((fp = fdopen(fd_out, "r")) == NULL) {
77       printf("fdopen failed\n");
78       exit(-1);
79     }
80
81     while (fgets(buf, sizeof(buf), fp) != NULL) {
82             nlines++;
83     }
84
85     if (nlines<5) {
86             printf("Test returned different results - run again to verify\n");
87             exit(-1);
88     }
89
90     fclose(fp);
91     close(fd_in);
92     close(fd_out);
93     count++;
94   }
95   printf("test successful.\n");
96   exit(0);
97
98 }