~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_whoami.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        bzr_email = os.environ.get('BZR_EMAIL')
46
46
        if bzr_email is not None:
47
47
            del os.environ['BZR_EMAIL']
48
 
        bzremail = os.environ.get('BZREMAIL')
49
 
        if bzremail is not None:
50
 
            del os.environ['BZREMAIL']
51
48
        try:
52
49
            whoami = self.run_bzr("whoami")[0]
53
50
            self.assertEquals('Branch Identity <branch@identi.ty>\n', whoami)
62
59
            whoami_email = self.run_bzr("whoami --email")[0]
63
60
            self.assertEquals('other@environ.ment\n', whoami_email)
64
61
            del os.environ['BZR_EMAIL']
65
 
            os.environ['BZREMAIL'] = 'Yet Another ID <yetother@environ.ment>'
66
 
            whoami, warn = self.run_bzr("whoami")
67
 
            self.assertEquals('Yet Another ID <yetother@environ.ment>\n', whoami)
68
 
            self.assertTrue(len(warn) > 0)
69
 
            del os.environ['BZREMAIL']
70
62
        finally:
71
63
            if bzr_email is not None:
72
64
                os.environ['BZR_EMAIL'] = bzr_email
73
 
            if bzremail is not None:
74
 
                os.environ['BZREMAIL'] = bzremail
75
65
 
76
66
    def test_whoami_utf8(self):
77
67
        """verify that an identity can be in utf-8."""