1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
// Copyright (c) 2012 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 <vector>
#include "base/bind.h"
#include "base/callback.h"
#include "base/command_line.h"
#include "base/files/file_util.h"
#include "base/memory/ref_counted.h"
#include "base/path_service.h"
#include "base/prefs/pref_service.h"
#include "base/process/kill.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/plugins/plugin_prefs.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/browser_child_process_host_iterator.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/child_process_data.h"
#include "content/public/browser/plugin_service.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_constants.h"
#include "content/public/common/content_paths.h"
#include "content/public/common/process_type.h"
#include "content/public/common/webplugininfo.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/test_utils.h"
#include "net/base/filename_util.h"
#if defined(OS_WIN)
#include "ui/aura/window.h"
#include "ui/aura/window_tree_host.h"
#endif
using content::BrowserThread;
namespace {
class CallbackBarrier : public base::RefCountedThreadSafe<CallbackBarrier> {
public:
explicit CallbackBarrier(const base::Closure& target_callback)
: target_callback_(target_callback),
outstanding_callbacks_(0),
did_enable_(true) {
}
base::Callback<void(bool)> CreateCallback() {
outstanding_callbacks_++;
return base::Bind(&CallbackBarrier::MayRunTargetCallback, this);
}
private:
friend class base::RefCountedThreadSafe<CallbackBarrier>;
~CallbackBarrier() {
EXPECT_TRUE(target_callback_.is_null());
}
void MayRunTargetCallback(bool did_enable) {
EXPECT_GT(outstanding_callbacks_, 0);
did_enable_ = did_enable_ && did_enable;
if (--outstanding_callbacks_ == 0) {
EXPECT_TRUE(did_enable_);
target_callback_.Run();
target_callback_.Reset();
}
}
base::Closure target_callback_;
int outstanding_callbacks_;
bool did_enable_;
};
} // namespace
class ChromePluginTest : public InProcessBrowserTest {
protected:
ChromePluginTest() {}
static GURL GetURL(const char* filename) {
base::FilePath path;
PathService::Get(content::DIR_TEST_DATA, &path);
path = path.AppendASCII("plugin").AppendASCII(filename);
CHECK(base::PathExists(path));
return net::FilePathToFileURL(path);
}
static void LoadAndWait(Browser* window, const GURL& url, bool pass) {
content::WebContents* web_contents =
window->tab_strip_model()->GetActiveWebContents();
base::string16 expected_title(
base::ASCIIToUTF16(pass ? "OK" : "plugin_not_found"));
content::TitleWatcher title_watcher(web_contents, expected_title);
title_watcher.AlsoWaitForTitle(base::ASCIIToUTF16("FAIL"));
title_watcher.AlsoWaitForTitle(base::ASCIIToUTF16(
pass ? "plugin_not_found" : "OK"));
ui_test_utils::NavigateToURL(window, url);
ASSERT_EQ(expected_title, title_watcher.WaitAndGetTitle());
}
static void CrashFlash() {
scoped_refptr<content::MessageLoopRunner> runner =
new content::MessageLoopRunner;
BrowserThread::PostTask(
BrowserThread::IO,
FROM_HERE,
base::Bind(&CrashFlashInternal, runner->QuitClosure()));
runner->Run();
}
static void GetFlashPath(std::vector<base::FilePath>* paths) {
paths->clear();
std::vector<content::WebPluginInfo> plugins = GetPlugins();
for (std::vector<content::WebPluginInfo>::const_iterator it =
plugins.begin(); it != plugins.end(); ++it) {
if (it->name == base::ASCIIToUTF16(content::kFlashPluginName))
paths->push_back(it->path);
}
}
static std::vector<content::WebPluginInfo> GetPlugins() {
std::vector<content::WebPluginInfo> plugins;
scoped_refptr<content::MessageLoopRunner> runner =
new content::MessageLoopRunner;
content::PluginService::GetInstance()->GetPlugins(
base::Bind(&GetPluginsInfoCallback, &plugins, runner->QuitClosure()));
runner->Run();
return plugins;
}
static void EnableFlash(bool enable, Profile* profile) {
std::vector<base::FilePath> paths;
GetFlashPath(&paths);
ASSERT_FALSE(paths.empty());
PluginPrefs* plugin_prefs = PluginPrefs::GetForProfile(profile).get();
scoped_refptr<content::MessageLoopRunner> runner =
new content::MessageLoopRunner;
scoped_refptr<CallbackBarrier> callback_barrier(
new CallbackBarrier(runner->QuitClosure()));
for (std::vector<base::FilePath>::iterator iter = paths.begin();
iter != paths.end(); ++iter) {
plugin_prefs->EnablePlugin(enable, *iter,
callback_barrier->CreateCallback());
}
runner->Run();
}
static void EnsureFlashProcessCount(int expected) {
int actual = 0;
scoped_refptr<content::MessageLoopRunner> runner =
new content::MessageLoopRunner;
BrowserThread::PostTask(
BrowserThread::IO,
FROM_HERE,
base::Bind(&CountPluginProcesses, &actual, runner->QuitClosure()));
runner->Run();
ASSERT_EQ(expected, actual);
}
private:
static void CrashFlashInternal(const base::Closure& quit_task) {
bool found = false;
for (content::BrowserChildProcessHostIterator iter; !iter.Done(); ++iter) {
if (iter.GetData().process_type != content::PROCESS_TYPE_PLUGIN &&
iter.GetData().process_type != content::PROCESS_TYPE_PPAPI_PLUGIN) {
continue;
}
base::KillProcess(iter.GetData().handle, 0, true);
found = true;
}
ASSERT_TRUE(found) << "Didn't find Flash process!";
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, quit_task);
}
static void GetPluginsInfoCallback(
std::vector<content::WebPluginInfo>* rv,
const base::Closure& quit_task,
const std::vector<content::WebPluginInfo>& plugins) {
*rv = plugins;
quit_task.Run();
}
static void CountPluginProcesses(int* count, const base::Closure& quit_task) {
for (content::BrowserChildProcessHostIterator iter; !iter.Done(); ++iter) {
if (iter.GetData().process_type == content::PROCESS_TYPE_PLUGIN ||
iter.GetData().process_type == content::PROCESS_TYPE_PPAPI_PLUGIN) {
(*count)++;
}
}
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, quit_task);
}
};
// Tests a bunch of basic scenarios with Flash.
// This test fails under ASan on Mac, see http://crbug.com/147004.
// It fails elsewhere, too. See http://crbug.com/152071.
IN_PROC_BROWSER_TEST_F(ChromePluginTest, DISABLED_Flash) {
// Official builds always have bundled Flash.
#if !defined(OFFICIAL_BUILD)
std::vector<base::FilePath> flash_paths;
GetFlashPath(&flash_paths);
if (flash_paths.empty()) {
LOG(INFO) << "Test not running because couldn't find Flash.";
return;
}
#endif
GURL url = GetURL("flash.html");
EnsureFlashProcessCount(0);
// Try a single tab.
ASSERT_NO_FATAL_FAILURE(LoadAndWait(browser(), url, true));
EnsureFlashProcessCount(1);
Profile* profile = browser()->profile();
// Try another tab.
ASSERT_NO_FATAL_FAILURE(LoadAndWait(CreateBrowser(profile), url, true));
// Try an incognito window.
ASSERT_NO_FATAL_FAILURE(LoadAndWait(CreateIncognitoBrowser(), url, true));
EnsureFlashProcessCount(1);
// Now kill Flash process and verify it reloads.
CrashFlash();
EnsureFlashProcessCount(0);
ASSERT_NO_FATAL_FAILURE(LoadAndWait(browser(), url, true));
EnsureFlashProcessCount(1);
// Now try disabling it.
EnableFlash(false, profile);
CrashFlash();
ASSERT_NO_FATAL_FAILURE(LoadAndWait(browser(), url, false));
EnsureFlashProcessCount(0);
// Now enable it again.
EnableFlash(true, profile);
ASSERT_NO_FATAL_FAILURE(LoadAndWait(browser(), url, true));
EnsureFlashProcessCount(1);
}
#if defined(OFFICIAL_BUILD)
// Verify that the official builds have the known set of plugins.
IN_PROC_BROWSER_TEST_F(ChromePluginTest, InstalledPlugins) {
const char* expected[] = {
"Chrome PDF Viewer",
"Shockwave Flash",
"Native Client",
"Chrome Remote Desktop Viewer",
};
std::vector<content::WebPluginInfo> plugins = GetPlugins();
for (size_t i = 0; i < arraysize(expected); ++i) {
size_t j = 0;
for (; j < plugins.size(); ++j) {
if (plugins[j].name == base::ASCIIToUTF16(expected[i]))
break;
}
ASSERT_TRUE(j != plugins.size()) << "Didn't find " << expected[i];
}
}
#endif
|