forked from mirrors/gecko-dev
Automatic update from web-platform-testsNetwork Error Logging: Add web platform tests This adds web-platform-tests for Network Error Logging. They should be suitable to upstream into the cross-platform WPT repo. Bug: 748549 Change-Id: I24098aeec8488c34a5f9239309264e9534dca6e4 Reviewed-on: https://chromium-review.googlesource.com/1106518 Reviewed-by: Peter Beverloo <peter@chromium.org> Reviewed-by: Philip Jägenstedt <foolip@chromium.org> Commit-Queue: Douglas Creager <dcreager@chromium.org> Cr-Commit-Position: refs/heads/master@{#584093} -- wpt-commits: d0b86dfcab07829407425bad98287757818f96c5 wpt-pr: 11758
42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>
|
|
Test that NEL reports are sent for HTTP errors
|
|
</title>
|
|
<script src='/resources/testharness.js'></script>
|
|
<script src='/resources/testharnessreport.js'></script>
|
|
<script src='./support/nel.sub.js'></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
nel_test(async t => {
|
|
// Make a request to a resource whose response headers include a NEL
|
|
// policy.
|
|
await fetchResourceWithBasicPolicy();
|
|
// Make a request to another resource on the same domain. This resource
|
|
// doesn't exist, so the server should return a 404.
|
|
await fetchMissingResource();
|
|
// The 404 won't contain its own NEL policy, but the policy we received in
|
|
// the first request should cover the second request, too, since they're
|
|
// at the same origin, so the collector should have received a report
|
|
// about it.
|
|
assert_true(await reportExists({
|
|
url: getURLForMissingResource(),
|
|
user_agent: navigator.userAgent,
|
|
type: "network-error",
|
|
body: {
|
|
method: "GET",
|
|
sampling_fraction: 1.0,
|
|
status_code: 404,
|
|
phase: "application",
|
|
type: "http.error",
|
|
},
|
|
metadata: {
|
|
content_type: "application/reports+json",
|
|
},
|
|
}));
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|