chromium/third_party/blink/web_tests/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/access-reporting-openee-rp-ro.https.html

<!doctype html>
<title>
  COOP reports are sent to the openee when the openee used COOP-RO:
  restrict-properties and its same-origin opener tries to access it.
</title>
<meta name=timeout content=long>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/common/get-host-info.sub.js></script>
<script src="/common/utils.js"></script>
<script src="/common/dispatcher/dispatcher.js"></script>
<script src="/html/cross-origin-opener-policy/reporting/resources/reporting-common.js"></script>
<script src="/html/cross-origin-opener-policy/reporting/resources/try-access.js"></script>
<script>

const directory = "/html/cross-origin-opener-policy";
const same_origin = get_host_info().HTTPS_ORIGIN;

promise_test(async t => {
  const report_token = token();
  const openee_token = token();
  const opener_token = token(); // The current test window.

  const opener_url = location.href;

  const reportTo = reportToHeaders(report_token);
  const openee_url = same_origin + executor_path + reportTo.header +
    reportTo.coopReportOnlyRestrictPropertiesHeader +
    `&uuid=${openee_token}`;

  const openee = window.open(openee_url);
  t.add_cleanup(() => send(openee_token, "window.close()"))

  // 1. Make sure the new document to be loaded.
  send(openee_token, `
    send("${opener_token}", "Ready");
  `);
  let reply = await receive(opener_token);
  assert_equals(reply, "Ready");

  // 2. Try to access the openee. A report is sent, because of COOP-RO:
  // restrict-properties.
  tryAccess(openee);

  // 3. Check a report is sent to the openee.
  let report =
    await receiveReport(report_token, "access-to-coop-page-from-opener");
  assert_equals(report.type, "coop");
  assert_equals(report.url, openee_url.replace(/"/g, '%22'));
  assert_equals(report.body.disposition, "reporting");
  assert_equals(report.body.effectivePolicy, "restrict-properties");
  assert_equals(report.body.property, "blur");
  assert_source_location_missing(report);
  assert_equals(report.body.openerURL, opener_url);
  assert_equals(report.body.openeeURL, undefined);
  assert_equals(report.body.otherDocumentURL, undefined);
  assert_equals(report.body.referrer, opener_url);
  assert_equals(report.body.initialPopupURL, undefined);
}, "access-reporting-openee-rp-ro");

</script>