56 lines
2.4 KiB
Diff
56 lines
2.4 KiB
Diff
--- Python-3.1.1/Lib/email/test/test_email.py.remove_mimeaudio_tests 2009-10-27 14:31:09.483539561 -0400
|
||
+++ Python-3.1.1/Lib/email/test/test_email.py 2009-10-27 14:31:27.663548053 -0400
|
||
@@ -926,52 +926,6 @@ Blah blah blah
|
||
|
||
|
||
|
||
-# Test the basic MIMEAudio class
|
||
-class TestMIMEAudio(unittest.TestCase):
|
||
- def setUp(self):
|
||
- # Make sure we pick up the audiotest.au that lives in email/test/data.
|
||
- # In Python, there's an audiotest.au living in Lib/test but that isn't
|
||
- # included in some binary distros that don't include the test
|
||
- # package. The trailing empty string on the .join() is significant
|
||
- # since findfile() will do a dirname().
|
||
- datadir = os.path.join(os.path.dirname(landmark), 'data', '')
|
||
- with open(findfile('audiotest.au', datadir), 'rb') as fp:
|
||
- self._audiodata = fp.read()
|
||
- self._au = MIMEAudio(self._audiodata)
|
||
-
|
||
- def test_guess_minor_type(self):
|
||
- self.assertEqual(self._au.get_content_type(), 'audio/basic')
|
||
-
|
||
- def test_encoding(self):
|
||
- payload = self._au.get_payload()
|
||
- self.assertEqual(base64.decodebytes(payload), self._audiodata)
|
||
-
|
||
- def test_checkSetMinor(self):
|
||
- au = MIMEAudio(self._audiodata, 'fish')
|
||
- self.assertEqual(au.get_content_type(), 'audio/fish')
|
||
-
|
||
- def test_add_header(self):
|
||
- eq = self.assertEqual
|
||
- unless = self.assertTrue
|
||
- self._au.add_header('Content-Disposition', 'attachment',
|
||
- filename='audiotest.au')
|
||
- eq(self._au['content-disposition'],
|
||
- 'attachment; filename="audiotest.au"')
|
||
- eq(self._au.get_params(header='content-disposition'),
|
||
- [('attachment', ''), ('filename', 'audiotest.au')])
|
||
- eq(self._au.get_param('filename', header='content-disposition'),
|
||
- 'audiotest.au')
|
||
- missing = []
|
||
- eq(self._au.get_param('attachment', header='content-disposition'), '')
|
||
- unless(self._au.get_param('foo', failobj=missing,
|
||
- header='content-disposition') is missing)
|
||
- # Try some missing stuff
|
||
- unless(self._au.get_param('foobar', missing) is missing)
|
||
- unless(self._au.get_param('attachment', missing,
|
||
- header='foobar') is missing)
|
||
-
|
||
-
|
||
-
|
||
# Test the basic MIMEImage class
|
||
class TestMIMEImage(unittest.TestCase):
|
||
def setUp(self):
|