forked from bamthomas/aioimaplib
-
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.
coerage for imapserver literal data error paths
- Loading branch information
1 parent
9b0f9bb
commit 497d6e8
Showing
1 changed file
with
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# -*- coding: utf-8 -*- | ||
# aioimaplib : an IMAPrev4 lib using python asyncio | ||
# Copyright (C) 2016 Bruno Thomas | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
import asyncio | ||
|
||
import asynctest | ||
|
||
from aioimaplib import extract_exists | ||
from aioimaplib.aioimaplib import Command | ||
from aioimaplib.tests.test_aioimaplib import AioWithImapServer | ||
|
||
|
||
class TestAioimaplib(AioWithImapServer, asynctest.TestCase): | ||
def setUp(self): | ||
self._init_server(self.loop) | ||
|
||
@asyncio.coroutine | ||
def tearDown(self): | ||
yield from self._shutdown_server() | ||
|
||
@asyncio.coroutine | ||
def test_append_too_long(self): | ||
imap_client = yield from self.login_user('user@mail', 'pass') | ||
self.assertEquals(0, extract_exists((yield from imap_client.examine('INBOX')))) | ||
|
||
message_bytes = b'do you see me ?' | ||
imap_client.protocol.literal_data = message_bytes * 2 | ||
|
||
args = ['INBOX', '{%s}' % len(message_bytes)] | ||
response = yield from imap_client.protocol.execute( | ||
Command('APPEND', imap_client.protocol.new_tag(), *args, loop=self.loop) | ||
) | ||
self.assertEquals('BAD', response.result) | ||
self.assertTrue('expected CRLF but got' in response.lines[0]) | ||
|
||
@asyncio.coroutine | ||
def test_append_too_short(self): | ||
imap_client = yield from self.login_user('user@mail', 'pass') | ||
self.assertEquals(0, extract_exists((yield from imap_client.examine('INBOX')))) | ||
|
||
message_bytes = b'do you see me ?' * 2 | ||
imap_client.protocol.literal_data = message_bytes[:5] | ||
|
||
args = ['INBOX', '{%s}' % len(message_bytes)] | ||
response = yield from imap_client.protocol.execute( | ||
Command('APPEND', imap_client.protocol.new_tag(), *args, loop=self.loop) | ||
) | ||
self.assertEquals('BAD', response.result) | ||
self.assertTrue('expected 30 but was' in response.lines[0]) |