Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: ppapi/proxy/interface_list_unittest.cc

Issue 112343005: Pepper: Finish support for dev channel APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for dmichael Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/plugin_main_nacl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/interface_list_unittest.cc
diff --git a/ppapi/proxy/interface_list_unittest.cc b/ppapi/proxy/interface_list_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..17140f06b07fef5260281184897865468e5e5aa0
--- /dev/null
+++ b/ppapi/proxy/interface_list_unittest.cc
@@ -0,0 +1,66 @@
+// Copyright (c) 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 "ppapi/c/ppb_core.h"
+#include "ppapi/proxy/interface_list.h"
+#include "ppapi/proxy/ppapi_proxy_test.h"
+
+namespace ppapi {
+namespace proxy {
+
+class InterfaceListTest : public PluginProxyTest {
+ public:
+ // Wrapper function so we can use the private InterfaceList::AddPPB.
+ void AddPPB(InterfaceList* list,
+ const char* iface_name, void* iface_addr, Permission perm) {
+ list->AddPPB(iface_name, iface_addr, perm);
+ }
+};
+
+// Tests looking up a stable interface.
+TEST_F(InterfaceListTest, Stable) {
+ InterfaceList list;
+ ASSERT_TRUE(list.GetInterfaceForPPB(PPB_CORE_INTERFACE_1_0) != NULL);
+ ASSERT_TRUE(list.GetInterfaceForPPB("FakeUnknownInterface") == NULL);
+}
+
+// Tests that dev channel restrictions work properly.
+TEST_F(InterfaceListTest, DevChannel) {
+ InterfaceList list;
+ // "Dev channel" interface.
+ static const char* dev_channel_iface_name = "TestDevChannelInterface";
+ void* dev_channel_iface_addr = (void*)0xdeadbeef;
+ // "Dev" interface
+ static const char* dev_iface_name = "TestDevInterface";
+ void* dev_iface_addr = (void*)0xcafefade;
+
+ AddPPB(&list, dev_channel_iface_name, dev_channel_iface_addr,
+ PERMISSION_DEV_CHANNEL);
+ AddPPB(&list, dev_iface_name, dev_iface_addr, PERMISSION_DEV);
+
+ InterfaceList::SetProcessGlobalPermissions(
+ PpapiPermissions(PERMISSION_NONE));
+ ASSERT_TRUE(list.GetInterfaceForPPB(dev_channel_iface_name) == NULL);
+ ASSERT_TRUE(list.GetInterfaceForPPB(dev_iface_name) == NULL);
+
+ InterfaceList::SetProcessGlobalPermissions(
+ PpapiPermissions(PERMISSION_DEV_CHANNEL));
+ ASSERT_TRUE(list.GetInterfaceForPPB(dev_channel_iface_name) ==
+ dev_channel_iface_addr);
+ ASSERT_TRUE(list.GetInterfaceForPPB(dev_iface_name) == NULL);
+
+ InterfaceList::SetProcessGlobalPermissions(
+ PpapiPermissions(PERMISSION_DEV));
+ ASSERT_TRUE(list.GetInterfaceForPPB(dev_channel_iface_name) == NULL);
+ ASSERT_TRUE(list.GetInterfaceForPPB(dev_iface_name) == dev_iface_addr);
+
+ InterfaceList::SetProcessGlobalPermissions(
+ PpapiPermissions(PERMISSION_DEV | PERMISSION_DEV_CHANNEL));
+ ASSERT_TRUE(list.GetInterfaceForPPB(dev_channel_iface_name) ==
+ dev_channel_iface_addr);
+ ASSERT_TRUE(list.GetInterfaceForPPB(dev_iface_name) == dev_iface_addr);
+}
+
+} // namespace proxy
+} // namespace ppapi
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/plugin_main_nacl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698