~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_mail_client.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
    def test_commandline(self):
30
30
        mutt = mail_client.Mutt(None)
31
 
        commandline = mutt._get_compose_commandline(None, None, 'file%')
32
 
        self.assertEqual(['-a', 'file%'], commandline)
 
31
        commandline = mutt._get_compose_commandline(
 
32
            None, None, 'file%', body="hello")
 
33
        # The temporary filename is randomly generated, so it is not matched.
 
34
        self.assertEqual(['-a', 'file%', '-i'], commandline[:-1])
33
35
        commandline = mutt._get_compose_commandline('jrandom@example.org',
34
36
                                                     'Hi there!', None)
35
 
        self.assertEqual(['-s', 'Hi there!', 'jrandom@example.org'],
 
37
        self.assertEqual(['-s', 'Hi there!', '--', 'jrandom@example.org'],
36
38
                         commandline)
37
39
 
38
40
    def test_commandline_is_8bit(self):
40
42
        cmdline = mutt._get_compose_commandline(u'jrandom@example.org',
41
43
            u'Hi there!', u'file%')
42
44
        self.assertEqual(
43
 
            ['-s', 'Hi there!', '-a', 'file%', 'jrandom@example.org'],
 
45
            ['-s', 'Hi there!', '-a', 'file%', '--', 'jrandom@example.org'],
44
46
            cmdline)
45
47
        for item in cmdline:
46
48
            self.assertFalse(isinstance(item, unicode),
95
97
        # We won't be able to know the temporary file name at this stage
96
98
        # so we can't raise an assertion with assertEqual
97
99
        cmdline = eclient._get_compose_commandline(None, None, 'file%')
 
100
        if eclient.elisp_tmp_file is not None:
 
101
            self.addCleanup(osutils.delete_any, eclient.elisp_tmp_file)
98
102
        commandline = ' '.join(cmdline)
99
103
        self.assertContainsRe(commandline, '--eval')
100
104
        self.assertContainsRe(commandline, '(compose-mail nil nil)')
105
109
        eclient = mail_client.EmacsMail(None)
106
110
        commandline = eclient._get_compose_commandline(u'jrandom@example.org',
107
111
            u'Hi there!', u'file%')
 
112
        if eclient.elisp_tmp_file is not None:
 
113
            self.addCleanup(osutils.delete_any, eclient.elisp_tmp_file)
108
114
        for item in commandline:
109
115
            self.assertFalse(isinstance(item, unicode),
110
116
                'Command-line item %r is unicode!' % item)
191
197
    def test_commandline(self):
192
198
        claws = mail_client.Claws(None)
193
199
        commandline = claws._get_compose_commandline(
194
 
            None, None, 'file%')
 
200
            'jrandom@example.org', None, 'file%')
195
201
        self.assertEqual(
196
 
            ['--compose', 'mailto:?', '--attach', 'file%'], commandline)
 
202
            ['--compose', 'mailto:jrandom@example.org?', '--attach', 'file%'],
 
203
            commandline)
197
204
        commandline = claws._get_compose_commandline(
198
205
            'jrandom@example.org', 'Hi there!', None)
199
206
        self.assertEqual(
217
224
            self.assertFalse(isinstance(item, unicode),
218
225
                'Command-line item %r is unicode!' % item)
219
226
 
 
227
    def test_with_from(self):
 
228
        claws = mail_client.Claws(None)
 
229
        cmdline = claws._get_compose_commandline(
 
230
            u'jrandom@example.org', None, None, None, u'qrandom@example.com')
 
231
        self.assertEqual(
 
232
            ['--compose',
 
233
             'mailto:jrandom@example.org?from=qrandom%40example.com'],
 
234
            cmdline)
 
235
 
 
236
    def test_to_required(self):
 
237
        claws = mail_client.Claws(None)
 
238
        self.assertRaises(errors.NoMailAddressSpecified,
 
239
                          claws._get_compose_commandline,
 
240
                          None, None, 'file%')
 
241
 
 
242
    def test_with_body(self):
 
243
        claws = mail_client.Claws(None)
 
244
        cmdline = claws._get_compose_commandline(
 
245
            u'jrandom@example.org', None, None, 'This is some body text')
 
246
        self.assertEqual(
 
247
            ['--compose',
 
248
             'mailto:jrandom@example.org?body=This%20is%20some%20body%20text'],
 
249
            cmdline)
 
250
 
220
251
 
221
252
class TestEditor(tests.TestCase):
222
253