test: Add test scenarios to add an /Answered flag to a replied message and revert

This commit is contained in:
Gordana Zafirova
2023-11-23 07:52:05 +00:00
parent 2073513d5e
commit e1723fc24b
2 changed files with 31 additions and 0 deletions

View File

@ -30,3 +30,22 @@ Feature: IMAP marks messages as forwarded
And it succeeds
Then IMAP client "1" eventually sees that message at row 1 does not have the flag "forwarded"
And it succeeds
Scenario: Mark message as replied
When IMAP client "1" selects "Folders/mbox"
And IMAP client "1" marks message 1 as "replied"
And it succeeds
Then IMAP client "1" eventually sees that message at row 1 has the flag "\Answered"
And it succeeds
@regression
Scenario: Mark message as replied and then revert
When IMAP client "1" selects "Folders/mbox"
And IMAP client "1" marks message 1 as "replied"
And it succeeds
Then IMAP client "1" eventually sees that message at row 1 has the flag "\Answered"
And it succeeds
And IMAP client "1" marks message 1 as "unreplied"
And it succeeds
Then IMAP client "1" eventually sees that message at row 1 does not have the flag "\Answered"
And it succeeds