GODT-1817: Port over missing IMAP copy feature test

This commit is contained in:
Leander Beernaert
2022-12-22 15:34:48 +01:00
parent e3a1482b8f
commit e9e59a2704
4 changed files with 56 additions and 111 deletions

View File

@ -6,9 +6,9 @@ Feature: IMAP copy messages
| mbox | folder |
| label | label |
And the address "[user:user]@[domain]" of account "[user:user]" has the following messages in "Inbox":
| from | to | subject | unread |
| john.doe@mail.com | [user:user]@[domain] | foo | false |
| jane.doe@mail.com | name@[domain] | bar | true |
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | false |
| jane.doe@mail.com | name@[domain] | bar | true | true |
And bridge starts
And the user logs in with username "[user:user]" and password "password"
And user "[user:user]" finishes syncing
@ -16,36 +16,40 @@ Feature: IMAP copy messages
Scenario: Copy message to label
When IMAP client "1" copies the message with subject "foo" from "INBOX" to "Labels/label"
And it succeeds
Then IMAP client "1" sees the following messages in "INBOX":
| from | to | subject | unread |
| john.doe@mail.com | [user:user]@[domain] | foo | false |
| jane.doe@mail.com | name@[domain] | bar | true |
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | false |
| jane.doe@mail.com | name@[domain] | bar | true | true |
And IMAP client "1" sees the following messages in "Labels/label":
| from | to | subject | unread |
| john.doe@mail.com | [user:user]@[domain] | foo | false |
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | false |
Scenario: Copy all messages to label
When IMAP client "1" copies all messages from "INBOX" to "Labels/label"
And it succeeds
Then IMAP client "1" sees the following messages in "INBOX":
| from | to | subject | unread |
| john.doe@mail.com | [user:user]@[domain] | foo | false |
| jane.doe@mail.com | name@[domain] | bar | true |
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | false |
| jane.doe@mail.com | name@[domain] | bar | true | true |
And IMAP client "1" sees the following messages in "Labels/label":
| from | to | subject | unread |
| john.doe@mail.com | [user:user]@[domain] | foo | false |
| jane.doe@mail.com | name@[domain] | bar | true |
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | false |
| jane.doe@mail.com | name@[domain] | bar | true | true |
Scenario: Copy message to folder does move
When IMAP client "1" copies the message with subject "foo" from "INBOX" to "Folders/mbox"
And it succeeds
Then IMAP client "1" eventually sees the following messages in "INBOX":
| from | to | subject | unread |
| jane.doe@mail.com | name@[domain] | bar | true |
| from | to | subject | unread | deleted |
| jane.doe@mail.com | name@[domain] | bar | true | true |
And IMAP client "1" sees the following messages in "Folders/mbox":
| from | to | subject | unread |
| john.doe@mail.com | [user:user]@[domain] | foo | false |
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | true |
Scenario: Copy all messages to folder does move
When IMAP client "1" copies all messages from "INBOX" to "Folders/mbox"
And it succeeds
Then IMAP client "1" sees the following messages in "Folders/mbox":
| from | to | subject | unread |
| john.doe@mail.com | [user:user]@[domain] | foo | false |
@ -54,8 +58,28 @@ Feature: IMAP copy messages
Scenario: Copy message from Inbox to Sent is not possible
When IMAP client "1" copies the message with subject "foo" from "INBOX" to "Sent"
And it succeeds
Then IMAP client "1" eventually sees the following messages in "INBOX":
| from | to | subject | unread |
| john.doe@mail.com | [user:user]@[domain] | foo | false |
| jane.doe@mail.com | name@[domain] | bar | true |
And IMAP client "1" eventually sees 0 messages in "Sent"
And IMAP client "1" eventually sees 0 messages in "Sent"
Scenario: Copy message from All mail moves from the original location
Then IMAP client "1" sees the following messages in "INBOX":
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | false |
| jane.doe@mail.com | name@[domain] | bar | true | true |
When IMAP client "1" copies the message with subject "foo" from "All Mail" to "Folders/mbox"
And it succeeds
Then IMAP client "1" sees the following messages in "INBOX":
| from | to | subject | unread | deleted |
| jane.doe@mail.com | name@[domain] | bar | true | true |
Then IMAP client "1" sees the following messages in "All Mail":
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | false |
| jane.doe@mail.com | name@[domain] | bar | true | false |
Then IMAP client "1" sees the following messages in "Folders/mbox":
| from | to | subject | unread | deleted |
| john.doe@mail.com | [user:user]@[domain] | foo | false | true |