// 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 "base/command_line.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop.h" #include "base/run_loop.h" #include "base/synchronization/waitable_event.h" #include "chrome/browser/extensions/activity_log/activity_log.h" #include "chrome/browser/extensions/extension_service.h" #include "chrome/browser/extensions/test_extension_system.h" #include "chrome/browser/prerender/prerender_handle.h" #include "chrome/browser/prerender/prerender_manager.h" #include "chrome/browser/prerender/prerender_manager_factory.h" #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/extensions/dom_action_types.h" #include "chrome/common/extensions/extension_builder.h" #include "chrome/test/base/chrome_render_view_host_test_harness.h" #include "chrome/test/base/testing_profile.h" #include "content/public/test/test_browser_thread_bundle.h" #include "sql/statement.h" #include "testing/gtest/include/gtest/gtest.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/login/user_manager.h" #include "chrome/browser/chromeos/settings/cros_settings.h" #include "chrome/browser/chromeos/settings/device_settings_service.h" #endif namespace { const char kExtensionId[] = "abc"; } // namespace namespace extensions { class ActivityLogTest : public ChromeRenderViewHostTestHarness { protected: virtual void SetUp() OVERRIDE { ChromeRenderViewHostTestHarness::SetUp(); #if defined OS_CHROMEOS test_user_manager_.reset(new chromeos::ScopedTestUserManager()); #endif CommandLine command_line(CommandLine::NO_PROGRAM); CommandLine::ForCurrentProcess()->AppendSwitch( switches::kEnableExtensionActivityLogging); CommandLine::ForCurrentProcess()->AppendSwitch( switches::kEnableExtensionActivityLogTesting); extension_service_ = static_cast( ExtensionSystem::Get(profile()))->CreateExtensionService (&command_line, base::FilePath(), false); base::RunLoop().RunUntilIdle(); } virtual void TearDown() OVERRIDE { #if defined OS_CHROMEOS test_user_manager_.reset(); #endif base::RunLoop().RunUntilIdle(); ChromeRenderViewHostTestHarness::TearDown(); } static void RetrieveActions_LogAndFetchActions0( scoped_ptr > > i) { ASSERT_EQ(0, static_cast(i->size())); } static void RetrieveActions_LogAndFetchActions2( scoped_ptr > > i) { ASSERT_EQ(2, static_cast(i->size())); } void SetPolicy(bool log_arguments) { ActivityLog* activity_log = ActivityLog::GetInstance(profile()); if (log_arguments) activity_log->SetDefaultPolicy(ActivityLogPolicy::POLICY_FULLSTREAM); else activity_log->SetDefaultPolicy(ActivityLogPolicy::POLICY_COUNTS); } bool GetDatabaseEnabled() { ActivityLog* activity_log = ActivityLog::GetInstance(profile()); return activity_log->IsDatabaseEnabled(); } bool GetWatchdogActive() { ActivityLog* activity_log = ActivityLog::GetInstance(profile()); return activity_log->IsWatchdogAppActive(); } static void Arguments_Prerender( scoped_ptr > > i) { ASSERT_EQ(1U, i->size()); scoped_refptr last = i->front(); ASSERT_EQ("odlameecjipmbmbejkplpemijjgpljce", last->extension_id()); ASSERT_EQ(Action::ACTION_CONTENT_SCRIPT, last->action_type()); ASSERT_EQ("[\"script\"]", ActivityLogPolicy::Util::Serialize(last->args())); ASSERT_EQ("http://www.google.com/", last->SerializePageUrl()); ASSERT_EQ("{\"prerender\":true}", ActivityLogPolicy::Util::Serialize(last->other())); ASSERT_EQ("", last->api_name()); ASSERT_EQ("", last->page_title()); ASSERT_EQ("", last->SerializeArgUrl()); } static void RetrieveActions_ArgUrlExtraction( scoped_ptr > > i) { ASSERT_EQ(2U, i->size()); scoped_refptr action = i->at(0); ASSERT_EQ("[\"GET\",\"\\u003Carg_url\\u003E\"]", ActivityLogPolicy::Util::Serialize(action->args())); ASSERT_EQ("http://www.google.com/", action->arg_url().spec()); action = i->at(1); ASSERT_EQ("[{\"url\":\"\\u003Carg_url\\u003E\"}]", ActivityLogPolicy::Util::Serialize(action->args())); ASSERT_EQ("http://www.google.co.uk/", action->arg_url().spec()); } ExtensionService* extension_service_; #if defined OS_CHROMEOS chromeos::ScopedTestDeviceSettingsService test_device_settings_service_; chromeos::ScopedTestCrosSettings test_cros_settings_; scoped_ptr test_user_manager_; #endif }; TEST_F(ActivityLogTest, Construct) { ASSERT_TRUE(GetDatabaseEnabled()); ASSERT_FALSE(GetWatchdogActive()); } TEST_F(ActivityLogTest, LogAndFetchActions) { ActivityLog* activity_log = ActivityLog::GetInstance(profile()); scoped_ptr args(new base::ListValue()); ASSERT_TRUE(GetDatabaseEnabled()); // Write some API calls scoped_refptr action = new Action(kExtensionId, base::Time::Now(), Action::ACTION_API_CALL, "tabs.testMethod"); activity_log->LogAction(action); action = new Action(kExtensionId, base::Time::Now(), Action::ACTION_DOM_ACCESS, "document.write"); action->set_page_url(GURL("http://www.google.com")); activity_log->LogAction(action); activity_log->GetFilteredActions( kExtensionId, Action::ACTION_ANY, "", "", "", 0, base::Bind(ActivityLogTest::RetrieveActions_LogAndFetchActions2)); } TEST_F(ActivityLogTest, LogPrerender) { scoped_refptr extension = ExtensionBuilder() .SetManifest(DictionaryBuilder() .Set("name", "Test extension") .Set("version", "1.0.0") .Set("manifest_version", 2)) .Build(); extension_service_->AddExtension(extension.get()); ActivityLog* activity_log = ActivityLog::GetInstance(profile()); ASSERT_TRUE(GetDatabaseEnabled()); GURL url("http://www.google.com"); prerender::PrerenderManager* prerender_manager = prerender::PrerenderManagerFactory::GetForProfile( Profile::FromBrowserContext(profile())); const gfx::Size kSize(640, 480); scoped_ptr prerender_handle( prerender_manager->AddPrerenderFromLocalPredictor( url, web_contents()->GetController().GetDefaultSessionStorageNamespace(), kSize)); const std::vector contentses = prerender_manager->GetAllPrerenderingContents(); ASSERT_EQ(1U, contentses.size()); content::WebContents *contents = contentses[0]; ASSERT_TRUE(prerender_manager->IsWebContentsPrerendering(contents, NULL)); TabHelper::ScriptExecutionObserver::ExecutingScriptsMap executing_scripts; executing_scripts[extension->id()].insert("script"); static_cast(activity_log)-> OnScriptsExecuted(contents, executing_scripts, 0, url); activity_log->GetFilteredActions( extension->id(), Action::ACTION_ANY, "", "", "", 0, base::Bind(ActivityLogTest::Arguments_Prerender)); prerender_manager->CancelAllPrerenders(); } TEST_F(ActivityLogTest, ArgUrlExtraction) { ActivityLog* activity_log = ActivityLog::GetInstance(profile()); scoped_ptr args(new base::ListValue()); base::Time now = base::Time::Now(); // Submit a DOM API call which should have its URL extracted into the arg_url // field. scoped_refptr action = new Action(kExtensionId, now, Action::ACTION_DOM_ACCESS, "XMLHttpRequest.open"); action->mutable_args()->AppendString("GET"); action->mutable_args()->AppendString("http://www.google.com/"); activity_log->LogAction(action); // Submit an API call with an embedded URL. action = new Action(kExtensionId, now - base::TimeDelta::FromSeconds(1), Action::ACTION_API_CALL, "windows.create"); action->set_args( ListBuilder() .Append(DictionaryBuilder().Set("url", "http://www.google.co.uk")) .Build()); activity_log->LogAction(action); activity_log->GetFilteredActions( kExtensionId, Action::ACTION_ANY, "", "", "", -1, base::Bind(ActivityLogTest::RetrieveActions_ArgUrlExtraction)); } TEST_F(ActivityLogTest, UninstalledExtension) { scoped_refptr extension = ExtensionBuilder() .SetManifest(DictionaryBuilder() .Set("name", "Test extension") .Set("version", "1.0.0") .Set("manifest_version", 2)) .Build(); ActivityLog* activity_log = ActivityLog::GetInstance(profile()); scoped_ptr args(new base::ListValue()); ASSERT_TRUE(GetDatabaseEnabled()); // Write some API calls scoped_refptr action = new Action(extension->id(), base::Time::Now(), Action::ACTION_API_CALL, "tabs.testMethod"); activity_log->LogAction(action); action = new Action(extension->id(), base::Time::Now(), Action::ACTION_DOM_ACCESS, "document.write"); action->set_page_url(GURL("http://www.google.com")); activity_log->OnExtensionUninstalled(extension); activity_log->GetFilteredActions( extension->id(), Action::ACTION_ANY, "", "", "", -1, base::Bind(ActivityLogTest::RetrieveActions_LogAndFetchActions0)); } } // namespace extensions