WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 38918
add a FancyReviewQueue to upload r? patches to rietveld
https://bugs.webkit.org/show_bug.cgi?id=38918
Summary
add a FancyReviewQueue to upload r? patches to rietveld
Ojan Vafai
Reported
2010-05-11 11:13:00 PDT
add a FancyReviewQueue to upload r? patches to rietveld
Attachments
Patch
(6.24 KB, patch)
2010-05-11 11:20 PDT
,
Ojan Vafai
no flags
Details
Formatted Diff
Diff
Patch
(19.66 KB, patch)
2010-05-12 15:17 PDT
,
Ojan Vafai
no flags
Details
Formatted Diff
Diff
Patch
(20.52 KB, patch)
2010-05-12 18:19 PDT
,
Ojan Vafai
no flags
Details
Formatted Diff
Diff
Patch
(20.73 KB, patch)
2010-05-12 19:16 PDT
,
Ojan Vafai
no flags
Details
Formatted Diff
Diff
Patch
(23.05 KB, patch)
2010-05-14 15:44 PDT
,
Ojan Vafai
no flags
Details
Formatted Diff
Diff
Patch
(23.88 KB, patch)
2010-05-14 16:57 PDT
,
Ojan Vafai
no flags
Details
Formatted Diff
Diff
Patch
(23.80 KB, patch)
2010-05-24 09:19 PDT
,
Ojan Vafai
no flags
Details
Formatted Diff
Diff
Patch
(24.69 KB, patch)
2010-05-24 12:05 PDT
,
Ojan Vafai
abarth
: review+
Details
Formatted Diff
Diff
Show Obsolete
(7)
View All
Add attachment
proposed patch, testcase, etc.
Ojan Vafai
Comment 1
2010-05-11 11:20:58 PDT
Created
attachment 55724
[details]
Patch
Adam Barth
Comment 2
2010-05-12 15:05:56 PDT
I thought we weren't calling it fancy review anymore? (I don't seem to be able to cc jparent for some reason.)
Ojan Vafai
Comment 3
2010-05-12 15:17:18 PDT
Created
attachment 55908
[details]
Patch
Ojan Vafai
Comment 4
2010-05-12 15:18:12 PDT
Comment on
attachment 55908
[details]
Patch I added support for the in-rietveld flag to this patch. It was easier to do this way. I can split it up if you need me to though.
Adam Barth
Comment 5
2010-05-12 15:31:32 PDT
Comment on
attachment 55908
[details]
Patch Why do we support uploading directly to rietveld? It seems like we want to remove that code in favor of always using the bot. It's a little strange that we keep track of the "this patch is in rietveld" state twice: once in a bugzilla flag and again in AppEngine. What if these get out of sync? I think we only want to keep one copy of this information. WebKitTools/Scripts/webkitpy/tool/commands/download.py:185 + # FIXME: Write a test for this code. Testing it is hard since it using Rietveld's upload.py, Huh? We should just mock that out. WebKitTools/Scripts/webkitpy/tool/commands/download.py:188 + name = "post-attachment-fancy" We need a better name... send-attachment-to-rietveld ? post-code-review-for-attachment ? WebKitTools/Scripts/webkitpy/tool/commands/download.py:190 + arguments_names = "[ATTACHMENTID]" Why is this argument optional? WebKitTools/Scripts/webkitpy/tool/commands/queues.py:375 + name = "fancy-review-queue" Again, we need a better name here. This name is stored persistently on the server so we're stuck with it once we start. WebKitTools/Scripts/webkitpy/tool/commands/queues.py:385 + self.run_webkit_patch(["post-attachment-fancy", "--fancy-review", "--force-clean", "--non-interactive", "--parent-command=style-queue", patch.id()]) why is the style-queue the parent command? WebKitTools/Scripts/webkitpy/tool/commands/queues.py:386 + return True Don't we need an error handler here? What do you want to happen if we encounter an error? WebKitTools/Scripts/webkitpy/tool/commands/upload.py: + Why did you remove this line? WebKitTools/Scripts/webkitpy/tool/mocktool.py:509 + class MockRietveld(Rietveld): We don't have the mocks inherit from the real objects. It's too dangerous. The calls might leak through and do real things. WebKitTools/Scripts/webkitpy/tool/steps/postcodereview.py:50 + self.tool.bugs.set_flag_on_attachment(patch.id, 'in-rietveld', '+', 'Patch has been upload to rietveld') Where does this text go? Is it spammed in email?
Ojan Vafai
Comment 6
2010-05-12 18:19:00 PDT
Created
attachment 55921
[details]
Patch
Ojan Vafai
Comment 7
2010-05-12 18:19:17 PDT
(In reply to
comment #5
)
> Why do we support uploading directly to rietveld? It seems like we want to remove that code in favor of always using the bot.
I agree. I was just thinking that would be a followup patch.
> It's a little strange that we keep track of the "this patch is in rietveld" state twice: once in a bugzilla flag and again in AppEngine. What if these get out of sync? I think we only want to keep one copy of this information.
I agree it's a little strange, but we use this information to decide whether or not to show the the rietveld review UI in bugzilla. We considered having bugzilla ping appengine to see if the review existed, but that seemed janktastic. Ultimately, the bot will be running and uploading every patch to rietveld, so this flag will be obsoleted and we can get rid of it entirely. It's just an interim state to avoid showing the rietveld review UI on all patches until we can rely on the bot.
> WebKitTools/Scripts/webkitpy/tool/commands/download.py:185 > + # FIXME: Write a test for this code. Testing it is hard since it using Rietveld's upload.py, > Huh? We should just mock that out.
Ugh. Sorry. I forgot to go back and do this. As you can see, I had already mocked it out elsewhere. Anyways, fixed.
> WebKitTools/Scripts/webkitpy/tool/commands/download.py:188 > + name = "post-attachment-fancy" > We need a better name... send-attachment-to-rietveld ? post-code-review-for-attachment ?
post-attachment-to-rietveld?
> WebKitTools/Scripts/webkitpy/tool/commands/download.py:190 > + arguments_names = "[ATTACHMENTID]" > Why is this argument optional?
Fixed.
> WebKitTools/Scripts/webkitpy/tool/commands/queues.py:375 > + name = "fancy-review-queue" > Again, we need a better name here. This name is stored persistently on the server so we're stuck with it once we start.
rietveld-upload-queue?
> WebKitTools/Scripts/webkitpy/tool/commands/queues.py:385 > + self.run_webkit_patch(["post-attachment-fancy", "--fancy-review", "--force-clean", "--non-interactive", "--parent-command=style-queue", patch.id()]) > why is the style-queue the parent command?
Copy-paste error.
> WebKitTools/Scripts/webkitpy/tool/commands/queues.py:386 > + return True > Don't we need an error handler here? What do you want to happen if we encounter an error?
Done.
> WebKitTools/Scripts/webkitpy/tool/commands/upload.py: > + > Why did you remove this line?
Accidental.
> WebKitTools/Scripts/webkitpy/tool/mocktool.py:509 > + class MockRietveld(Rietveld): > We don't have the mocks inherit from the real objects. It's too dangerous. The calls might leak through and do real things.
Make sense.
> WebKitTools/Scripts/webkitpy/tool/steps/postcodereview.py:50 > + self.tool.bugs.set_flag_on_attachment(patch.id, 'in-rietveld', '+', 'Patch has been upload to rietveld') > Where does this text go? Is it spammed in email?
I made it exclude the comment text.
Ojan Vafai
Comment 8
2010-05-12 19:16:52 PDT
Created
attachment 55928
[details]
Patch
Ojan Vafai
Comment 9
2010-05-12 19:18:07 PDT
Comment on
attachment 55928
[details]
Patch Added a couple comments to get rid of --fancy-review and fixed a typo in postcodereview.py. Also, now that the in-rietveld flag is active, you can see an example of what the post-attachment-to-rietveld command does on
bug 26526
.
Eric Seidel (no email)
Comment 10
2010-05-12 19:20:01 PDT
The way the status bubbles work is to use an iframe to an appengine. I think that would be cleaner than using an in-rietveld flag. Flags cause bugzilla to send mail when they're changed, which is bad-news-bears.
Ojan Vafai
Comment 11
2010-05-12 19:29:12 PDT
> > It's a little strange that we keep track of the "this patch is in rietveld" state twice: once in a bugzilla flag and again in AppEngine. What if these get out of sync? I think we only want to keep one copy of this information. > > I agree it's a little strange, but we use this information to decide whether or not to show the the rietveld review UI in bugzilla. We considered having bugzilla ping appengine to see if the review existed, but that seemed janktastic. Ultimately, the bot will be running and uploading every patch to rietveld, so this flag will be obsoleted and we can get rid of it entirely. It's just an interim state to avoid showing the rietveld review UI on all patches until we can rely on the bot.
Actually, I take this back. I forgot that in-reitveld is a per-patch flag, but we only have one reitveld issue per bug. So we need in-rietveld to make it so we only show the rietveld review link for patches that have actually been posted to rietveld. Not sure how to get around this unless we kept a map of uploaded attachment IDs in rietveld, but that doesn't fix anything. It just changes where we store the bit, not that we store two bits. I'm open to suggestions. I agree that the email sending is a problem. Is there anyway to get bugzilla not to send emails for some updates?
Ojan Vafai
Comment 12
2010-05-12 19:39:02 PDT
Talked to Eric on IRC. Another option would be to have a separate server that just returns 200/404 if a given attachment has been uploaded to rietveld. This doesn't solve the storing the bit in multiple places problem, but it does solve the bugzilla sending spammy email problems. I'd rather just solve the bugzilla problem though. Another server seems like more bits that need maintaining and can break. Adam, we're not actually storing the same data twice currently. in-rietveld tells us which patches have been uploaded. Rietveld server only knows which bugs have rietveld issues, not which individual patches.
Adam Barth
Comment 13
2010-05-12 21:15:57 PDT
> Adam, we're not actually storing the same data twice currently. in-rietveld tells us which patches have been uploaded. Rietveld server only knows which bugs have rietveld issues, not which individual patches.
The queue machinery is storing a bit per attachment to remember whether it has processed that attachment before (so that queue can be restarted / moved / etc). That bit seems almost the same as the in-rietveld flag. If you want to make bugzilla the authority for which patches have been processed, you want to model your bot after commit-queue, which uses the commit-queue flag to store that information. Essentially, you want to move your bot up one layer in the class hierarchy so that it can manually manage the set of patches to process.
Ojan Vafai
Comment 14
2010-05-14 15:44:09 PDT
Created
attachment 56116
[details]
Patch
Ojan Vafai
Comment 15
2010-05-14 15:45:24 PDT
Comment on
attachment 56116
[details]
Patch I made the queue more like the commit-queue and got rid of --fancy-review (so, upload/post no longer have an option to post to rietveld). upload/post just always set in-rietveld?, which then puts it in the queue to be uploaded to rietveld.
Ojan Vafai
Comment 16
2010-05-14 15:45:47 PDT
Also,
bug 39090
addressed the email spam issue.
Ojan Vafai
Comment 17
2010-05-14 16:57:09 PDT
Created
attachment 56123
[details]
Patch
Ojan Vafai
Comment 18
2010-05-14 16:58:14 PDT
Comment on
attachment 56123
[details]
Patch Fixes a bug in rietveld.py that strips the first argv from RealMain. RealMain itself does that, so we were actually stripping the first two arguments, which mean that --assume-yes was getting dropped.
Ojan Vafai
Comment 19
2010-05-24 09:19:29 PDT
Created
attachment 56897
[details]
Patch Sync to ToT
Adam Barth
Comment 20
2010-05-24 09:56:28 PDT
Comment on
attachment 56897
[details]
Patch This is looking pretty good. Some minor comments below. Probably needs one more round. WebKitTools/Scripts/webkitpy/common/net/bugzilla.py:629 + self.browser['flag_type-4'] = ('?',) It's too bad that this will only work for patches uploaded with webkit-patch. What's the plan for getting all r? patches uploaded? Why not start with that? WebKitTools/Scripts/webkitpy/common/net/bugzilla.py:805 + self.browser.set_value(comment_text, name='comment', nr=0) I don't understand how this change relates... WebKitTools/Scripts/webkitpy/tool/commands/queues.py:336 + comment_text = "Rejecting patch %s from rietveld-queue." % patch.id() Why might this happen? Do we want to send email when it happens? WebKitTools/Scripts/webkitpy/tool/commands/queues.py:345 + def _error_message_for_bug(tool, status_id, script_error): This function looks like a copy/paste of another function. Can we share the implementation?
Adam Barth
Comment 21
2010-05-24 09:57:21 PDT
@eric: Does this patch integrate properly with our new control channel / pending patches list?
Ojan Vafai
Comment 22
2010-05-24 12:05:24 PDT
Created
attachment 56910
[details]
Patch
Ojan Vafai
Comment 23
2010-05-24 12:05:45 PDT
(In reply to
comment #20
)
> WebKitTools/Scripts/webkitpy/common/net/bugzilla.py:629 > + self.browser['flag_type-4'] = ('?',) > It's too bad that this will only work for patches uploaded with webkit-patch. What's the plan for getting all r? patches uploaded? Why not start with that?
I was just trying to scope the change to avoid creating havoc if something goes wrong with the queue. But, whatever, the queue now processes r? and in-rietveld? matches.
> WebKitTools/Scripts/webkitpy/common/net/bugzilla.py:805 > + self.browser.set_value(comment_text, name='comment', nr=0) > I don't understand how this change relates...
I had made the change in an earlier iteration of this patch and it seemed like a good one. Anyways, removed.
> WebKitTools/Scripts/webkitpy/tool/commands/queues.py:336 > + comment_text = "Rejecting patch %s from rietveld-queue." % patch.id() > Why might this happen? Do we want to send email when it happens?
Only case I can think of is if rietveld is down. This will post to the bug, so no need to send a separate email, right?
> WebKitTools/Scripts/webkitpy/tool/commands/queues.py:345 > + def _error_message_for_bug(tool, status_id, script_error): > This function looks like a copy/paste of another function. Can we share the implementation?
Moved into StepSequenceErrorHandler. Not sure if that is the right place. I could create a AbstractPatchQueue/StepSequenceErrorHandler superclass, but that seems excessive. Putting in directly in AbstractPatchQueue seemed wrong since this used in an implementation of a StepSequenceErrorHandler method.
Adam Barth
Comment 24
2010-05-29 09:40:18 PDT
Comment on
attachment 56910
[details]
Patch Minor nits below. You should feel free to either address them before landing or in a follow-up patch. WebKitTools/Scripts/webkitpy/common/net/rietveld.py:77 + issue, patchset = upload.RealMain(args, data=diff) I don't quite understand this change, but ok. WebKitTools/Scripts/webkitpy/tool/commands/queues.py:329 + comment_text = "Rejecting patch %s from rietveld-queue." % patch.id() I still worry that this message is cryptic and folks won't understand it. We can iterate after landing though. WebKitTools/Scripts/webkitpy/tool/commands/stepsequence.py:39 + def _error_message_for_bug(tool, status_id, script_error): This isn't quite the right place for this method. StepSequenceErrorHandler is just an interface definition. It shouldn't have any implementations. We need to create an intermediate class that inherits from StepSequenceErrorHandler that the queues inherit from.
Ojan Vafai
Comment 25
2010-06-03 13:49:01 PDT
(In reply to
comment #24
)
> (From update of
attachment 56910
[details]
) > Minor nits below. You should feel free to either address them before landing or in a follow-up patch. > > WebKitTools/Scripts/webkitpy/common/net/rietveld.py:77 > + issue, patchset = upload.RealMain(args, data=diff) > I don't quite understand this change, but ok.
The original code was just dumb. It's stripping the first argument. But upload.py already does that. So we were doing it twice.
> WebKitTools/Scripts/webkitpy/tool/commands/queues.py:329 > + comment_text = "Rejecting patch %s from rietveld-queue." % patch.id() > I still worry that this message is cryptic and folks won't understand it. We can iterate after landing though.
Tried to make the text more meaningful.
> WebKitTools/Scripts/webkitpy/tool/commands/stepsequence.py:39 > + def _error_message_for_bug(tool, status_id, script_error): > This isn't quite the right place for this method. StepSequenceErrorHandler is just an interface definition. It shouldn't have any implementations. We need to create an intermediate class that inherits from StepSequenceErrorHandler that the queues inherit from.
Added a FIXME for now. I was going to just do this, but I got stuck on testing it.
Ojan Vafai
Comment 26
2010-06-03 13:49:44 PDT
Committed
r60635
: <
http://trac.webkit.org/changeset/60635
>
WebKit Review Bot
Comment 27
2010-06-03 14:45:17 PDT
http://trac.webkit.org/changeset/60635
might have broken GTK Linux 64-bit Release The following changes are on the blame list:
http://trac.webkit.org/changeset/60632
http://trac.webkit.org/changeset/60633
http://trac.webkit.org/changeset/60634
http://trac.webkit.org/changeset/60635
http://trac.webkit.org/changeset/60636
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug