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
|
// 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 <string>
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "chrome/browser/extensions/api/bluetooth/bluetooth_event_router.h"
#include "chrome/browser/extensions/extension_system_factory.h"
#include "chrome/browser/extensions/test_extension_system.h"
#include "chrome/common/extensions/api/bluetooth.h"
#include "chrome/test/base/testing_profile.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 "extensions/browser/event_router.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/common/extension_builder.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
const char kTestExtensionId[] = "test extension id";
const device::BluetoothUUID kAudioProfileUuid("1234");
const device::BluetoothUUID kHealthProfileUuid("4321");
} // namespace
namespace extensions {
namespace bluetooth = api::bluetooth;
class BluetoothEventRouterTest : public testing::Test {
public:
BluetoothEventRouterTest()
: ui_thread_(content::BrowserThread::UI, &message_loop_),
mock_adapter_(new testing::StrictMock<device::MockBluetoothAdapter>()),
test_profile_(new TestingProfile()),
router_(new BluetoothEventRouter(test_profile_.get())) {
router_->SetAdapterForTest(mock_adapter_);
}
virtual void TearDown() OVERRIDE {
// Some profile-dependent services rely on UI thread to clean up. We make
// sure they are properly cleaned up by running the UI message loop until
// idle.
// It's important to destroy the router before the |test_profile_| so it
// removes itself as an observer.
router_.reset(NULL);
test_profile_.reset(NULL);
base::RunLoop run_loop;
run_loop.RunUntilIdle();
}
protected:
base::MessageLoopForUI message_loop_;
// Note: |ui_thread_| must be declared before |router_|.
content::TestBrowserThread ui_thread_;
testing::StrictMock<device::MockBluetoothAdapter>* mock_adapter_;
scoped_ptr<TestingProfile> test_profile_;
scoped_ptr<BluetoothEventRouter> router_;
};
TEST_F(BluetoothEventRouterTest, BluetoothEventListener) {
router_->OnListenerAdded();
EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
router_->OnListenerRemoved();
}
TEST_F(BluetoothEventRouterTest, MultipleBluetoothEventListeners) {
router_->OnListenerAdded();
router_->OnListenerAdded();
router_->OnListenerAdded();
router_->OnListenerRemoved();
router_->OnListenerRemoved();
EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
router_->OnListenerRemoved();
}
TEST_F(BluetoothEventRouterTest, UnloadExtension) {
scoped_refptr<const extensions::Extension> extension =
extensions::ExtensionBuilder()
.SetManifest(extensions::DictionaryBuilder()
.Set("name", "BT event router test")
.Set("version", "1.0")
.Set("manifest_version", 2))
.SetID(kTestExtensionId)
.Build();
ExtensionRegistry::Get(test_profile_.get())
->TriggerOnUnloaded(extension, UnloadedExtensionInfo::REASON_DISABLE);
EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
}
} // namespace extensions
|