~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_errors.py

  • Committer: Matt Nordhoff
  • Date: 2009-04-04 02:50:01 UTC
  • mfrom: (4253 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4256.
  • Revision ID: mnordhoff@mattnordhoff.com-20090404025001-z1403k0tatmc8l91
Merge bzr.dev, fixing conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 
19
19
"""Tests for the formatting and construction of errors."""
20
20
 
158
158
        error = errors.MediumNotConnected("a medium")
159
159
        self.assertEqualDiff(
160
160
            "The medium 'a medium' is not connected.", str(error))
161
 
 
 
161
 
162
162
    def test_no_public_branch(self):
163
163
        b = self.make_branch('.')
164
164
        error = errors.NoPublicBranch(b)
171
171
        error = errors.NoRepositoryPresent(dir)
172
172
        self.assertNotEqual(-1, str(error).find((dir.transport.clone('..').base)))
173
173
        self.assertEqual(-1, str(error).find((dir.transport.base)))
174
 
        
 
174
 
175
175
    def test_no_smart_medium(self):
176
176
        error = errors.NoSmartMedium("a transport")
177
177
        self.assertEqualDiff("The transport 'a transport' cannot tunnel the "
256
256
 
257
257
    def test_up_to_date(self):
258
258
        error = errors.UpToDateFormat(bzrdir.BzrDirFormat4())
259
 
        self.assertEqualDiff("The branch format Bazaar-NG branch, "
260
 
                             "format 0.0.4 is already at the most "
 
259
        self.assertEqualDiff("The branch format All-in-one "
 
260
                             "format 4 is already at the most "
261
261
                             "recent format.",
262
262
                             str(error))
263
263
 
404
404
        """Test the formatting of MalformedBugIdentifier."""
405
405
        error = errors.MalformedBugIdentifier('bogus', 'reason for bogosity')
406
406
        self.assertEqual(
407
 
            "Did not understand bug identifier bogus: reason for bogosity",
 
407
            'Did not understand bug identifier bogus: reason for bogosity. '
 
408
            'See "bzr help bugs" for more information on this feature.',
408
409
            str(error))
409
410
 
410
411
    def test_unknown_bug_tracker_abbreviation(self):
461
462
        self.assertEqual(
462
463
            "Container has multiple records with the same name: n\xc3\xa5me",
463
464
            str(e))
464
 
        
 
465
 
465
466
    def test_check_error(self):
466
467
        # This has a member called 'message', which is problematic in
467
468
        # python2.5 because that is a slot on the base Exception class
560
561
        err = errors.UnknownErrorFromSmartServer(orig_err)
561
562
        self.assertEquals(
562
563
            "Server sent an unexpected error: ('error', 'tuple')", str(err))
563
 
    
 
564
 
564
565
    def test_smart_message_handler_error(self):
565
566
        # Make an exc_info tuple.
566
567
        try:
616
617
 
617
618
 
618
619
class PassThroughError(errors.BzrError):
619
 
    
 
620
 
620
621
    _fmt = """Pass through %(foo)s and %(bar)s"""
621
622
 
622
623
    def __init__(self, foo, bar):
633
634
 
634
635
 
635
636
class TestErrorFormatting(TestCase):
636
 
    
 
637
 
637
638
    def test_always_str(self):
638
639
        e = PassThroughError(u'\xb5', 'bar')
639
640
        self.assertIsInstance(e.__str__(), str)
650
651
                ['ErrorWithNoFormat uses its docstring as a format, it should use _fmt instead'],
651
652
                lambda x: str(x), e)
652
653
        ## s = str(e)
653
 
        self.assertEqual(s, 
 
654
        self.assertEqual(s,
654
655
                "This class has a docstring but no format string.")
655
656
 
656
657
    def test_mismatched_format_args(self):