WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
84887
[Navigation Timing] Import the W3C Navigation Timing test suite
https://bugs.webkit.org/show_bug.cgi?id=84887
Summary
[Navigation Timing] Import the W3C Navigation Timing test suite
James Simonsen
Reported
2012-04-25 12:49:52 PDT
As discussed at the WebKit committers meeting, we should rely on upstream W3C tests instead of maintaining our own tests. Importing these tests should be an automated process. We want to build up scripts that can import all types of W3C tests. The script can pull from a local checkout of the W3 repository, so need to automate that. The imported tests should end up in http/tests/NavigationTiming/imported-w3c or something similar. For Navigation Timing specifically, there are a few things to watch out for: - Make sure the subresource paths are mapped correctly, even on http tests. - Make sure that the two W3 hosts map to localhost and 127.0.0.1 correctly so that we can test cross-origin. - Make sure they're run as text tests and not pixel tests. May need to tweak testharness.js or something. Assuming this is done, we should be able to get rid of the webtiming-*.html tests in LayoutTests, since I believe we upstreamed all of them.
Attachments
Patch
(302.27 KB, patch)
2012-06-26 15:52 PDT
,
James Simonsen
no flags
Details
Formatted Diff
Diff
Patch
(304.17 KB, patch)
2012-07-11 19:33 PDT
,
James Simonsen
no flags
Details
Formatted Diff
Diff
Patch for landing
(304.25 KB, patch)
2012-07-12 14:38 PDT
,
James Simonsen
no flags
Details
Formatted Diff
Diff
Patch for landing
(304.25 KB, patch)
2012-07-12 15:04 PDT
,
James Simonsen
webkit.review.bot
: commit-queue-
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
James Simonsen
Comment 1
2012-06-26 15:52:57 PDT
Created
attachment 149620
[details]
Patch
James Simonsen
Comment 2
2012-06-26 15:59:03 PDT
@jacobg: Can you take at the testharnessreport.js change? @dpranke: Can you look at the python script? @mjs: This is what we'd discussed and started hacking on at the committers meeting (though this is from the webperf WG instead of CSS). Are you happy with the result? Any preference on where this should go? @tonyg: Can you review the results?
Dirk Pranke
Comment 3
2012-06-26 16:48:36 PDT
Comment on
attachment 149620
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=149620&action=review
the python file mostly looks fine; there's one edge case you need to check for (I think) and one nit about argument names :).
> Tools/Scripts/import-w3c-performance-wg-tests:32 > +import sys
There's a bunch of infrastructure in webkitpy that could be used here, but as we discussed in person, I'm not sure there's much value in doing so. In particular, much of the infrastructure is designed so that it's easier to write tests, but I wouldn't bother to write tests for this, since it'll only be run occasionally, manually, and with manual inspection of the results. I'm just noting this so that others don't have the same thought and wonder ...
> Tools/Scripts/import-w3c-performance-wg-tests:35 > + print 'USAGE: %s path_to_webperf path_to_WebKit'
Maybe 'path_to_w3c_checkout_root' 'path_to_webkit_checkout_root' ?
> Tools/Scripts/import-w3c-performance-wg-tests:60 > + os.mkdir(os.path.join(destination_directory, root, dirname))
You need to trap exceptions here in case the directories already exist.
Jacob Goldstein
Comment 4
2012-06-27 08:57:03 PDT
Changes to testharnessreport.js look good.
Tony Gentilcore
Comment 5
2012-07-11 17:30:01 PDT
Comment on
attachment 149620
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=149620&action=review
A few minor suggestions, everything else lgtm
> Tools/Scripts/import-w3c-performance-wg-tests:30 > +
This file could use more usage explanation, probably in the form of a better USAGE output or file level comment. For instance, I'm not sure what to use for the path_to_webperf. Explaining where to grab that repo would be nice.
> Tools/Scripts/import-w3c-performance-wg-tests:47 > +replacements = {
Even though you've mentioned it in the bug, I think a comment would be nice explaining why these replacements are necessary. Also, this really feels more like it should be a list of tuples rather than a dict so that the author can assume replacements happen in a certain order.
> Tools/Scripts/import-w3c-performance-wg-tests:49 > + '\'www.w3c-test.org': '\'localhost:8000',
The single tic is a little brittle, but at the same time it is hard to know exactly how these urls might look in the future. So what about adding something like this at the point the file is written: assert 'w3c-test.org' not in line, 'Imported test must not depend on live site'
> LayoutTests/http/tests/resources/testharnessreport.js:1 > +/*
Like we talked about offline, I think everything imported should live in a w3c directory rather than intermingle. Bonus points for a README or comment on imported items that warns to use the import script rather than modify in place.
> LayoutTests/http/tests/w3c/webperf/approved/navigation-timing/html/test_timing_xserver_redirect.html:13 > + "Starting document.location.hostname is correct (w3c-test.org)": {},
Is it okay that this didn't get replaced?
> LayoutTests/resources/testharnessreport.js:16 > +if (self.layoutTestController) {
This just undoes
https://bugs.webkit.org/show_bug.cgi?id=89182
, should probably check w/ tkent about that.
James Simonsen
Comment 6
2012-07-11 19:33:30 PDT
Created
attachment 151848
[details]
Patch
James Simonsen
Comment 7
2012-07-11 19:34:28 PDT
I have addressed all of Dirk's and Tony's feedback. (In reply to
comment #5
)
> This just undoes
https://bugs.webkit.org/show_bug.cgi?id=89182
, should probably check w/ tkent about that.
I've reverted that.
WebKit Review Bot
Comment 8
2012-07-12 14:29:01 PDT
Comment on
attachment 151848
[details]
Patch Rejecting
attachment 151848
[details]
from commit-queue. Failed to run "['/mnt/git/webkit-commit-queue/Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '-..." exit_code: 2 Last 500 characters of output: kipped patching file LayoutTests/platform/win/Skipped patching file LayoutTests/platform/wincairo/Skipped patching file LayoutTests/resources/testharness.css patching file LayoutTests/resources/testharnessreport.js Hunk #2 FAILED at 73. 1 out of 2 hunks FAILED -- saving rejects to file LayoutTests/resources/testharnessreport.js.rej Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', u'--force', u'--reviewer', u'Tony Genti..." exit_code: 1 cwd: /mnt/git/webkit-commit-queue/ Full output:
http://queues.webkit.org/results/13202830
James Simonsen
Comment 9
2012-07-12 14:38:43 PDT
Created
attachment 152065
[details]
Patch for landing
WebKit Review Bot
Comment 10
2012-07-12 14:55:09 PDT
Comment on
attachment 152065
[details]
Patch for landing Rejecting
attachment 152065
[details]
from commit-queue. Failed to run "['/mnt/git/webkit-commit-queue/Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '-..." exit_code: 2 Last 500 characters of output: file LayoutTests/platform/mac/Skipped patching file LayoutTests/platform/win/Skipped patching file LayoutTests/platform/wincairo/Skipped patching file LayoutTests/resources/testharness.css patching file LayoutTests/resources/testharnessreport.js Hunk #2 FAILED at 73. 1 out of 2 hunks FAILED -- saving rejects to file LayoutTests/resources/testharnessreport.js.rej Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', u'--force']" exit_code: 1 cwd: /mnt/git/webkit-commit-queue/ Full output:
http://queues.webkit.org/results/13198947
James Simonsen
Comment 11
2012-07-12 15:04:47 PDT
Created
attachment 152072
[details]
Patch for landing
WebKit Review Bot
Comment 12
2012-07-12 15:25:01 PDT
Comment on
attachment 152072
[details]
Patch for landing Rejecting
attachment 152072
[details]
from commit-queue. Failed to run "['/mnt/git/webkit-commit-queue/Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '-..." exit_code: 2 Last 500 characters of output: file LayoutTests/platform/mac/Skipped patching file LayoutTests/platform/win/Skipped patching file LayoutTests/platform/wincairo/Skipped patching file LayoutTests/resources/testharness.css patching file LayoutTests/resources/testharnessreport.js Hunk #2 FAILED at 73. 1 out of 2 hunks FAILED -- saving rejects to file LayoutTests/resources/testharnessreport.js.rej Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', u'--force']" exit_code: 1 cwd: /mnt/git/webkit-commit-queue/ Full output:
http://queues.webkit.org/results/13199877
Dirk Pranke
Comment 13
2012-07-12 16:30:57 PDT
Committed
r122528
: <
http://trac.webkit.org/changeset/122528
>
Adam Barth
Comment 14
2012-07-12 18:27:49 PDT
http/tests/w3c/webperf/approved/navigation-timing/html5/test_performance_attributes_exist_in_object.html seems to be very flaky.
Adam Barth
Comment 15
2012-07-12 18:29:26 PDT
What is the difference between the html and html5 directories?
James Simonsen
Comment 16
2012-07-12 19:16:48 PDT
(In reply to
comment #15
)
> What is the difference between the html and html5 directories?
I have no idea. I just copied it straight from upstream. I assumed there was something different about them. Diffing them yields no differences. I will modify the import script to ignore one. There's no reason to run the same tests twice. (In reply to
comment #14
)
> http/tests/w3c/webperf/approved/navigation-timing/html5/test_performance_attributes_exist_in_object.html seems to be very flaky.
I'll mark it as such. It seems to pass reliably on the W3C server.
Adam Barth
Comment 17
2012-07-12 20:10:34 PDT
Thanks!
Adam Barth
Comment 18
2012-07-13 09:12:42 PDT
https://bugs.webkit.org/show_bug.cgi?id=91224
is an example of that test flaking out.
Adam Barth
Comment 19
2012-07-13 09:13:17 PDT
http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=http%2Ftests%2Fw3c%2Fwebperf%2Fapproved%2Fnavigation-timing%2Fhtml%2Ftest_performance_attributes_exist_in_object.html
Adam Barth
Comment 20
2012-07-13 09:17:10 PDT
Marked as flaky in
http://trac.webkit.org/changeset/122591
Adam Barth
Comment 21
2012-07-13 09:19:38 PDT
... and
http://trac.webkit.org/changeset/122592
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