def __init__(self): self.node_participants = {} self.participant_nodes = {} self.participant_focus = {} self.shadow_copies = {} self.pending_patches = {} self.dmp = diff_match_patch() super(DifferentialSyncronisationHandler, self).__init__()
def setUp(self): self.stub = XmlStreamStub() self.protocol = mock.MockDifferentialSyncronisationHandler() self.protocol.xmlstream = self.stub.xmlstream self.protocol.connectionInitialized() self.original = \ """ Hamlet: Do you see yonder cloud that's almost in shape of a camel? Polonius: By the mass, and 'tis like a camel, indeed. Hamlet: Methinks it is like a weasel. Polonius: It is backed like a weasel. Hamlet: Or like a whale? Polonius: Very like a whale. """ self.plain = \ """ Hamlet: Do you see the cloud over there that's almost the shape of a camel? Polonius: By golly, it is like a camel, indeed. Hamlet: I think it looks like a weasel. Polonius: It is shaped like a weasel. Hamlet: Or like a whale? Polonius: It's totally like a whale. """ self.trekkie = \ """ Kirk: Do you see yonder cloud that's almost in shape of a Klingon? Spock: By the mass, and 'tis like a Klingon, indeed. Kirk: Methinks it is like a Vulcan. Spock: It is backed like a Vulcan. Kirk: Or like a Romulan? Spock: Very like a Romulan. """ self.final = \ """ Kirk: Do you see the cloud over there that's almost the shape of a Klingon? Spock: By golly, it is like a Klingon, indeed. Kirk: I think it looks like a Vulcan. Spock: It is shaped like a Vulcan. Kirk: Or like a Romulan? Spock: It's totally like a Romulan. """ self.protocol.mock_text = {'hamlet': self.original} self.dmp = diff_match_patch()