Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(656)

Unified Diff: content/browser/fileapi/fileapi_browsertest.cc

Issue 2446743002: Remove WebFileChooserParams::initialValue (Closed)
Patch Set: Split test into own file; const sprinkles Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/fileapi/fileapi_browsertest.cc
diff --git a/content/browser/fileapi/fileapi_browsertest.cc b/content/browser/fileapi/fileapi_browsertest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e50f1569a1715927bcc3f23d4bcc96d707e159fa
--- /dev/null
+++ b/content/browser/fileapi/fileapi_browsertest.cc
@@ -0,0 +1,53 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// 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/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(PathService::Get(base::DIR_TEMP, &file));
+ file = file.AppendASCII("bar");
+
+ NavigateToURL(shell(), GetTestUrl(".", "file_input.html"));
+
+ // Click on the <input type=file> element to launch the file upload picker.
+ {
+ std::unique_ptr<FileChooserDelegate> delegate(
+ new FileChooserDelegate(file));
+ shell()->web_contents()->SetDelegate(delegate.get());
+ EXPECT_TRUE(ExecuteScript(shell(),
+ "document.getElementById('fileinput').click();"));
+ EXPECT_TRUE(delegate->file_chosen());
+ 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.
+ {
+ std::unique_ptr<FileChooserDelegate> delegate(
+ new FileChooserDelegate(file));
+ shell()->web_contents()->SetDelegate(delegate.get());
+ EXPECT_TRUE(ExecuteScript(shell(),
+ "document.getElementById('fileinput').click();"));
+ EXPECT_TRUE(delegate->file_chosen());
+ EXPECT_TRUE(delegate->params().default_file_name.empty());
+ }
+}
+
+} // namespace content
« no previous file with comments | « content/browser/fileapi/file_system_browsertest.cc ('k') | content/renderer/pepper/pepper_file_chooser_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698