mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-13 03:02:22 -05:00
IMAP: additional test cases
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1507 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
7532c0f57a
commit
fac66c021f
@ -32,12 +32,13 @@ import java.util.Random;
|
||||
/**
|
||||
* IMAP tests, an instance of DavMail Gateway must be available
|
||||
*/
|
||||
@SuppressWarnings({"JavaDoc", "UseOfSystemOutOrSystemErr"})
|
||||
public class TestImap extends AbstractDavMailTestCase {
|
||||
static Socket clientSocket;
|
||||
static BufferedWriter socketWriter;
|
||||
static BufferedReader socketReader;
|
||||
|
||||
static String messageUid = null;
|
||||
static String messageUid;
|
||||
|
||||
protected void write(String line) throws IOException {
|
||||
socketWriter.write(line);
|
||||
@ -98,11 +99,6 @@ public class TestImap extends AbstractDavMailTestCase {
|
||||
assertEquals(". OK UID FETCH completed", readFullAnswer("."));
|
||||
}
|
||||
|
||||
public void testFetchBodyStructure() throws IOException {
|
||||
writeLine(". UID FETCH 1:* (FLAGS BODYSTRUCTURE)");
|
||||
assertEquals(". OK UID FETCH completed", readFullAnswer("."));
|
||||
}
|
||||
|
||||
public void testUidSearchUnDeleted() throws IOException {
|
||||
writeLine(". UID SEARCH UNDELETED");
|
||||
assertEquals(". OK SEARCH completed", readFullAnswer("."));
|
||||
@ -310,15 +306,6 @@ public class TestImap extends AbstractDavMailTestCase {
|
||||
clientSocket = null;
|
||||
}
|
||||
|
||||
public void testBrokenPipe() throws IOException, InterruptedException {
|
||||
testSelectInbox();
|
||||
writeLine(". UID FETCH 1:* (RFC822.SIZE BODY.TEXT)");
|
||||
socketReader.readLine();
|
||||
// force close connection
|
||||
clientSocket.close();
|
||||
Thread.sleep(5000);
|
||||
}
|
||||
|
||||
public void testCopyMessage() throws IOException, InterruptedException, MessagingException {
|
||||
testCreateFolder();
|
||||
testCreateMessage();
|
||||
@ -336,4 +323,25 @@ public class TestImap extends AbstractDavMailTestCase {
|
||||
|
||||
testDeleteFolder();
|
||||
}
|
||||
|
||||
public void testFetchInboxEnvelope() throws IOException {
|
||||
testSelectInbox();
|
||||
writeLine(". UID FETCH 1:* (ENVELOPE)");
|
||||
assertEquals(". OK UID FETCH completed", readFullAnswer("."));
|
||||
}
|
||||
|
||||
public void testFetchInboxBodyStructure() throws IOException {
|
||||
testSelectInbox();
|
||||
writeLine(". UID FETCH 1:* (BODYSTRUCTURE)");
|
||||
assertEquals(". OK UID FETCH completed", readFullAnswer("."));
|
||||
}
|
||||
|
||||
public void testBrokenPipe() throws IOException, InterruptedException {
|
||||
testSelectInbox();
|
||||
writeLine(". UID FETCH 1:* (RFC822.SIZE BODY.TEXT)");
|
||||
socketReader.readLine();
|
||||
// force close connection
|
||||
clientSocket.close();
|
||||
Thread.sleep(5000);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user