ovs-vsctl: Drop redundant {port,iface}-{set,get}-external-ids commands.
[sliver-openvswitch.git] / tests / test-timeval.c
1 /*
2  * Copyright (c) 2009, 2010 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include "timeval.h"
20
21 #include <errno.h>
22 #include <stdio.h>
23 #include <sys/time.h>
24 #include <sys/types.h>
25 #include <unistd.h>
26
27 #include "command-line.h"
28 #include "daemon.h"
29 #include "util.h"
30
31 #undef NDEBUG
32 #include <assert.h>
33
34 static long long int
35 gettimeofday_in_msec(void)
36 {
37     struct timeval tv;
38
39     assert(!gettimeofday(&tv, NULL));
40     return timeval_to_msec(&tv);
41 }
42
43 static void
44 do_test(void)
45 {
46     /* Wait until we are awakened by a signal (typically EINTR due to the
47      * setitimer()).  Then ensure that, if time has really advanced by
48      * TIME_UPDATE_INTERVAL, then time_msec() reports that it advanced.
49      */
50     long long int start_time_msec;
51     long long int start_gtod;
52
53     start_time_msec = time_msec();
54     start_gtod = gettimeofday_in_msec();
55     for (;;) {
56         /* Wait up to 1 second.  Using select() to do the timeout avoids
57          * interfering with the interval timer. */
58         struct timeval timeout;
59         int retval;
60
61         timeout.tv_sec = 1;
62         timeout.tv_usec = 0;
63         retval = select(0, NULL, NULL, NULL, &timeout);
64         if (retval != -1) {
65             ovs_fatal(0, "select returned %d", retval);
66         } else if (errno != EINTR) {
67             ovs_fatal(errno, "select reported unexpected error");
68         }
69
70         if (gettimeofday_in_msec() - start_gtod >= TIME_UPDATE_INTERVAL) {
71             assert(time_msec() - start_time_msec >= TIME_UPDATE_INTERVAL);
72             break;
73         }
74     }
75 }
76
77 static void
78 usage(void)
79 {
80     ovs_fatal(0, "usage: %s TEST, where TEST is \"plain\" or \"daemon\"",
81               program_name);
82 }
83
84 int
85 main(int argc, char *argv[])
86 {
87     proctitle_init(argc, argv);
88     set_program_name(argv[0]);
89     time_init();
90
91     if (argc != 2) {
92         usage();
93     } else if (!strcmp(argv[1], "plain")) {
94         do_test();
95     } else if (!strcmp(argv[1], "daemon")) {
96         /* Test that time still advances even in a daemon.  This is an
97          * interesting test because fork() cancels the interval timer. */
98         char cwd[1024];
99         FILE *success;
100
101         assert(getcwd(cwd, sizeof cwd) == cwd);
102
103         unlink("test-timeval.success");
104
105         /* Daemonize, with a pidfile in the current directory. */
106         set_detach();
107         set_pidfile(xasprintf("%s/test-timeval.pid", cwd));
108         set_no_chdir();
109         daemonize();
110
111         /* Run the test. */
112         do_test();
113
114         /* Report success by writing out a file, since the ultimate invoker of
115          * test-timeval can't wait on the daemonized process. */
116         success = fopen("test-timeval.success", "w");
117         if (!success) {
118             ovs_fatal(errno, "test-timeval.success: create failed");
119         }
120         fprintf(success, "success\n");
121         fclose(success);
122     } else {
123         usage();
124     }
125
126     return 0;
127 }