OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "base/file_path.h" | |
6 #include "base/file_util.h" | |
7 #include "base/message_loop.h" | |
8 #include "base/string16.h" | |
9 #include "base/values.h" | |
10 #include "chrome/browser/browser_process.h" | |
11 #include "chrome/browser/prefs/browser_prefs.h" | |
12 #include "chrome/browser/prefs/pref_service.h" | |
13 #include "chrome/browser/ui/browser.h" | |
14 #include "chrome/browser/ui/select_file_dialog.h" | |
15 #include "chrome/common/pref_names.h" | |
16 #include "chrome/test/base/testing_browser_process.h" | |
17 #include "chrome/test/base/testing_pref_service.h" | |
18 #include "content/public/test/test_browser_thread.h" | |
19 #include "testing/gtest/include/gtest/gtest.h" | |
20 | |
21 #if defined(USE_AURA) | |
22 // http://crbug.com/105200 | |
23 #define MAYBE_ExpectAsynchronousListenerCall DISABLED_ExpectAsynchronousListener
Call | |
24 #else | |
25 #define MAYBE_ExpectAsynchronousListenerCall ExpectAsynchronousListenerCall | |
26 #endif | |
27 | |
28 using content::BrowserThread; | |
29 | |
30 class FileSelectionUser : public SelectFileDialog::Listener { | |
31 public: | |
32 FileSelectionUser() | |
33 : file_selection_initialisation_in_progress(false) { | |
34 } | |
35 | |
36 ~FileSelectionUser() { | |
37 if (select_file_dialog_.get()) | |
38 select_file_dialog_->ListenerDestroyed(); | |
39 } | |
40 | |
41 void StartFileSelection() { | |
42 CHECK(!select_file_dialog_.get()); | |
43 select_file_dialog_ = SelectFileDialog::Create(this); | |
44 | |
45 const FilePath file_path; | |
46 const string16 title=string16(); | |
47 | |
48 file_selection_initialisation_in_progress = true; | |
49 select_file_dialog_->SelectFile(SelectFileDialog::SELECT_OPEN_FILE, | |
50 title, | |
51 file_path, | |
52 NULL, | |
53 0, | |
54 FILE_PATH_LITERAL(""), | |
55 NULL, | |
56 NULL, | |
57 NULL); | |
58 file_selection_initialisation_in_progress = false; | |
59 } | |
60 | |
61 // SelectFileDialog::Listener implementation. | |
62 virtual void FileSelected(const FilePath& path, | |
63 int index, void* params){ | |
64 ASSERT_FALSE(file_selection_initialisation_in_progress); | |
65 } | |
66 virtual void MultiFilesSelected( | |
67 const std::vector<FilePath>& files, | |
68 void* params) { | |
69 ASSERT_FALSE(file_selection_initialisation_in_progress); | |
70 } | |
71 virtual void FileSelectionCanceled(void* params) { | |
72 ASSERT_FALSE(file_selection_initialisation_in_progress); | |
73 } | |
74 | |
75 private: | |
76 scoped_refptr<SelectFileDialog> select_file_dialog_; | |
77 | |
78 bool file_selection_initialisation_in_progress; | |
79 }; | |
80 | |
81 typedef testing::Test FileSelectionDialogTest; | |
82 | |
83 // Tests if SelectFileDialog::SelectFile returns asynchronously with | |
84 // file-selection dialogs disabled by policy. | |
85 TEST_F(FileSelectionDialogTest, MAYBE_ExpectAsynchronousListenerCall) { | |
86 MessageLoopForUI message_loop; | |
87 content::TestBrowserThread ui_thread(BrowserThread::UI, &message_loop); | |
88 | |
89 ScopedTestingLocalState local_state( | |
90 static_cast<TestingBrowserProcess*>(g_browser_process)); | |
91 | |
92 scoped_ptr<FileSelectionUser> file_selection_user(new FileSelectionUser()); | |
93 | |
94 // Disallow file-selection dialogs. | |
95 local_state.Get()->SetManagedPref( | |
96 prefs::kAllowFileSelectionDialogs, | |
97 Value::CreateBooleanValue(false)); | |
98 | |
99 file_selection_user->StartFileSelection(); | |
100 } | |
OLD | NEW |