
The methodology used to generate this CL is documented in https://crbug.com/1098010#c34. No-Try: true No-Presubmit: true Bug: 1098010 Change-Id: I8c0f009d16350271f07d8e5e561085822cc9dd27 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3895935 Owners-Override: Avi Drissman <avi@chromium.org> Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org> Auto-Submit: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/main@{#1047456}
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
// Copyright 2016 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "base/path_service.h"
|
|
#include "content/browser/web_contents/web_contents_impl.h"
|
|
#include "content/public/test/browser_test.h"
|
|
#include "content/public/test/content_browser_test.h"
|
|
#include "content/public/test/content_browser_test_utils.h"
|
|
#include "content/shell/browser/shell.h"
|
|
#include "content/test/content_browser_test_utils_internal.h"
|
|
|
|
namespace content {
|
|
|
|
// This browser test is aimed towards exercising the FileAPI bindings and
|
|
// the actual implementation that lives in the browser side.
|
|
class FileAPIBrowserTest : public ContentBrowserTest {
|
|
public:
|
|
FileAPIBrowserTest() {}
|
|
};
|
|
|
|
IN_PROC_BROWSER_TEST_F(FileAPIBrowserTest, FileInputChooserParams) {
|
|
base::FilePath file;
|
|
EXPECT_TRUE(base::PathService::Get(base::DIR_TEMP, &file));
|
|
file = file.AppendASCII("bar");
|
|
|
|
EXPECT_TRUE(NavigateToURL(shell(), GetTestUrl(".", "file_input.html")));
|
|
|
|
// Click on the <input type=file> element to launch the file upload picker.
|
|
{
|
|
base::RunLoop run_loop;
|
|
std::unique_ptr<FileChooserDelegate> delegate(
|
|
new FileChooserDelegate(file, run_loop.QuitClosure()));
|
|
shell()->web_contents()->SetDelegate(delegate.get());
|
|
EXPECT_TRUE(
|
|
ExecJs(shell(), "document.getElementById('fileinput').click();"));
|
|
run_loop.Run();
|
|
EXPECT_TRUE(delegate->params().default_file_name.empty());
|
|
}
|
|
|
|
// Click again, to verify what state was maintained and what was not.
|
|
// The renderer is expected not to specify a default file name; it's up to
|
|
// the browser to remember the last selected directory in the profile.
|
|
{
|
|
base::RunLoop run_loop;
|
|
std::unique_ptr<FileChooserDelegate> delegate(
|
|
new FileChooserDelegate(file, run_loop.QuitClosure()));
|
|
shell()->web_contents()->SetDelegate(delegate.get());
|
|
EXPECT_TRUE(
|
|
ExecJs(shell(), "document.getElementById('fileinput').click();"));
|
|
run_loop.Run();
|
|
EXPECT_TRUE(delegate->params().default_file_name.empty());
|
|
}
|
|
}
|
|
|
|
} // namespace content
|