summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c6e4788)
raw | patch | inline | side by side (parent: c6e4788)
author | jlgijsbers <jlgijsbers@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 3 Nov 2003 19:08:41 +0000 (19:08 +0000) | ||
committer | jlgijsbers <jlgijsbers@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 3 Nov 2003 19:08:41 +0000 (19:08 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1957 57a73879-2fb5-44c3-a270-3262357dd7e2
test/test_mailgw.py | patch | blob | history |
diff --git a/test/test_mailgw.py b/test/test_mailgw.py
index 137d7a24d2d16e58a4a91abf22b109d8ad655203..4a1991ec776cc39408f8af9ca6b13f6c4b82eda1 100644 (file)
--- a/test/test_mailgw.py
+++ b/test/test_mailgw.py
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
-# $Id: test_mailgw.py,v 1.58 2003-11-03 18:34:03 jlgijsbers Exp $
+# $Id: test_mailgw.py,v 1.59 2003-11-03 19:08:41 jlgijsbers Exp $
import unittest, tempfile, os, shutil, errno, imp, sys, difflib, rfc822
except OSError, error:
if error.errno not in (errno.ENOENT, errno.ESRCH): raise
+ def _send_mail(self, message):
+ handler = self.instance.MailGW(self.instance, self.db)
+ handler.trapExceptions = 0
+ return handler.main(StringIO(message))
+
def _get_mail(self):
f = open(SENDMAILDEBUG)
try:
f.close()
def testEmptyMessage(self):
- message = StringIO('''Content-Type: text/plain;
+ nodeid = self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: Chef <chef@bork.bork.bork>
To: issue_tracker@your.tracker.email.domain.example
Subject: [issue] Testing...
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- nodeid = handler.main(message)
assert not os.path.exists(SENDMAILDEBUG)
self.assertEqual(self.db.issue.get(nodeid, 'title'), 'Testing...')
def doNewIssue(self):
- message = StringIO('''Content-Type: text/plain;
+ nodeid = self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: Chef <chef@bork.bork.bork>
To: issue_tracker@your.tracker.email.domain.example
This is a test submission of a new issue.
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- nodeid = handler.main(message)
assert not os.path.exists(SENDMAILDEBUG)
l = self.db.issue.get(nodeid, 'nosy')
l.sort()
def testNewIssueNosy(self):
self.instance.config.ADD_AUTHOR_TO_NOSY = 'yes'
- message = StringIO('''Content-Type: text/plain;
+ nodeid = self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: Chef <chef@bork.bork.bork>
To: issue_tracker@your.tracker.email.domain.example
This is a test submission of a new issue.
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- nodeid = handler.main(message)
assert not os.path.exists(SENDMAILDEBUG)
l = self.db.issue.get(nodeid, 'nosy')
l.sort()
self.assertEqual(l, ['3', '4'])
def testAlternateAddress(self):
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: John Doe <john.doe@test>
To: issue_tracker@your.tracker.email.domain.example
This is a test submission of a new issue.
''')
- userlist = self.db.user.list()
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
+ userlist = self.db.user.list()
assert not os.path.exists(SENDMAILDEBUG)
self.assertEqual(userlist, self.db.user.list(),
"user created when it shouldn't have been")
def testNewIssueNoClass(self):
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: Chef <chef@bork.bork.bork>
To: issue_tracker@your.tracker.email.domain.example
This is a test submission of a new issue.
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
assert not os.path.exists(SENDMAILDEBUG)
def testNewIssueAuthMsg(self):
- message = StringIO('''Content-Type: text/plain;
+ # TODO: fix the damn config - this is apalling
+ self.db.config.MESSAGES_TO_AUTHOR = 'yes'
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: Chef <chef@bork.bork.bork>
To: issue_tracker@your.tracker.email.domain.example
This is a test submission of a new issue.
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- # TODO: fix the damn config - this is apalling
- self.db.config.MESSAGES_TO_AUTHOR = 'yes'
- handler.main(message)
-
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork, mary@test, richard@test
def testSimpleFollowup(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: mary <mary@test>
To: issue_tracker@your.tracker.email.domain.example
This is a second followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork, richard@test
def testFollowup(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard <richard@test>
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
l = self.db.issue.get('1', 'nosy')
l.sort()
self.assertEqual(l, ['3', '4', '5', '6'])
def testFollowupTitleMatch(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard <richard@test>
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork, john@test, mary@test
def testFollowupNosyAuthor(self):
self.doNewIssue()
self.db.config.ADD_AUTHOR_TO_NOSY = 'yes'
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: john@test
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
def testFollowupNosyRecipients(self):
self.doNewIssue()
self.db.config.ADD_RECIPIENTS_TO_NOSY = 'yes'
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard@test
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork
self.doNewIssue()
self.db.config.ADD_AUTHOR_TO_NOSY = 'yes'
self.db.config.MESSAGES_TO_AUTHOR = 'yes'
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: john@test
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork, john@test, richard@test
def testFollowupNoNosyAuthor(self):
self.doNewIssue()
self.instance.config.ADD_AUTHOR_TO_NOSY = 'no'
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: john@test
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork, richard@test
def testFollowupNoNosyRecipients(self):
self.doNewIssue()
self.instance.config.ADD_RECIPIENTS_TO_NOSY = 'no'
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard@test
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork
def testFollowupEmptyMessage(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard <richard@test>
To: issue_tracker@your.tracker.email.domain.example
Subject: [issue1] Testing... [assignedto=mary; nosy=+john]
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
l = self.db.issue.get('1', 'nosy')
l.sort()
self.assertEqual(l, ['3', '4', '5', '6'])
def testNosyRemove(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard <richard@test>
To: issue_tracker@your.tracker.email.domain.example
Subject: [issue1] Testing... [nosy=-richard]
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
l = self.db.issue.get('1', 'nosy')
l.sort()
self.assertEqual(l, ['3'])
self.db.security.hasPermission('Email Registration', anonid)
l = self.db.user.list()
l.sort()
- s = '''Content-Type: text/plain;
+ message = '''Content-Type: text/plain;
charset="iso-8859-1"
From: fubar <fubar@bork.bork.bork>
To: issue_tracker@your.tracker.email.domain.example
This is a test submission of a new issue.
'''
- message = StringIO(s)
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- self.assertRaises(Unauthorized, handler.main, message)
+ self.assertRaises(Unauthorized, self._send_mail, message)
m = self.db.user.list()
m.sort()
self.assertEqual(l, m)
# now with the permission
p = self.db.security.getPermission('Email Registration')
self.db.security.role['anonymous'].permissions=[p]
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- message = StringIO(s)
- handler.main(message)
+ self._send_mail(message)
m = self.db.user.list()
m.sort()
self.assertNotEqual(l, m)
def testEnc01(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: mary <mary@test>
To: issue_tracker@your.tracker.email.domain.example
A message with encoding (encoded oe =F6)
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork, richard@test
def testMultipartEnc01(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: mary <mary@test>
To: issue_tracker@your.tracker.email.domain.example
A message with first part encoded (encoded oe =F6)
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork, richard@test
def testContentDisposition(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: mary <mary@test>
To: issue_tracker@your.tracker.email.domain.example
--bCsyhTFzCvuiizWE--
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
messages = self.db.issue.get('1', 'messages')
messages.sort()
file = self.db.msg.get(messages[-1], 'files')[0]
def testFollowupStupidQuoting(self):
self.doNewIssue()
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard <richard@test>
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
self.compareMessages(self._get_mail(),
'''FROM: roundup-admin@your.tracker.email.domain.example
TO: chef@bork.bork.bork
messages = self.db.issue.get(nodeid, 'messages')
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard <richard@test>
To: issue_tracker@your.tracker.email.domain.example
This is a followup
''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
# figure the new message id
newmessages = self.db.issue.get(nodeid, 'messages')
for msg in messages:
def testRegistrationConfirmation(self):
otk = "Aj4euk4LZSAdwePohj90SME5SpopLETL"
self.db.otks.set(otk, username='johannes', __time='')
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: Chef <chef@bork.bork.bork>
To: issue_tracker@your.tracker.email.domain.example
This is a test confirmation of registration.
''' % otk)
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
self.db.user.lookup('johannes')
def testFollowupOnNonIssue(self):
self.db.keyword.create(name='Foo')
- message = StringIO('''Content-Type: text/plain;
+ self._send_mail('''Content-Type: text/plain;
charset="iso-8859-1"
From: richard <richard@test>
To: issue_tracker@your.tracker.email.domain.example
In-Reply-To: <dummy_test_message_id>
Subject: [keyword1] Testing... [name=Bar]
-''')
- handler = self.instance.MailGW(self.instance, self.db)
- handler.trapExceptions = 0
- handler.main(message)
-
+''')
self.assertEqual(self.db.keyword.get('1', 'name'), 'Bar')
def test_suite():