]> git.proxmox.com Git - mirror_ovs.git/blame - tests/test-reconnect.py
tests: Log commands being executed for async message control test.
[mirror_ovs.git] / tests / test-reconnect.py
CommitLineData
a6f639f8 1# Copyright (c) 2009, 2010, 2012 Nicira, Inc.
26bb0f31 2#
99155935
BP
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:
26bb0f31 6#
99155935 7# http://www.apache.org/licenses/LICENSE-2.0
26bb0f31 8#
99155935
BP
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
8ea171ab
RB
15from __future__ import print_function
16
99155935 17import errno
99155935
BP
18import sys
19
20import ovs.reconnect
21
26bb0f31
EJ
22now = 0
23r = None
24
25
26def do_enable(_):
99155935
BP
27 r.enable(now)
28
26bb0f31
EJ
29
30def do_disable(_):
99155935
BP
31 r.disable(now)
32
26bb0f31
EJ
33
34def do_force_reconnect(_):
99155935
BP
35 r.force_reconnect(now)
36
26bb0f31 37
99155935
BP
38def error_from_string(s):
39 if not s:
40 return 0
41 elif s == "ECONNREFUSED":
42 return errno.ECONNREFUSED
43 elif s == "EOF":
b17a80ee 44 return ovs.reconnect.EOF
99155935
BP
45 else:
46 sys.stderr.write("unknown error '%s'\n" % s)
47 sys.exit(1)
48
26bb0f31 49
99155935
BP
50def do_disconnected(arg):
51 r.disconnected(now, error_from_string(arg))
26bb0f31
EJ
52
53
54def do_connecting(_):
99155935
BP
55 r.connecting(now)
56
26bb0f31 57
99155935
BP
58def do_connect_failed(arg):
59 r.connect_failed(now, error_from_string(arg))
60
26bb0f31
EJ
61
62def do_connected(_):
99155935
BP
63 r.connected(now)
64
26bb0f31 65
a6f639f8
BP
66def do_activity(_):
67 r.activity(now)
99155935 68
26bb0f31 69
99155935
BP
70def do_run(arg):
71 global now
72 if arg is not None:
73 now += int(arg)
74
75 action = r.run(now)
76 if action is None:
77 pass
78 elif action == ovs.reconnect.CONNECT:
8ea171ab 79 print(" should connect")
99155935 80 elif action == ovs.reconnect.DISCONNECT:
8ea171ab 81 print(" should disconnect")
99155935 82 elif action == ovs.reconnect.PROBE:
8ea171ab 83 print(" should send probe")
99155935
BP
84 else:
85 assert False
86
26bb0f31 87
99155935
BP
88def do_advance(arg):
89 global now
90 now += int(arg)
91
26bb0f31
EJ
92
93def do_timeout(_):
99155935
BP
94 global now
95 timeout = r.timeout(now)
c03afda6 96 if timeout is not None and timeout >= 0:
8ea171ab 97 print(" advance %d ms" % timeout)
99155935
BP
98 now += timeout
99 else:
8ea171ab 100 print(" no timeout")
99155935 101
26bb0f31 102
99155935
BP
103def do_set_max_tries(arg):
104 r.set_max_tries(int(arg))
105
26bb0f31 106
5ee527e2
BP
107def do_set_backoff_free_tries(arg):
108 r.set_backoff_free_tries(int(arg))
109
110
5eda645e 111def diff_stats(old, new, delta):
99155935
BP
112 if (old.state != new.state or
113 old.state_elapsed != new.state_elapsed or
114 old.backoff != new.backoff):
115 print(" in %s for %d ms (%d ms backoff)"
116 % (new.state, new.state_elapsed, new.backoff))
117
118 if (old.creation_time != new.creation_time or
a6f639f8 119 old.last_activity != new.last_activity or
99155935 120 old.last_connected != new.last_connected):
a6f639f8
BP
121 print(" created %d, last activity %d, last connected %d"
122 % (new.creation_time, new.last_activity, new.last_connected))
99155935
BP
123
124 if (old.n_successful_connections != new.n_successful_connections or
125 old.n_attempted_connections != new.n_attempted_connections or
126 old.seqno != new.seqno):
127 print(" %d successful connections out of %d attempts, seqno %d"
128 % (new.n_successful_connections, new.n_attempted_connections,
129 new.seqno))
130
5eda645e 131 if (old.is_connected != new.is_connected):
99155935
BP
132 if new.is_connected:
133 negate = ""
134 else:
5eda645e
AE
135 negate = "dis"
136 print(" %sconnected" % negate)
137
138 if (old.last_connected != new.last_connected or
3c057118 139 (new.msec_since_connect is not None and
5eda645e 140 old.msec_since_connect != new.msec_since_connect - delta) or
26bb0f31
EJ
141 (old.total_connected_duration != new.total_connected_duration - delta
142 and not (old.total_connected_duration == 0 and
143 new.total_connected_duration == 0))):
5eda645e
AE
144 print(" last connected %d ms ago, connected %d ms total"
145 % (new.msec_since_connect, new.total_connected_duration))
146
147 if (old.last_disconnected != new.last_disconnected or
3c057118 148 (new.msec_since_disconnect is not None and
5eda645e 149 old.msec_since_disconnect != new.msec_since_disconnect - delta)):
eba18f00 150 print(" disconnected at %d ms (%d ms ago)"
5eda645e 151 % (new.last_disconnected, new.msec_since_disconnect))
eba18f00 152
26bb0f31
EJ
153
154def do_set_passive(_):
99155935
BP
155 r.set_passive(True, now)
156
26bb0f31
EJ
157
158def do_listening(_):
99155935
BP
159 r.listening(now)
160
26bb0f31 161
99155935
BP
162def do_listen_error(arg):
163 r.listen_error(now, int(arg))
164
26bb0f31 165
99155935
BP
166def main():
167 commands = {
168 "enable": do_enable,
169 "disable": do_disable,
170 "force-reconnect": do_force_reconnect,
171 "disconnected": do_disconnected,
172 "connecting": do_connecting,
173 "connect-failed": do_connect_failed,
174 "connected": do_connected,
a6f639f8 175 "activity": do_activity,
99155935
BP
176 "run": do_run,
177 "advance": do_advance,
178 "timeout": do_timeout,
179 "set-max-tries": do_set_max_tries,
5ee527e2 180 "set-backoff-free-tries": do_set_backoff_free_tries,
99155935
BP
181 "passive": do_set_passive,
182 "listening": do_listening,
183 "listen-error": do_listen_error
184 }
185
99155935
BP
186 global now
187 global r
188
189 now = 1000
190 r = ovs.reconnect.Reconnect(now)
191 r.set_name("remote")
192 prev = r.get_stats(now)
8ea171ab 193 print("### t=%d ###" % now)
99155935
BP
194 old_time = now
195 old_max_tries = r.get_max_tries()
196 while True:
197 line = sys.stdin.readline()
198 if line == "":
199 break
200
8ea171ab 201 print(line[:-1])
99155935
BP
202 if line[0] == "#":
203 continue
204
205 args = line.split()
206 if len(args) == 0:
207 continue
208
209 command = args[0]
210 if len(args) > 1:
211 op = args[1]
212 else:
213 op = None
214 commands[command](op)
215
216 if old_time != now:
8ea171ab
RB
217 print()
218 print("### t=%d ###" % now)
99155935
BP
219
220 cur = r.get_stats(now)
5eda645e 221 diff_stats(prev, cur, now - old_time)
99155935
BP
222 prev = cur
223 if r.get_max_tries() != old_max_tries:
224 old_max_tries = r.get_max_tries()
8ea171ab 225 print(" %d tries left" % old_max_tries)
99155935 226
5eda645e
AE
227 old_time = now
228
26bb0f31 229
99155935
BP
230if __name__ == '__main__':
231 main()