Use _get_user_id() in New, remove unused 'user-id' prop. from Commit.
authorW. Trevor King <wking@drexel.edu>
Thu, 21 Jan 2010 17:24:45 +0000 (12:24 -0500)
committerW. Trevor King <wking@drexel.edu>
Thu, 21 Jan 2010 17:24:45 +0000 (12:24 -0500)
Added creator field to bugs without creator information.  Mostly this
is due to the recent lack of creator-setting in `be new`.

.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/01c9a900-61f9-41f7-9b2f-dd8f89e25b1b/values
.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/3438b72c-6244-4f1d-8722-8c8d41484e35/values
.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/814e39c0-68ee-4165-9166-19e2aee9c07d/values
.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/ed5eac05-80ed-411d-88a4-d2261b879713/values
.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/f51dc5a7-37b7-4ce1-859a-b7cb58be6494/values
libbe/command/commit.py
libbe/command/new.py

index f4c275c660c3329e5a8c92069fd423b4cdb3c11f..fd156304d993ed9f2b7f37dff18f2744b17dbcab 100644 (file)
@@ -38,7 +38,7 @@ class Commit (libbe.command.Command):
 
     >>> bd.extra_strings = ['hi there']
     >>> bd.flush_reload()
-    >>> ui.run(cmd, {'user-id':'Joe'}, ['Making a commit']) # doctest: +ELLIPSIS
+    >>> ui.run(cmd, args=['Making a commit']) # doctest: +ELLIPSIS
     Committed ...
     >>> ui.cleanup()
     >>> bd.cleanup()
index ac0659bcd3b3260734099cdfba2f7d556a7c1d07..be183061b86b71499d9179f322609d2425b0b8c7 100644 (file)
@@ -38,6 +38,7 @@ class New (libbe.command.Command):
 
     >>> uuid_gen = libbe.util.id.uuid_gen
     >>> libbe.util.id.uuid_gen = lambda: 'X'
+    >>> ui._user_id = u'Fran\\xe7ois'
     >>> ret = ui.run(cmd, args=['this is a test',])
     Created bug with ID abc/X
     >>> libbe.util.id.uuid_gen = uuid_gen
@@ -45,6 +46,10 @@ class New (libbe.command.Command):
     >>> bug = bd.bug_from_uuid('X')
     >>> print bug.summary
     this is a test
+    >>> bug.creator
+    u'Fran\\xe7ois'
+    >>> bug.reporter
+    u'Fran\\xe7ois'
     >>> bug.time <= int(time.time())
     True
     >>> print bug.severity
@@ -80,6 +85,7 @@ class New (libbe.command.Command):
             summary = params['summary']
         bugdir = self._get_bugdir()
         bug = bugdir.new_bug(summary=summary.strip())
+        bug.creator = self._get_user_id()
         if params['reporter'] != None:
             bug.reporter = params['reporter']
         else: