Closed
Bug 1373745
Opened 9 years ago
Closed 8 years ago
Fix structured logger problems in reftest
Categories
(Testing :: Reftest, enhancement)
Testing
Reftest
Tracking
(firefox-esr52 unaffected, firefox55 unaffected, firefox56 unaffected, firefox57 unaffected, firefox58 fixed)
RESOLVED
FIXED
mozilla58
| Tracking | Status | |
|---|---|---|
| firefox-esr52 | --- | unaffected |
| firefox55 | --- | unaffected |
| firefox56 | --- | unaffected |
| firefox57 | --- | unaffected |
| firefox58 | --- | fixed |
People
(Reporter: ahal, Assigned: ahal)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
Bug 1372565 fixes an issue where mozlog wasn't enforcing the test log protocol (things like logging a test_end without a test_start). In my try pushes there, I discovered reftest can be guilty of doing this (happens in reftest-sanity somewhere).
We'll need to fix that before we can land the other bug.
| Assignee | ||
Updated•9 years ago
|
Assignee: nobody → ahalberstadt
Status: NEW → ASSIGNED
| Comment hidden (mozreview-request) |
| Assignee | ||
Comment 2•8 years ago
|
||
This looks good on try:
https://treeherder.mozilla.org/#/jobs?repo=try&revision=771bb67cdb28045bc3a110a7523cd87965f414e8
The reftest-selftest error was fixed here:
https://treeherder.mozilla.org/#/jobs?repo=try&revision=f2b2fb82d5722bd6f00871ad86529a65e3f0e0ad
At least with the selftests, I'm somewhat confident this isn't horribly breaking everything.
Comment 3•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8912363 [details]
Bug 1373745 - Fix structured logging problems in reftest,
https://reviewboard.mozilla.org/r/183688/#review188918
a few small things, overall this is looking great and the unittests are great to see.
::: layout/tools/reftest/output.py:60
(Diff revision 1)
> + test = data['test']
> +
> + status_msg = self._format_status(data)
> + output_text = "%s | %s | %s" % (status_msg, test, data.get("subtest", "unknown test"))
> + if data.get('message'):
> + output_text = "%s | %s" % (output_text, data['message'])
why not |output_text += " | %s" % data['message']|
::: layout/tools/reftest/output.py:87
(Diff revision 1)
> elif len(screenshots) == 1:
> output_text += "\nREFTEST IMAGE: data:image/png;base64,%s" % image_1
>
> - output_text += "\nREFTEST TEST-END | %s" % test
> + if output_text:
> + output_text += "\nREFTEST "
> + output_text += "TEST-END | %s" % test
I don't understand this, if check |if output_text|, if that doesn't exist, then line 87 will fail.
Attachment #8912363 -
Flags: review?(jmaher) → review-
| Assignee | ||
Comment 4•8 years ago
|
||
| mozreview-review-reply | ||
Comment on attachment 8912363 [details]
Bug 1373745 - Fix structured logging problems in reftest,
https://reviewboard.mozilla.org/r/183688/#review188918
> why not |output_text += " | %s" % data['message']|
Yeah, I guess I used this form down below. Should be consistent, I'll change this.
> I don't understand this, if check |if output_text|, if that doesn't exist, then line 87 will fail.
output_text is initialized to "" on line 68 so line 87 will work either way.
This is unrelated to your comment, but I though you might appreciate a bit of extra context here. Before this patch, the reftest harness would always use "test_end" to log status messages. So something like:
{ "action": "test_end", "status": "PASS", ... }
Would get formatted into:
REFTEST TEST-PASS | test_foo.html == test_bar.html
REFTEST TEST-END | test_foo.html == test_bar.html
But now, the status message is (usually) handled by the "test_status" action. So now we have:
{ "action": "test_status", "status": "PASS", ... }
{ "action": "test_end", "status": "OK", ... }
The formatter is trying to make sure that both of these cases result in a log that looks the same. That's why there's now a `if status != "OK":` condition near the top of this function.
| Comment hidden (mozreview-request) |
Comment 6•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8912363 [details]
Bug 1373745 - Fix structured logging problems in reftest,
https://reviewboard.mozilla.org/r/183688/#review189202
thanks for the fix and the explanation and backstory.
Attachment #8912363 -
Flags: review?(jmaher) → review+
Pushed by ahalberstadt@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/8189e90aad8e
Fix structured logging problems in reftest, r=jmaher
Comment 8•8 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox58:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla58
Updated•8 years ago
|
status-firefox55:
--- → unaffected
status-firefox56:
--- → unaffected
status-firefox57:
--- → unaffected
status-firefox-esr52:
--- → unaffected
You need to log in
before you can comment on or make changes to this bug.
Description
•