Index: chrome/browser/intents/register_intent_handler_infobar_delegate_unittest.cc |
diff --git a/chrome/browser/intents/register_intent_handler_infobar_delegate_unittest.cc b/chrome/browser/intents/register_intent_handler_infobar_delegate_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..48e0639c6ef9a498e5d140e553ddb630679aa20d |
--- /dev/null |
+++ b/chrome/browser/intents/register_intent_handler_infobar_delegate_unittest.cc |
@@ -0,0 +1,84 @@ |
+// Copyright (c) 2011 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/scoped_ptr.h" |
+#include "base/utf_string_conversions.h" |
+#include "chrome/browser/intents/register_intent_handler_infobar_delegate.h" |
+#include "chrome/browser/intents/web_intents_registry.h" |
+#include "chrome/browser/intents/web_intents_registry_factory.h" |
+#include "chrome/browser/intents/web_intent_data.h" |
+#include "chrome/test/base/testing_profile.h" |
+#include "chrome/test/testing_browser_process_test.h" |
+#include "content/browser/browser_thread.h" |
+#include "content/browser/renderer_host/test_render_view_host.h" |
+#include "content/browser/site_instance.h" |
+#include "content/browser/tab_contents/test_tab_contents.h" |
+#include "testing/gmock/include/gmock/gmock.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+namespace { |
+ |
+class MockWebIntentsRegistry : public WebIntentsRegistry { |
+ public: |
+ MOCK_METHOD1(RegisterIntentProvider, void(const WebIntentData&)); |
+}; |
+ |
+ProfileKeyedService* BuildMockWebIntentsRegistry(Profile* profile) { |
+ return new MockWebIntentsRegistry; |
+} |
+ |
+MockWebIntentsRegistry* BuildForProfile(Profile* profile) { |
+ return static_cast<MockWebIntentsRegistry*>( |
+ WebIntentsRegistryFactory::GetInstance()->SetTestingFactoryAndUse( |
+ profile, BuildMockWebIntentsRegistry)); |
+} |
+ |
+class RegisterIntentHandlerInfoBarDelegateTest |
+ : public RenderViewHostTestHarness { |
+ protected: |
+ RegisterIntentHandlerInfoBarDelegateTest() |
+ : ui_thread_(BrowserThread::UI, MessageLoopForUI::current()) {} |
+ |
+ virtual void SetUp() { |
+ RenderViewHostTestHarness::SetUp(); |
+ |
+ profile_.reset(new TestingProfile); |
+ profile_->CreateWebDataService(false); |
+ |
+ SiteInstance* instance = SiteInstance::CreateSiteInstance(profile_.get()); |
+ tab_contents_.reset(new TestTabContents(profile_.get(), instance)); |
+ |
+ web_intents_registry_ = BuildForProfile(profile_.get()); |
+ } |
+ |
+ virtual void TearDown() { |
+ tab_contents_.reset(); |
+ web_intents_registry_ = NULL; |
+ profile_.reset(); |
+ |
+ RenderViewHostTestHarness::TearDown(); |
+ } |
+ |
+ scoped_ptr<TestTabContents> tab_contents_; |
+ MockWebIntentsRegistry* web_intents_registry_; |
+ |
+ private: |
+ BrowserThread ui_thread_; |
+ scoped_ptr<TestingProfile> profile_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(RegisterIntentHandlerInfoBarDelegateTest); |
+}; |
+ |
+TEST_F(RegisterIntentHandlerInfoBarDelegateTest, Accept) { |
+ WebIntentData intent; |
+ intent.service_url = GURL("google.com"); |
+ intent.action = ASCIIToUTF16("http://webintents.org/share"); |
+ intent.type = ASCIIToUTF16("text/url"); |
+ RegisterIntentHandlerInfoBarDelegate delegate(tab_contents_.get(), intent); |
+ |
+ EXPECT_CALL(*web_intents_registry_, RegisterIntentProvider(intent)); |
+ delegate.Accept(); |
+} |
+ |
+} // namespace |