| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.h" | |
| 10 #include "chrome/browser/extensions/extension_apitest.h" | 9 #include "chrome/browser/extensions/extension_apitest.h" |
| 11 #include "chrome/browser/extensions/extension_function_test_utils.h" | 10 #include "chrome/browser/extensions/extension_function_test_utils.h" |
| 12 #include "chrome/browser/extensions/extension_service.h" | 11 #include "chrome/browser/extensions/extension_service.h" |
| 13 #include "chrome/browser/extensions/extension_test_message_listener.h" | 12 #include "chrome/browser/extensions/extension_test_message_listener.h" |
| 14 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
| 15 #include "chrome/test/base/ui_test_utils.h" | 14 #include "chrome/test/base/ui_test_utils.h" |
| 16 #include "device/bluetooth/bluetooth_adapter_factory.h" | 15 #include "device/bluetooth/bluetooth_adapter_factory.h" |
| 17 #include "device/bluetooth/bluetooth_uuid.h" | 16 #include "device/bluetooth/bluetooth_uuid.h" |
| 18 #include "device/bluetooth/test/mock_bluetooth_adapter.h" | 17 #include "device/bluetooth/test/mock_bluetooth_adapter.h" |
| 19 #include "device/bluetooth/test/mock_bluetooth_device.h" | 18 #include "device/bluetooth/test/mock_bluetooth_device.h" |
| 20 #include "device/bluetooth/test/mock_bluetooth_socket.h" | 19 #include "device/bluetooth/test/mock_bluetooth_socket.h" |
| 20 #include "extensions/browser/api/bluetooth_socket/bluetooth_socket_api.h" |
| 21 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
| 22 | 22 |
| 23 using device::BluetoothAdapter; | 23 using device::BluetoothAdapter; |
| 24 using device::BluetoothAdapterFactory; | 24 using device::BluetoothAdapterFactory; |
| 25 using device::BluetoothDevice; | 25 using device::BluetoothDevice; |
| 26 using device::BluetoothSocket; | 26 using device::BluetoothSocket; |
| 27 using device::BluetoothUUID; | 27 using device::BluetoothUUID; |
| 28 using device::MockBluetoothAdapter; | 28 using device::MockBluetoothAdapter; |
| 29 using device::MockBluetoothDevice; | 29 using device::MockBluetoothDevice; |
| 30 using device::MockBluetoothSocket; | 30 using device::MockBluetoothSocket; |
| 31 using extensions::Extension; | 31 using extensions::Extension; |
| 32 | 32 |
| 33 namespace utils = extension_function_test_utils; | 33 namespace utils = extension_function_test_utils; |
| 34 namespace api = extensions::api; | 34 namespace api = extensions::core_api; |
| 35 | 35 |
| 36 namespace { | 36 namespace { |
| 37 | 37 |
| 38 class BluetoothSocketApiTest : public ExtensionApiTest { | 38 class BluetoothSocketApiTest : public ExtensionApiTest { |
| 39 public: | 39 public: |
| 40 BluetoothSocketApiTest() {} | 40 BluetoothSocketApiTest() {} |
| 41 | 41 |
| 42 virtual void SetUpOnMainThread() OVERRIDE { | 42 virtual void SetUpOnMainThread() OVERRIDE { |
| 43 ExtensionApiTest::SetUpOnMainThread(); | 43 ExtensionApiTest::SetUpOnMainThread(); |
| 44 empty_extension_ = utils::CreateEmptyExtension(); | 44 empty_extension_ = utils::CreateEmptyExtension(); |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 catcher.RestrictToProfile(browser()->profile()); | 202 catcher.RestrictToProfile(browser()->profile()); |
| 203 | 203 |
| 204 // Run the test. | 204 // Run the test. |
| 205 scoped_refptr<const Extension> extension( | 205 scoped_refptr<const Extension> extension( |
| 206 LoadExtension(test_data_dir_.AppendASCII( | 206 LoadExtension(test_data_dir_.AppendASCII( |
| 207 "bluetooth_socket/permission_denied"))); | 207 "bluetooth_socket/permission_denied"))); |
| 208 ASSERT_TRUE(extension.get()); | 208 ASSERT_TRUE(extension.get()); |
| 209 | 209 |
| 210 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); | 210 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); |
| 211 } | 211 } |
| OLD | NEW |