~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_gpg.py

  • Committer: John Arbash Meinel
  • Date: 2007-02-08 16:28:05 UTC
  • mto: This revision was merged to the branch mainline in revision 2278.
  • Revision ID: john@arbash-meinel.com-20070208162805-dcqiqrwjh9a5lo7n
``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
you pass a Unicode string rather than an 8-bit string. It doesn't 
make sense to sign a Unicode string, and it turns out that some 
versions of python will write out the raw Unicode bytes rather than
encoding automatically. So fail and make callers do the right thing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
            ui.ui_factory.clear_term = old_clear_term
81
81
        self.assertEqual([True], clear_term_called)
82
82
 
 
83
    def test_aborts_on_unicode(self):
 
84
        """You can't sign Unicode text, it must be encoded first."""
 
85
        self.assertRaises(errors.BzrBadParameterUnicode,
 
86
                          self.assertProduces, u'foo')
 
87
 
83
88
 
84
89
class TestDisabled(TestCase):
85
90