~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testlog.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-15 21:35:53 UTC
  • mfrom: (907.1.57)
  • mto: (1393.2.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050915213552-a6c83a5ef1e20897
(broken) Transport work is merged in. Tests do not pass yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        self.assertRaises(InvalidRevisionNumber, show_log, b, lf,
84
84
                          start_revision=1, end_revision=-1) 
85
85
 
86
 
    def test_cur_revno(self):
87
 
        b = Branch.initialize('.')
88
 
 
89
 
        lf = LogCatcher()
90
 
        b.commit('empty commit')
91
 
        show_log(b, lf, verbose=True, start_revision=1, end_revision=1)
92
 
        self.assertRaises(InvalidRevisionNumber, show_log, b, lf,
93
 
                          start_revision=2, end_revision=1) 
94
 
        self.assertRaises(InvalidRevisionNumber, show_log, b, lf,
95
 
                          start_revision=1, end_revision=2) 
96
 
        self.assertRaises(InvalidRevisionNumber, show_log, b, lf,
97
 
                          start_revision=0, end_revision=2) 
98
 
        self.assertRaises(InvalidRevisionNumber, show_log, b, lf,
99
 
                          start_revision=1, end_revision=0) 
100
 
        self.assertRaises(InvalidRevisionNumber, show_log, b, lf,
101
 
                          start_revision=-1, end_revision=1) 
102
 
        self.assertRaises(InvalidRevisionNumber, show_log, b, lf,
103
 
                          start_revision=1, end_revision=-1) 
104
 
 
105
86
    def test_simple_log(self):
106
87
        eq = self.assertEquals
107
88
        
108
 
        b = Branch.initialize('.')
 
89
        b = Branch('.', init=True)
109
90
 
110
91
        lf = LogCatcher()
111
92
        show_log(b, lf)
151
132
        self.log('log 2 delta: %r' % d)
152
133
        # self.checkDelta(d, added=['hello'])
153
134
        
154
 
        # commit a log message with control characters
155
 
        msg = "All 8-bit chars: " +  ''.join([unichr(x) for x in range(256)])
156
 
        b.commit(msg)
157
 
        lf = LogCatcher()
158
 
        show_log(b, lf, verbose=True)
159
 
        committed_msg = lf.logs[0].rev.message
160
 
        self.log("escaped commit message: %r", committed_msg)
161
 
        self.assert_(msg != committed_msg)
162
 
        self.assert_(len(committed_msg) > len(msg))