mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-11 05:06:51 +00:00
49 lines
2.4 KiB
Gherkin
49 lines
2.4 KiB
Gherkin
Feature: IMAP remove messages from Trash
|
|
Background:
|
|
Given there exists an account with username "user@pm.me" and password "password"
|
|
And the account "user@pm.me" has the following custom mailboxes:
|
|
| name | type |
|
|
| mbox | folder |
|
|
| label | label |
|
|
|
|
Scenario Outline: Message in Trash and some other label is not permanently deleted
|
|
Given the address "user@pm.me" of account "user@pm.me" has the following messages in "Trash":
|
|
| from | to | subject | body |
|
|
| john.doe@mail.com | user@pm.me | foo | hello |
|
|
| jane.doe@mail.com | name@pm.me | bar | world |
|
|
And bridge starts
|
|
And the user logs in with username "user@pm.me" and password "password"
|
|
And user "user@pm.me" finishes syncing
|
|
And user "user@pm.me" connects and authenticates IMAP client "1"
|
|
And IMAP client "1" selects "Trash"
|
|
When IMAP client "1" copies the message with subject "foo" from "Trash" to "Labels/label"
|
|
Then it succeeds
|
|
When IMAP client "1" marks the message with subject "foo" as deleted
|
|
Then it succeeds
|
|
And IMAP client "1" sees 2 messages in "Trash"
|
|
And IMAP client "1" sees 2 messages in "All Mail"
|
|
And IMAP client "1" sees 1 messages in "Labels/label"
|
|
When IMAP client "1" expunges
|
|
Then it succeeds
|
|
And IMAP client "1" sees 1 messages in "Trash"
|
|
And IMAP client "1" sees 2 messages in "All Mail"
|
|
And IMAP client "1" sees 1 messages in "Labels/label"
|
|
|
|
Scenario Outline: Message in Trash only is permanently deleted
|
|
Given the address "user@pm.me" of account "user@pm.me" has the following messages in "Trash":
|
|
| from | to | subject | body |
|
|
| john.doe@mail.com | user@pm.me | foo | hello |
|
|
| jane.doe@mail.com | name@pm.me | bar | world |
|
|
And bridge starts
|
|
And the user logs in with username "user@pm.me" and password "password"
|
|
And user "user@pm.me" finishes syncing
|
|
And user "user@pm.me" connects and authenticates IMAP client "1"
|
|
And IMAP client "1" selects "Trash"
|
|
When IMAP client "1" marks the message with subject "foo" as deleted
|
|
Then it succeeds
|
|
And IMAP client "1" sees 2 messages in "Trash"
|
|
And IMAP client "1" sees 2 messages in "All Mail"
|
|
When IMAP client "1" expunges
|
|
Then it succeeds
|
|
And IMAP client "1" sees 1 messages in "Trash"
|
|
And IMAP client "1" eventually sees 1 messages in "All Mail" |