Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / tests / test-daemon.py
1 # Copyright (c) 2010, 2011 Nicira, Inc.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import argparse
16 import logging
17 import signal
18 import sys
19 import time
20
21 import ovs.daemon
22 import ovs.util
23
24
25 def handler(signum, _):
26     raise Exception("Signal handler called with %d" % signum)
27
28
29 def main():
30
31     signal.signal(signal.SIGHUP, handler)
32
33     parser = argparse.ArgumentParser(
34             description="Open vSwitch daemonization test program for Python.")
35     parser.add_argument("-b", "--bail", action="store_true",
36             help="Exit with an error after daemonize_start().")
37
38     ovs.daemon.add_args(parser)
39     args = parser.parse_args()
40     ovs.daemon.handle_args(args)
41
42     ovs.daemon.daemonize_start()
43     if args.bail:
44         sys.stderr.write("%s: exiting after daemonize_start() as requested\n"
45                          % ovs.util.PROGRAM_NAME)
46         sys.exit(1)
47     ovs.daemon.daemonize_complete()
48
49     while True:
50         time.sleep(1)
51
52
53 if __name__ == '__main__':
54     try:
55         main()
56     except SystemExit:
57         # Let system.exit() calls complete normally
58         raise
59     except:
60         sys.exit(ovs.daemon.RESTART_EXIT_CODE)