コード例 #1
0
    def setUp(self):
        StreamTest.setUp(self)

        self.doc = handler_document(self.name)
        self.identity = Identity("*****@*****.**", ["rotate", 5], ["local", None, "kirk"])
        self.owner = Owner(self.identity, make_jack=False)
        self.owner.own_document(self.doc)
コード例 #2
0
    def setUp(self):
        StreamTest.setUp(self)

        self.doc = handler_document("echo_chamber")
        self.ev  = Event({'x':'y'}, identity("atlas"), self.doc.version)
        self.quorum = Quorum(self.ev, self.doc._qs)
        self.quorum.document = self.doc
        self.ident = identity()
        self.owner = Owner(self.ident, make_jack=False)
        self.owner.own_document(self.doc)
コード例 #3
0
ファイル: ejtp.py プロジェクト: campadrenalin/python-libdeje
    def setUp(self):
        StreamTest.setUp(self)

        self.router = Router()
        self.mitzi = Owner(identity("mitzi"), self.router)
        self.atlas = Owner(identity("atlas"), self.router)
        self.victor = Owner(identity("victor"), self.router)
        self.mitzi.identities.sync(self.atlas.identities, self.victor.identities)

        # Document that mitzi and atlas are part of, but victor is not.
        # Separate identical starting points for all of them.
        self.mdoc = handler_document("tag_team")
        self.adoc = handler_document("tag_team")
        self.vdoc = handler_document("tag_team")
        self.mitzi.own_document(self.mdoc)
        self.atlas.own_document(self.adoc)
        self.victor.own_document(self.vdoc)