Files
tubestation/testing/web-platform/tests/file-system-access/showOpenFilePicker-manual.https.html
Austin Sullivan 0f921b51a9 Bug 1689708 [wpt PR 27396] - Refactor native_file_system -> file_system_access in wpt, a=testonly
Automatic update from web-platform-tests
Refactor native_file_system -> file_system_access in wpt

Bug: 110509
Change-Id: I5c4c32e731e8aeecc9a2bfb5b60ee12ebb76f59a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2643042
Commit-Queue: Austin Sullivan <asully@chromium.org>
Reviewed-by: Marijn Kruisselbrink <mek@chromium.org>
Cr-Commit-Position: refs/heads/master@{#850164}

--

wpt-commits: 489679e4fccedcb37ae4d3e028b5d1a56adbc769
wpt-pr: 27396
2021-02-08 22:55:38 +00:00

63 lines
2.4 KiB
HTML

<!doctype html>
<meta charset=utf-8>
<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/test-helpers.js"></script>
<script>
promise_test(async t => {
await new Promise(resolve => {
window.addEventListener('DOMContentLoaded', resolve);
});
// Small delay to give chrome's test automation a chance to actually install
// itself.
await new Promise(resolve => step_timeout(resolve, 100));
await window.test_driver.bless(
'show a file picker.<br />Please select file-system-access/resources/data/testfile.txt');
const files = await self.showOpenFilePicker({
multiple: false, types: [
{ description: 'Text files', accept: { ' text/plain ': ['.txt'] } },
{ description: 'Images', accept: { ' image/* ': ['.jpg', '.jpeg', '.png'] } },
],
});
assert_true(Array.isArray(files));
assert_equals(files.length, 1);
assert_true(files[0] instanceof FileSystemHandle);
assert_true(files[0] instanceof FileSystemFileHandle);
assert_equals(files[0].kind, "file");
assert_equals(files[0].name, 'testfile.txt');
assert_equals(await (await files[0].getFile()).text(), 'Hello World!\n');
promise_test(async t => {
assert_equals(await files[0].queryPermission(), 'granted');
}, 'showOpenFilePicker returns correct permissions');
}, 'showOpenFilePicker works');
promise_test(async t => {
await window.test_driver.bless(
'show a file picker.<br />Please select file-system-access/resources/data/testfile.txt');
const files = await self.showOpenFilePicker({
multiple: false,
startIn: null,
types: [
{ description: 'Text files', accept: { ' text/plain ': ['.txt'] } },
{ description: 'Images', accept: { ' image/* ': ['.jpg', '.jpeg', '.png'] } },
],
});
assert_true(Array.isArray(files));
assert_equals(files.length, 1);
assert_true(files[0] instanceof FileSystemHandle);
assert_true(files[0] instanceof FileSystemFileHandle);
assert_equals(files[0].kind, "file");
assert_equals(files[0].name, 'testfile.txt');
assert_equals(await (await files[0].getFile()).text(), 'Hello World!\n');
}, 'showOpenFilePicker does not fail when starting directory is null');
</script>