зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1743513 [wpt PR 31785] - Add wpt tests for custom clipboard formats., a=testonly
Automatic update from web-platform-tests Add wpt tests for custom clipboard formats. Added test to read/write unsanitized content for well-known formats. Bug: 106449 Change-Id: I266525d48263066746b3c804400f970e6afb5a7e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3292370 Commit-Queue: Anupam Snigdha <snianu@microsoft.com> Reviewed-by: Victor Costan <pwnall@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/main@{#949303} -- wpt-commits: 30fac55fa8baa0f1abf98365947dc48a92ce30e0 wpt-pr: 31785
This commit is contained in:
Родитель
4937435ceb
Коммит
90b330158f
|
@ -12,6 +12,8 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
promise_test(async t => {
|
promise_test(async t => {
|
||||||
|
await test_driver.set_permission({name: 'clipboard-read'}, 'granted');
|
||||||
|
await test_driver.set_permission({name: 'clipboard-write'}, 'granted');
|
||||||
const format1 = 'application/x-custom-format-clipboard-test-format-1';
|
const format1 = 'application/x-custom-format-clipboard-test-format-1';
|
||||||
const format2 = 'application/x-custom-format-clipboard-test-format-2';
|
const format2 = 'application/x-custom-format-clipboard-test-format-2';
|
||||||
const blobInput1 = new Blob(['input data 1'], {type: format1});
|
const blobInput1 = new Blob(['input data 1'], {type: format1});
|
||||||
|
@ -49,8 +51,3 @@ promise_test(async t => {
|
||||||
assert_equals(data2, 'input data 2');
|
assert_equals(data2, 'input data 2');
|
||||||
}, 'Verify write and read clipboard given 2 platform-neutral custom format inputs');
|
}, 'Verify write and read clipboard given 2 platform-neutral custom format inputs');
|
||||||
</script>
|
</script>
|
||||||
<p>
|
|
||||||
This is a manual test because it writes/reads to the shared system
|
|
||||||
clipboard and thus cannot be run async with other tests that might interact
|
|
||||||
with the clipboard.
|
|
||||||
</p>
|
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
<!doctype html>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Async Clipboard unsanitized HTML write -> Async Clipboard unsanitized HTML read test</title>
|
||||||
|
<link rel="help" href="https://w3c.github.io/clipboard-apis/#async-clipboard-api">
|
||||||
|
<body>Body needed for test_driver.click()</body>
|
||||||
|
<script src="/resources/testharness.js"></script>
|
||||||
|
<script src="/resources/testharnessreport.js"></script>
|
||||||
|
<script src="/resources/testdriver.js"></script>
|
||||||
|
<script src="/resources/testdriver-vendor.js"></script>
|
||||||
|
<script src="resources/user-activation.js"></script>
|
||||||
|
<script>
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
// This function removes extra spaces between tags in html. For example, the
|
||||||
|
// following html: "<p> Hello </p> <body> World </body>" would turn into this
|
||||||
|
// html: "<p> Hello </p> <body> World </body>"
|
||||||
|
// We remove the extra spaces because in html they are considered equivalent,
|
||||||
|
// but when we are comparing for equality the spaces make a difference.
|
||||||
|
function reformatHtml(html) {
|
||||||
|
const parser = new DOMParser();
|
||||||
|
const htmlString =
|
||||||
|
parser.parseFromString(html, 'text/html').documentElement.innerHTML;
|
||||||
|
const reformattedString = htmlString.replace(/\>\s*\</g, '> <');
|
||||||
|
return reformattedString;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Writes a payload with custom content and checks to ensure the correct data
|
||||||
|
// was written successfully.
|
||||||
|
promise_test(async t => {
|
||||||
|
await test_driver.set_permission({name: 'clipboard-read'}, 'granted');
|
||||||
|
await test_driver.set_permission({name: 'clipboard-write'}, 'granted');
|
||||||
|
|
||||||
|
// Create and write unsanitized version of standard HTML and custom formats.
|
||||||
|
const format1 = 'text/html';
|
||||||
|
const format2 = 'application/x-custom-format-clipboard-test-format-2';
|
||||||
|
const textInput = '<style>p {color:blue}</style><p>Hello World</p>';
|
||||||
|
const blobInput1 = new Blob([textInput], {type: 'text/html'});
|
||||||
|
const blobInput2 = new Blob(['input data 2'], {type: format2});
|
||||||
|
const clipboardItemInput = new ClipboardItem(
|
||||||
|
{[format1]: blobInput1, [format2]: blobInput2},
|
||||||
|
{unsanitized: [format1, format2]});
|
||||||
|
await waitForUserActivation();
|
||||||
|
await navigator.clipboard.write([clipboardItemInput]);
|
||||||
|
|
||||||
|
// Read unsanitized version of HTML format.
|
||||||
|
await waitForUserActivation();
|
||||||
|
const clipboardItems = await navigator.clipboard.read(
|
||||||
|
{unsanitized: [format1, format2]});
|
||||||
|
|
||||||
|
assert_equals(clipboardItems.length, 1);
|
||||||
|
const clipboardItem = clipboardItems[0];
|
||||||
|
assert_true(clipboardItem instanceof ClipboardItem);
|
||||||
|
|
||||||
|
const blobOutput1 = await clipboardItem.getType(format1);
|
||||||
|
assert_equals(blobOutput1.type, format1);
|
||||||
|
const data1 = await (new Response(blobOutput1)).text();
|
||||||
|
const outputHtml = reformatHtml(data1);
|
||||||
|
const inputHtml = reformatHtml(textInput);
|
||||||
|
assert_equals(outputHtml, inputHtml);
|
||||||
|
|
||||||
|
const blobOutput2 = await clipboardItem.getType(format2);
|
||||||
|
assert_equals(blobOutput2.type, format2);
|
||||||
|
const data2 = await (new Response(blobOutput2)).text();
|
||||||
|
assert_equals(data2, 'input data 2');
|
||||||
|
}, 'Verify write and read unsanitized content to the clipboard given text/html format as input');
|
||||||
|
</script>
|
|
@ -0,0 +1,49 @@
|
||||||
|
<!doctype html>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Async Clipboard unsanitized write -> Async Clipboard unsanitized read test</title>
|
||||||
|
<link rel="help" href="https://w3c.github.io/clipboard-apis/#async-clipboard-api">
|
||||||
|
<body>Body needed for test_driver.click()</body>
|
||||||
|
<script src="/resources/testharness.js"></script>
|
||||||
|
<script src="/resources/testharnessreport.js"></script>
|
||||||
|
<script src="/resources/testdriver.js"></script>
|
||||||
|
<script src="/resources/testdriver-vendor.js"></script>
|
||||||
|
<script src="resources/user-activation.js"></script>
|
||||||
|
<script>
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
// Writes a payload with custom content and checks to ensure the correct data
|
||||||
|
// was written successfully.
|
||||||
|
promise_test(async t => {
|
||||||
|
await test_driver.set_permission({name: 'clipboard-read'}, 'granted');
|
||||||
|
await test_driver.set_permission({name: 'clipboard-write'}, 'granted');
|
||||||
|
|
||||||
|
const dataToWrite = 'Test text.';
|
||||||
|
const format = 'text/plain';
|
||||||
|
|
||||||
|
const blobInput = new Blob([dataToWrite], {type: format});
|
||||||
|
// Blob types are automatically converted to lower-case.
|
||||||
|
assert_equals(blobInput.type, format.toLowerCase());
|
||||||
|
const clipboardItemInput = new ClipboardItem(
|
||||||
|
{[format]: blobInput}, {unsanitized: [format]});
|
||||||
|
await waitForUserActivation();
|
||||||
|
await navigator.clipboard.write([clipboardItemInput]);
|
||||||
|
|
||||||
|
// Items should be readable on a system clipboard after custom format write.
|
||||||
|
await waitForUserActivation();
|
||||||
|
const clipboardItems = await navigator.clipboard.read(
|
||||||
|
{unsanitized: [format]});
|
||||||
|
assert_equals(clipboardItems.length, 1);
|
||||||
|
const clipboardItem = clipboardItems[0];
|
||||||
|
assert_true(clipboardItem instanceof ClipboardItem);
|
||||||
|
|
||||||
|
const blobOutput = await clipboardItem.getType(format);
|
||||||
|
assert_equals(blobOutput.type, format);
|
||||||
|
const data = await (new Response(blobOutput)).text();
|
||||||
|
assert_equals(data, dataToWrite);
|
||||||
|
|
||||||
|
// These examples use native text formats, so these formats should be
|
||||||
|
// accessible as text.
|
||||||
|
const textOutput = await navigator.clipboard.readText();
|
||||||
|
assert_equals(textOutput, dataToWrite);
|
||||||
|
}, 'Verify write and read unsanitized content to the clipboard given standard format as input');
|
||||||
|
</script>
|
Загрузка…
Ссылка в новой задаче