use of com.zimbra.cs.mailclient.imap.Flags in project zm-mailbox by Zimbra.
the class TestImap method testOverflowNotAppend.
@Test
public void testOverflowNotAppend() throws Exception {
int oldReadTimeout = connection.getConfig().getReadTimeout();
try {
connection.setReadTimeout(10);
Flags flags = Flags.fromSpec("afs");
Date date = new Date(System.currentTimeMillis());
ImapRequest req = connection.newRequest(CAtom.FETCH, "1:*");
req.addParam("{" + ((long) (Integer.MAX_VALUE) + 1) + "+}");
ImapResponse resp = req.send();
assertTrue(resp.isNO() || resp.isBAD());
} finally {
connection.setReadTimeout(oldReadTimeout);
}
}
use of com.zimbra.cs.mailclient.imap.Flags in project zm-mailbox by Zimbra.
the class TestImap method testAppendTagsDirty.
@Test
public void testAppendTagsDirty() throws Exception {
Flags flags = Flags.fromSpec("afs");
//new tag; does not exist in mbox
final String tag1 = "NEWDIRTYTAG";
MailboxInfo info = connection.select("INBOX");
assertFalse("INBOX contains unexpected flag " + tag1, info.getFlags().isSet(tag1));
flags.set(tag1);
Date date = new Date(System.currentTimeMillis());
Literal msg = message(10);
try {
ImapRequest req = connection.newRequest("APPEND", "INBOX", flags, date, msg);
req.setResponseHandler(new ResponseHandler() {
@Override
public void handleResponse(ImapResponse res) throws Exception {
if (res.isUntagged() && res.getCCode() == CAtom.FLAGS) {
Flags flags = (Flags) res.getData();
assertTrue(flags.isSet(tag1));
}
}
});
req.sendCheckStatus();
} finally {
msg.dispose();
}
}
use of com.zimbra.cs.mailclient.imap.Flags in project zm-mailbox by Zimbra.
the class TestImap method testOverflowAppend.
@Test
public void testOverflowAppend() throws Exception {
assertTrue(connection.hasCapability("UIDPLUS"));
int oldReadTimeout = connection.getConfig().getReadTimeout();
try {
connection.setReadTimeout(10);
Flags flags = Flags.fromSpec("afs");
Date date = new Date(System.currentTimeMillis());
ImapRequest req = connection.newRequest(CAtom.APPEND, new MailboxName("INBOX"));
req.addParam("{" + ((long) (Integer.MAX_VALUE) + 1) + "+}");
ImapResponse resp = req.send();
assertTrue(resp.isNO() || resp.isBAD());
req = connection.newRequest(CAtom.APPEND, new MailboxName("INBOX"));
req.addParam("{" + ((long) (Integer.MAX_VALUE) + 1) + "}");
resp = req.send();
assertTrue(resp.isNO() || resp.isBAD());
} finally {
connection.setReadTimeout(oldReadTimeout);
}
}
use of com.zimbra.cs.mailclient.imap.Flags in project zm-mailbox by Zimbra.
the class TestImapThrottle method sort.
@Test
public void sort() throws IOException {
Flags flags = Flags.fromSpec("afs");
for (int i = 0; i < 3; i++) {
Date date = new Date(System.currentTimeMillis());
Literal msg = message(1000 + i * 1000);
try {
connection.append("INBOX", flags, date, msg);
} finally {
msg.dispose();
}
}
for (int i = 0; i < LOOP_LIMIT; i++) {
connection.newRequest("SORT (DATE REVERSE SUBJECT) UTF-8 ALL").sendCheckStatus();
}
try {
connection.newRequest("SORT (DATE REVERSE SUBJECT) UTF-8 ALL").sendCheckStatus();
Assert.fail("should have been rejected");
} catch (CommandFailedException e) {
Assert.assertTrue(connection.isClosed());
}
}
use of com.zimbra.cs.mailclient.imap.Flags in project zm-mailbox by Zimbra.
the class TestImapThrottle method copy.
@Test
public void copy() throws IOException {
Flags flags = Flags.fromSpec("afs");
for (int i = 0; i < 3; i++) {
Date date = new Date(System.currentTimeMillis());
Literal msg = message(1000 + i * 1000);
try {
connection.append("INBOX", flags, date, msg);
} finally {
msg.dispose();
}
}
connection.create("FOO");
for (int i = 0; i < LOOP_LIMIT; i++) {
connection.copy("1:3", "FOO");
}
try {
connection.copy("1:3", "FOO");
Assert.fail("should have been rejected");
} catch (CommandFailedException e) {
Assert.assertTrue(connection.isClosed());
}
}
Aggregations