Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / api / bluetooth / bluetooth_event_router_unittest.cc
index cf63775..06ec55e 100644 (file)
@@ -16,6 +16,8 @@
 #include "chrome/test/base/testing_profile.h"
 #include "content/public/browser/notification_service.h"
 #include "content/public/test/test_browser_thread.h"
+#include "content/public/test/test_browser_thread_bundle.h"
+#include "device/bluetooth/bluetooth_uuid.h"
 #include "device/bluetooth/test/mock_bluetooth_adapter.h"
 #include "device/bluetooth/test/mock_bluetooth_device.h"
 #include "device/bluetooth/test/mock_bluetooth_profile.h"
 namespace {
 
 const char kTestExtensionId[] = "test extension id";
-const char kAudioProfileUuid[] = "audio profile uuid";
-const char kHealthProfileUuid[] = "health profile uuid";
-
-class FakeEventRouter : public extensions::EventRouter {
- public:
-  explicit FakeEventRouter(Profile* profile) : EventRouter(profile, NULL) {}
-
-  virtual void DispatchEventToExtension(
-      const std::string& extension_id,
-      scoped_ptr<extensions::Event> event) OVERRIDE {
-    extension_id_ = extension_id;
-    event_ = event.Pass();
-  }
-
-  std::string extension_id() const {
-    return extension_id_;
-  }
-
-  const extensions::Event* event() const {
-    return event_.get();
-  }
-
- private:
-  std::string extension_id_;
-  scoped_ptr<extensions::Event> event_;
-
-  DISALLOW_COPY_AND_ASSIGN(FakeEventRouter);
-};
-
-class FakeExtensionSystem : public extensions::TestExtensionSystem {
- public:
-  explicit FakeExtensionSystem(Profile* profile)
-      : extensions::TestExtensionSystem(profile) {}
-
-  virtual extensions::EventRouter* event_router() OVERRIDE {
-    if (!fake_event_router_)
-      fake_event_router_.reset(new FakeEventRouter(profile_));
-    return fake_event_router_.get();
-  }
-
- private:
-  scoped_ptr<FakeEventRouter> fake_event_router_;
-
-  DISALLOW_COPY_AND_ASSIGN(FakeExtensionSystem);
-};
-
-KeyedService* BuildFakeExtensionSystem(content::BrowserContext* profile) {
-  return new FakeExtensionSystem(static_cast<Profile*>(profile));
-}
+const device::BluetoothUUID kAudioProfileUuid("1234");
+const device::BluetoothUUID kHealthProfileUuid("4321");
 
 }  // namespace
 
@@ -84,13 +39,13 @@ namespace extensions {
 
 namespace bluetooth = api::bluetooth;
 
-class ExtensionBluetoothEventRouterTest : public testing::Test {
+class BluetoothEventRouterTest : public testing::Test {
  public:
-  ExtensionBluetoothEventRouterTest()
-      : mock_adapter_(new testing::StrictMock<device::MockBluetoothAdapter>()),
+  BluetoothEventRouterTest()
+      : ui_thread_(content::BrowserThread::UI, &message_loop_),
+        mock_adapter_(new testing::StrictMock<device::MockBluetoothAdapter>()),
         test_profile_(new TestingProfile()),
-        router_(test_profile_.get()),
-        ui_thread_(content::BrowserThread::UI, &message_loop_) {
+        router_(test_profile_.get()) {
     router_.SetAdapterForTest(mock_adapter_);
   }
 
@@ -104,22 +59,23 @@ class ExtensionBluetoothEventRouterTest : public testing::Test {
   }
 
  protected:
+  base::MessageLoopForUI message_loop_;
+  // Note: |ui_thread_| must be declared before |router_|.
+  content::TestBrowserThread ui_thread_;
   testing::StrictMock<device::MockBluetoothAdapter>* mock_adapter_;
   testing::NiceMock<device::MockBluetoothProfile> mock_audio_profile_;
   testing::NiceMock<device::MockBluetoothProfile> mock_health_profile_;
   scoped_ptr<TestingProfile> test_profile_;
-  ExtensionBluetoothEventRouter router_;
-  base::MessageLoopForUI message_loop_;
-  content::TestBrowserThread ui_thread_;
+  BluetoothEventRouter router_;
 };
 
-TEST_F(ExtensionBluetoothEventRouterTest, BluetoothEventListener) {
+TEST_F(BluetoothEventRouterTest, BluetoothEventListener) {
   router_.OnListenerAdded();
   EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
   router_.OnListenerRemoved();
 }
 
-TEST_F(ExtensionBluetoothEventRouterTest, MultipleBluetoothEventListeners) {
+TEST_F(BluetoothEventRouterTest, MultipleBluetoothEventListeners) {
   router_.OnListenerAdded();
   router_.OnListenerAdded();
   router_.OnListenerAdded();
@@ -129,7 +85,7 @@ TEST_F(ExtensionBluetoothEventRouterTest, MultipleBluetoothEventListeners) {
   router_.OnListenerRemoved();
 }
 
-TEST_F(ExtensionBluetoothEventRouterTest, Profiles) {
+TEST_F(BluetoothEventRouterTest, Profiles) {
   EXPECT_FALSE(router_.HasProfile(kAudioProfileUuid));
   EXPECT_FALSE(router_.HasProfile(kHealthProfileUuid));
 
@@ -150,7 +106,7 @@ TEST_F(ExtensionBluetoothEventRouterTest, Profiles) {
   EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
 }
 
-TEST_F(ExtensionBluetoothEventRouterTest, UnloadExtension) {
+TEST_F(BluetoothEventRouterTest, UnloadExtension) {
   scoped_refptr<const extensions::Extension> extension =
       extensions::ExtensionBuilder()
           .SetManifest(extensions::DictionaryBuilder()
@@ -184,69 +140,4 @@ TEST_F(ExtensionBluetoothEventRouterTest, UnloadExtension) {
   EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
 }
 
-TEST_F(ExtensionBluetoothEventRouterTest, DispatchConnectionEvent) {
-  router_.AddProfile(
-      kAudioProfileUuid, kTestExtensionId, &mock_audio_profile_);
-
-  FakeExtensionSystem* fake_extension_system =
-      static_cast<FakeExtensionSystem*>(ExtensionSystemFactory::GetInstance()->
-          SetTestingFactoryAndUse(test_profile_.get(),
-                                  &BuildFakeExtensionSystem));
-
-  testing::NiceMock<device::MockBluetoothDevice> mock_device(
-      mock_adapter_, 0, "device name", "device address", true, false);
-  scoped_refptr<testing::NiceMock<device::MockBluetoothSocket> > mock_socket(
-      new testing::NiceMock<device::MockBluetoothSocket>());
-
-  router_.DispatchConnectionEvent(kTestExtensionId,
-                                  kAudioProfileUuid,
-                                  &mock_device,
-                                  mock_socket);
-
-  FakeEventRouter* fake_event_router =
-      static_cast<FakeEventRouter*>(fake_extension_system->event_router());
-
-  EXPECT_STREQ(kTestExtensionId, fake_event_router->extension_id().c_str());
-  EXPECT_STREQ(bluetooth::OnConnection::kEventName,
-               fake_event_router->event()->event_name.c_str());
-
-  base::ListValue* event_args = fake_event_router->event()->event_args.get();
-  base::DictionaryValue* socket_value = NULL;
-  ASSERT_TRUE(event_args->GetDictionary(0, &socket_value));
-  int socket_id;
-  ASSERT_TRUE(socket_value->GetInteger("id", &socket_id));
-  EXPECT_EQ(mock_socket.get(), router_.GetSocket(socket_id).get());
-
-  base::DictionaryValue* profile_value = NULL;
-  ASSERT_TRUE(socket_value->GetDictionary("profile", &profile_value));
-  std::string uuid;
-  ASSERT_TRUE(profile_value->GetString("uuid", &uuid));
-  EXPECT_STREQ(kAudioProfileUuid, uuid.c_str());
-
-  EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
-  router_.ReleaseSocket(socket_id);
-}
-
-TEST_F(ExtensionBluetoothEventRouterTest, DoNotDispatchConnectionEvent) {
-  FakeExtensionSystem* fake_extension_system =
-      static_cast<FakeExtensionSystem*>(ExtensionSystemFactory::GetInstance()->
-          SetTestingFactoryAndUse(test_profile_.get(),
-                                  &BuildFakeExtensionSystem));
-  testing::NiceMock<device::MockBluetoothDevice> mock_device(
-      mock_adapter_, 0, "device name", "device address", true, false);
-  scoped_refptr<testing::NiceMock<device::MockBluetoothSocket> > mock_socket(
-      new testing::NiceMock<device::MockBluetoothSocket>());
-
-  // Connection event won't be dispatched for non-registered profiles.
-  router_.DispatchConnectionEvent("test extension id",
-                                  kAudioProfileUuid,
-                                  &mock_device,
-                                  mock_socket);
-  FakeEventRouter* fake_event_router =
-      static_cast<FakeEventRouter*>(fake_extension_system->event_router());
-  EXPECT_TRUE(fake_event_router->event() == NULL);
-
-  EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
-}
-
 }  // namespace extensions