summaryrefslogtreecommitdiff
path: root/chromium/extensions/browser/api/sockets_udp/sockets_udp_api_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/extensions/browser/api/sockets_udp/sockets_udp_api_unittest.cc')
-rw-r--r--chromium/extensions/browser/api/sockets_udp/sockets_udp_api_unittest.cc50
1 files changed, 50 insertions, 0 deletions
diff --git a/chromium/extensions/browser/api/sockets_udp/sockets_udp_api_unittest.cc b/chromium/extensions/browser/api/sockets_udp/sockets_udp_api_unittest.cc
new file mode 100644
index 00000000000..ebba7bcc1a9
--- /dev/null
+++ b/chromium/extensions/browser/api/sockets_udp/sockets_udp_api_unittest.cc
@@ -0,0 +1,50 @@
+// Copyright 2013 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/memory/scoped_ptr.h"
+#include "base/values.h"
+#include "extensions/browser/api/api_resource_manager.h"
+#include "extensions/browser/api/socket/socket.h"
+#include "extensions/browser/api/socket/udp_socket.h"
+#include "extensions/browser/api/sockets_udp/sockets_udp_api.h"
+#include "extensions/browser/api_unittest.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace extensions {
+namespace api {
+
+static scoped_ptr<KeyedService> ApiResourceManagerTestFactory(
+ content::BrowserContext* context) {
+ return make_scoped_ptr(new ApiResourceManager<ResumableUDPSocket>(context));
+}
+
+class SocketsUdpUnitTest : public ApiUnitTest {
+ public:
+ void SetUp() override {
+ ApiUnitTest::SetUp();
+
+ ApiResourceManager<ResumableUDPSocket>::GetFactoryInstance()
+ ->SetTestingFactoryAndUse(browser_context(),
+ ApiResourceManagerTestFactory);
+ }
+};
+
+TEST_F(SocketsUdpUnitTest, Create) {
+ // Get BrowserThread
+ content::BrowserThread::ID id;
+ CHECK(content::BrowserThread::GetCurrentThreadIdentifier(&id));
+
+ // Create SocketCreateFunction and put it on BrowserThread
+ SocketsUdpCreateFunction* function = new SocketsUdpCreateFunction();
+ function->set_work_thread_id(id);
+
+ // Run tests
+ scoped_ptr<base::DictionaryValue> result(RunFunctionAndReturnDictionary(
+ function, "[{\"persistent\": true, \"name\": \"foo\"}]"));
+ ASSERT_TRUE(result.get());
+}
+
+} // namespace api
+} // namespace extensions