Allow client replays to be replayed against server replays.

Useful for testing.
This commit is contained in:
Aldo Cortesi 2011-03-06 14:48:16 +13:00
parent bad77f3470
commit 4f02480482

View File

@ -54,10 +54,12 @@ class ClientPlaybackState:
if self.flows and not self.current:
n = self.flows.pop(0)
self.current = master.handle_request(n.request)
if not testing:
if not testing and not self.current.response:
#begin nocover
master.state.replay_request(self.current, master.masterq)
#end nocover
elif self.current.response:
master.handle_response(self.current.response)
class ServerPlaybackState: