1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
# -*- coding: utf-8 -*-
#
# test_account.py
#
# Copyright 2016, 2018 Timo Kankare <timo.kankare@iki.fi>
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
"""Test cases for Account."""
import pytest
from Mailnag.common.accounts import Account
def test_account_get_id_should_be_unique():
accounts = [
Account(name='a', mailbox_type='imap', enabled=True, user='x', server='xx'),
Account(name='b', mailbox_type='pop3', enabled=True, user='y', server='yy'),
Account(name='c', mailbox_type='mbox', enabled=True),
Account(name='d', mailbox_type='maildir', enabled=True),
]
ids = set(acc.get_id() for acc in accounts)
assert len(ids) == len(accounts)
def test_account_get_id_should_be_consistent():
account = Account(name='a', mailbox_type='imap', enabled=True, user='x', server='xx')
expected_id = account.get_id()
for i in range(20):
assert account.get_id() == expected_id
def test_account_should_keep_configuration():
account = Account(enabled=True,
name='my name',
user='who',
password='secret',
oauth2string='who knows',
server='example.org',
port='1234',
ssl=True,
imap=True,
idle=True,
folders=['a', 'b'],
mailbox_type='mybox')
config = account.get_config()
expected_config = {
'enabled': True,
'name': 'my name',
'user': 'who',
'password': 'secret',
'oauth2string': 'who knows',
'server': 'example.org',
'port': '1234',
'ssl': True,
'imap': True,
'idle': True,
'folders': ['a', 'b'],
'mailbox_type': 'mybox',
}
assert expected_config == config
def test_account_should_store_configuration():
new_config = {
'user': 'who',
'password': 'secret',
'oauth2string': 'who knows',
'server': 'example.org',
'port': '1234',
'ssl': True,
'imap': True,
'idle': True,
'folders': ['a', 'b'],
}
account = Account()
account.set_config(mailbox_type='mybox', name='my name', enabled=True, config=new_config)
config = account.get_config()
expected_config = {
'enabled': True,
'name': 'my name',
'user': 'who',
'password': 'secret',
'oauth2string': 'who knows',
'server': 'example.org',
'port': '1234',
'ssl': True,
'imap': True,
'idle': True,
'folders': ['a', 'b'],
'mailbox_type': 'mybox',
}
assert expected_config == config
def test_account_config_should_always_contain_certain_values():
account = Account()
config = account.get_config()
assert 'enabled' in config
assert 'name' in config
assert 'mailbox_type' in config
def test_type_should_be_empty_by_default():
account = Account()
config = account.get_config()
assert account.mailbox_type == ''
assert config['mailbox_type'] == ''
def test_account_should_configurable_with_any_parameters():
account = Account(weird='odd', odd='weird')
config = account.get_config()
assert config['weird'] == 'odd'
assert config['odd'] == 'weird'
@pytest.mark.parametrize("config,should_support", [
({'mailbox_type': 'imap', 'idle': True}, True),
({'mailbox_type': 'imap', 'idle': False}, False),
({'mailbox_type': 'pop3'}, False),
({'mailbox_type': 'mbox'}, False),
({'mailbox_type': 'maildir'}, False),
])
def test_account_supports_notifications(config, should_support):
account = Account(**config)
if should_support:
assert account.supports_notifications()
else:
assert not account.supports_notifications()
|