-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Added test for POP3 STAT command
- Loading branch information
1 parent
f851df8
commit 1b96ce0
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<testcase> | ||
<info> | ||
<keywords> | ||
POP3 | ||
STAT | ||
CUSTOMREQUEST | ||
</keywords> | ||
</info> | ||
|
||
# | ||
# Server-side | ||
<reply> | ||
</reply> | ||
|
||
# | ||
# Client-side | ||
<client> | ||
<server> | ||
pop3 | ||
</server> | ||
<name> | ||
POP3 STAT (CUSTOMREQUEST) | ||
</name> | ||
<command> | ||
pop3://%HOSTIP:%POP3PORT -u user:secret -X STAT -I | ||
</command> | ||
</client> | ||
|
||
# | ||
# Verify data after the test has been "shot" | ||
<verify> | ||
<protocol> | ||
CAPA | ||
USER user | ||
PASS secret | ||
STAT | ||
QUIT | ||
</protocol> | ||
</verify> | ||
</testcase> |