diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 19:35:03 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 19:35:03 +0000 |
commit | 7fc3513ddd11148c95769a4a03ebaa627c7e1e7f (patch) | |
tree | 78a5db7855922ded3a535fd4777bcdb3a926887d /webkit/glue/cpp_variant_unittest.cc | |
parent | 6188a8fe1fb91bd4f77a566591a775e4b353ef24 (diff) | |
download | chromium_src-7fc3513ddd11148c95769a4a03ebaa627c7e1e7f.zip chromium_src-7fc3513ddd11148c95769a4a03ebaa627c7e1e7f.tar.gz chromium_src-7fc3513ddd11148c95769a4a03ebaa627c7e1e7f.tar.bz2 |
DOMUI: Allow chrome.send to pass number, boolean, null and arrays of those
BUG=None
TEST=cpp_variant_unittest covers most of the new functionality. I also verified that NTP works correctly.
Review URL: http://codereview.chromium.org/6254018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72994 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/cpp_variant_unittest.cc')
-rw-r--r-- | webkit/glue/cpp_variant_unittest.cc | 69 |
1 files changed, 68 insertions, 1 deletions
diff --git a/webkit/glue/cpp_variant_unittest.cc b/webkit/glue/cpp_variant_unittest.cc index d4eacc6..f3c6b61 100644 --- a/webkit/glue/cpp_variant_unittest.cc +++ b/webkit/glue/cpp_variant_unittest.cc @@ -1,8 +1,11 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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 <vector> + #include "base/compiler_specific.h" +#include "base/string_util.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" #include "webkit/glue/cpp_variant.h" @@ -424,3 +427,67 @@ TEST(CppVariantTest, IsTypeFunctionsWork) { WebBindings::releaseObject(obj); CheckObject(cpp); } + +bool MockNPHasPropertyFunction(NPObject *npobj, NPIdentifier name) { + return true; +} + +bool MockNPGetPropertyFunction(NPObject *npobj, NPIdentifier name, + NPVariant *result) { + if (WebBindings::getStringIdentifier("length") == name) { + DOUBLE_TO_NPVARIANT(4, *result); + } else if (WebBindings::getIntIdentifier(0) == name) { + DOUBLE_TO_NPVARIANT(0, *result); + } else if (WebBindings::getIntIdentifier(1) == name) { + BOOLEAN_TO_NPVARIANT(true, *result); + } else if (WebBindings::getIntIdentifier(2) == name) { + NULL_TO_NPVARIANT(*result); + } else if (WebBindings::getIntIdentifier(3) == name) { + const char* s = "string"; + size_t length = strlen(s); + char* mem = static_cast<char*>(malloc(length + 1)); + base::strlcpy(mem, s, length + 1); + STRINGZ_TO_NPVARIANT(mem, *result); + } + + return true; +} + +TEST(CppVariantTest, ToVector) { + NPClass array_like_class = { + NP_CLASS_STRUCT_VERSION, + 0, // NPAllocateFunctionPtr allocate; + 0, // NPDeallocateFunctionPtr deallocate; + 0, // NPInvalidateFunctionPtr invalidate; + 0, // NPHasMethodFunctionPtr hasMethod; + 0, // NPInvokeFunctionPtr invoke; + 0, // NPInvokeDefaultFunctionPtr invokeDefault; + MockNPHasPropertyFunction, // NPHasPropertyFunctionPtr hasProperty; + MockNPGetPropertyFunction, // NPGetPropertyFunctionPtr getProperty; + 0, // NPSetPropertyFunctionPtr setProperty; + 0, // NPRemovePropertyFunctionPtr removeProperty; + 0, // NPEnumerationFunctionPtr enumerate; + 0 // NPConstructFunctionPtr construct; + }; + + NPObject* obj = WebBindings::createObject(NULL, &array_like_class); + + CppVariant cpp; + cpp.Set(obj); + + std::vector<CppVariant> cpp_vector = cpp.ToVector(); + EXPECT_EQ(4u, cpp_vector.size()); + + EXPECT_TRUE(cpp_vector[0].isDouble()); + EXPECT_EQ(0, cpp_vector[0].ToDouble()); + + EXPECT_TRUE(cpp_vector[1].isBool()); + EXPECT_EQ(true, cpp_vector[1].ToBoolean()); + + EXPECT_TRUE(cpp_vector[2].isNull()); + + EXPECT_TRUE(cpp_vector[3].isString()); + CheckString("string", cpp_vector[3]); + + WebBindings::releaseObject(obj); +} |