diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-07-09 16:52:32 -0400 |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-07-09 16:52:32 -0400 |
commit | 3e492389ad7f2d628134b3471bc2e4e054b7d204 (patch) | |
tree | d2cc561958b9455f4ee54ac62dcae10e6162ce07 /tests/functional | |
parent | 7977586fcff0eb783ff4f17c2aa0bd2a1de262aa (diff) | |
download | pykolab-3e492389ad7f2d628134b3471bc2e4e054b7d204.tar.gz |
Send iTip replies through wallace again; use a locking mechanism to sequencially process partstat updates from (automated) replies
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/test_wallace/test_007_invitationpolicy.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/functional/test_wallace/test_007_invitationpolicy.py b/tests/functional/test_wallace/test_007_invitationpolicy.py index 2b669ff..b12b785 100644 --- a/tests/functional/test_wallace/test_007_invitationpolicy.py +++ b/tests/functional/test_wallace/test_007_invitationpolicy.py @@ -623,13 +623,7 @@ class TestWallaceInvitationpolicy(unittest.TestCase): self.send_itip_invitation(self.jane['mail'], start, template=event_itip) self.send_itip_invitation(self.jack['mail'], start, template=event_itip) - # send replies from jack and jane - # FIXME: replies should not be necessary if auto-replies get through wallace as well - self.send_itip_reply(uid, self.jane['mail'], self.john['mail'], start=start, partstat='ACCEPTED') - time.sleep(10) # FIXME: implement locking in wallace - self.send_itip_reply(uid, self.jack['mail'], self.john['mail'], start=start, partstat='TENTATIVE') - - # wait for replies to be processed and propagated + # wait for replies from jack and jane to be processed and propagated time.sleep(10) event = self.check_user_calendar_event(self.john['kolabtargetfolder'], uid) self.assertIsInstance(event, pykolab.xml.Event) |