1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/memory/scoped_ptr.h"
6 #include "base/values.h"
7 #include "chrome/browser/browser_process_impl.h"
8 #include "chrome/browser/extensions/extension_api_unittest.h"
9 #include "chrome/browser/extensions/test_extension_system.h"
10 #include "chrome/browser/profiles/profile_manager.h"
11 #include "chrome/test/base/testing_browser_process.h"
12 #include "extensions/browser/api/api_resource_manager.h"
13 #include "extensions/browser/api/socket/socket.h"
14 #include "extensions/browser/api/socket/socket_api.h"
15 #include "testing/gmock/include/gmock/gmock.h"
16 #include "testing/gtest/include/gtest/gtest.h"
18 namespace extensions
{
20 scoped_ptr
<KeyedService
> ApiResourceManagerTestFactory(
21 content::BrowserContext
* context
) {
22 return make_scoped_ptr(new ApiResourceManager
<Socket
>(context
));
25 class SocketUnitTest
: public ExtensionApiUnittest
{
27 void SetUp() override
{
28 ExtensionApiUnittest::SetUp();
30 ApiResourceManager
<Socket
>::GetFactoryInstance()->SetTestingFactoryAndUse(
31 browser()->profile(), ApiResourceManagerTestFactory
);
35 TEST_F(SocketUnitTest
, Create
) {
37 content::BrowserThread::ID id
;
38 CHECK(content::BrowserThread::GetCurrentThreadIdentifier(&id
));
40 // Create SocketCreateFunction and put it on BrowserThread
41 SocketCreateFunction
* function
= new SocketCreateFunction();
42 function
->set_work_thread_id(id
);
45 scoped_ptr
<base::DictionaryValue
> result(
46 RunFunctionAndReturnDictionary(function
, "[\"tcp\"]"));
47 ASSERT_TRUE(result
.get());
50 } // namespace extensions