You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.9 KiB
51 lines
1.9 KiB
Feature: IMAP fetch messages |
|
Background: |
|
Given there is connected user "user" |
|
And there is "user" with mailbox "Folders/mbox" |
|
|
|
Scenario: Fetch of inbox |
|
Given there are 10 messages in mailbox "INBOX" for "user" |
|
And there is IMAP client logged in as "user" |
|
And there is IMAP client selected in "INBOX" |
|
When IMAP client fetches "1:*" |
|
Then IMAP response is "OK" |
|
And IMAP response has 10 messages |
|
|
|
Scenario: Fetch first few message of inbox |
|
Given there are 10 messages in mailbox "INBOX" for "user" |
|
And there is IMAP client logged in as "user" |
|
And there is IMAP client selected in "INBOX" |
|
When IMAP client fetches "1:5" |
|
Then IMAP response is "OK" |
|
And IMAP response has 5 messages |
|
|
|
Scenario: Fetch of custom mailbox |
|
Given there are 10 messages in mailbox "Folders/mbox" for "user" |
|
And there is IMAP client logged in as "user" |
|
And there is IMAP client selected in "Folders/mbox" |
|
When IMAP client fetches "1:*" |
|
Then IMAP response is "OK" |
|
And IMAP response has 10 messages |
|
|
|
Scenario: Fetch of emtpy mailbox |
|
Given there is IMAP client logged in as "user" |
|
And there is IMAP client selected in "Folders/mbox" |
|
When IMAP client fetches "1:*" |
|
Then IMAP response is "OK" |
|
And IMAP response has 0 messages |
|
|
|
Scenario: Fetch of big mailbox |
|
Given there are 100 messages in mailbox "Folders/mbox" for "user" |
|
And there is IMAP client logged in as "user" |
|
And there is IMAP client selected in "Folders/mbox" |
|
When IMAP client fetches "1:*" |
|
Then IMAP response is "OK" |
|
And IMAP response has 100 messages |
|
|
|
Scenario: Fetch returns alsways latest messages |
|
Given there are 10 messages in mailbox "Folders/mbox" for "user" |
|
And there is IMAP client logged in as "user" |
|
And there is IMAP client selected in "Folders/mbox" |
|
When IMAP client fetches by UID "11:*" |
|
Then IMAP response is "OK" |
|
And IMAP response has 1 message
|
|
|