The check for empty emails in 'find_author' checked for None, but it
was not possible to ever return None unless the 'From:' header was
missing altogether. Seeing as, per RFC822 and its revisions, this is
not possible, check for the empty string instead.
Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
Reviewed-by: Andy Doan <andy.doan@linaro.org>
# tuple of (regex, fn)
# - where fn returns a (name, email) tuple from the match groups resulting
# from re.match().groups()
+ # TODO(stephenfin): Perhaps we should check for "real" email addresses
+ # instead of anything ('.*?')
from_res = [
# for "Firstname Lastname" <example@example.com> style addresses
(re.compile(r'"?(.*?)"?\s*<([^>]+)>'), (lambda g: (g[0], g[1]))),
(name, email) = fn(match.groups())
break
- if email is None:
+ if not email:
raise ValueError("Invalid 'From' header")
email = email.strip()
db_person = Person.objects.get(email=sender_email)
self.assertEqual(person, db_person)
+ def test_empty(self):
+ email = self._create_email('')
+ with self.assertRaises(ValueError):
+ find_author(email)
+
def test_ascii_encoding(self):
from_header = 'example user <user@example.com>'
sender_name = u'example user'