Feature: IMAP IDLE Background: Given there is connected user "user" And there are 10 messages in mailbox "INBOX" for "user" # Those tests are ignored as currently our IMAP implementation is not responding with updates to all open connections. @ignore Scenario Outline: Mark as read Given there is IMAP client "active" logged in as "user" And there is IMAP client "active" selected in "INBOX" And there is IMAP client "idling" logged in as "user" And there is IMAP client "idling" selected in "INBOX" When IMAP client "idling" starts IDLE-ing And IMAP client "active" marks message seq "" as read Then IMAP client "idling" receives update marking message seq "" as read within seconds Then message "" in "INBOX" for "user" is marked as read Examples: | seq | seconds | | 1 | 2 | | 1:5 | 2 | | 1:10 | 5 | @ignore Scenario Outline: Mark as unread Given there is IMAP client "active" logged in as "user" And there is IMAP client "active" selected in "INBOX" And there is IMAP client "idling" logged in as "user" And there is IMAP client "idling" selected in "INBOX" When IMAP client "idling" starts IDLE-ing And IMAP client "active" marks message seq "" as unread Then IMAP client "idling" receives update marking message seq "" as unread within seconds And message "" in "INBOX" for "user" is marked as unread Examples: | seq | seconds | | 1 | 2 | | 1:5 | 2 | | 1:10 | 5 | @ignore Scenario Outline: Three IDLEing Given there is IMAP client "active" logged in as "user" And there is IMAP client "active" selected in "INBOX" And there is IMAP client "idling1" logged in as "user" And there is IMAP client "idling1" selected in "INBOX" And there is IMAP client "idling2" logged in as "user" And there is IMAP client "idling2" selected in "INBOX" And there is IMAP client "idling3" logged in as "user" And there is IMAP client "idling3" selected in "INBOX" When IMAP client "idling1" starts IDLE-ing And IMAP client "idling2" starts IDLE-ing And IMAP client "idling3" starts IDLE-ing And IMAP client "active" marks message seq "" as read Then IMAP client "idling1" receives update marking message seq "" as read within seconds Then IMAP client "idling2" receives update marking message seq "" as read within seconds Then IMAP client "idling3" receives update marking message seq "" as read within seconds Examples: | seq | seconds | | 1 | 2 | | 1:5 | 2 | | 1:10 | 5 |