Bug 1610330 [wpt PR 21271] - [LargestContentfulPaint] Add multiple redirect test, a=testonly

Automatic update from web-platform-tests
[LargestContentfulPaint] Add multiple redirect test

This CL adds the equivalent to element-timing/multiple-redirects for
LargestContentfulPaint. Since we use get-host-info instead of the .sub
commands, the .sub in the name is unneeded. This CL also updates the
expectations for disabled-OOR-CORS: the recent TAO tests will fail
without this flag enabled.

Bug: 1003943, 1042580
Change-Id: Ibc0b79d4c548fdbe9dc3eab6bd810f5a92425b35
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2010176
Reviewed-by: Yoav Weiss <yoavweiss@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Cr-Commit-Position: refs/heads/master@{#733408}

--

wpt-commits: 46a8fb0048edf5f8304e69cc463bea23be830e2b
wpt-pr: 21271


--HG--
rename : testing/web-platform/tests/element-timing/multiple-redirects-TAO.sub.html => testing/web-platform/tests/element-timing/multiple-redirects-TAO.html
This commit is contained in:
Nicolás Peña Moreno 2020-01-23 22:45:11 +00:00 committed by moz-wptsync-bot
parent 82bf31e33a
commit 474ae7e520
2 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,62 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>This test validates some Timing-Allow-Origin header usage in multiple redirects.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/largest-contentful-paint-helpers.js"></script>
<script src="/common/get-host-info.sub.js"></script>
</head>
<img id='image'></img>
<body>
<script>
async_test(t => {
assert_precondition(window.LargestContentfulPaint, "LargestContentfulPaint is not implemented");
let destUrl = get_host_info().HTTP_REMOTE_ORIGIN
+ '/element-timing/resources/multiple-redirects.py?';
destUrl += 'redirect_count=2';
// The final resource has '*' in TAO header, so will not affect the result.
destUrl += '&final_resource=/element-timing/resources/circle-tao.svg';
destUrl += '&origin1=' + get_host_info().UNAUTHENTICATED_ORIGIN;
destUrl += '&origin2=' + get_host_info().HTTP_REMOTE_ORIGIN;
const taoCombinations = [
{tao1: location.origin, tao2: location.origin, passes: false},
{tao1: location.origin, tao2: get_host_info().HTTP_REMOTE_ORIGIN, passes: false},
{tao1: location.origin, tao2: 'null', passes: true},
{tao1: location.origin, tao2: '*', passes: true},
{tao1: location.origin, tao2: location.origin, passes: false},
{tao1: 'null', tao2: '*', passes: false},
{tao1: '*', tao2: 'null', passes: true},
];
function getURL(item) {
return destUrl + '&tao1=' + item.tao1 + '&tao2=' + item.tao2;
}
function setImage(index) {
const image = document.getElementById('image');
const item = taoCombinations[index];
image.src = getURL(item);
}
let observedCount = 0;
let beforeLoad = performance.now();
new PerformanceObserver(t.step_func(entries => {
assert_equals(entries.getEntries().length, 1, 'There should be a single entry.');
const e = entries.getEntries()[0];
const item = taoCombinations[observedCount];
const url = getURL(item);
const options = item.passes ? [] : ['renderTimeIs0'];
checkImage(e, url, 'image', 200*200, beforeLoad, options);
observedCount++;
if (observedCount === taoCombinations.length) {
t.done();
} else {
beforeLoad = performance.now();
setImage(observedCount);
}
})).observe({entryTypes: ['largest-contentful-paint']});
setImage(0);
}, 'Cross-origin images with passing/failing TAO should/shouldn\'t have its renderTime set.');
</script>
</body>
</html>