Skip to content

Commit

Permalink
coerage for imapserver literal data error paths
Browse files Browse the repository at this point in the history
  • Loading branch information
darkrain42 committed Feb 26, 2020
1 parent 9b0f9bb commit 497d6e8
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions aioimaplib/tests/test_imapserver_aioimaplib.py
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])

0 comments on commit 497d6e8

Please sign in to comment.