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
3 // found in the LICENSE file.
6 * Copyright (C) 2010 Apple Inc. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
19 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGE.
30 #include "PluginTest.h"
36 class NPRuntimeRemoveProperty
: public PluginTest
{
38 NPRuntimeRemoveProperty(NPP npp
, const string
& identifier
)
39 : PluginTest(npp
, identifier
)
44 struct TestObject
: Object
<TestObject
> {
47 : m_lastRemovedProperty(0)
51 bool hasProperty(NPIdentifier propertyName
)
53 if (identifierIs(propertyName
, "lastRemovedProperty"))
59 bool getProperty(NPIdentifier propertyName
, NPVariant
* result
)
61 assert(identifierIs(propertyName
, "lastRemovedProperty"));
63 if (!m_lastRemovedProperty
)
66 if (pluginTest()->NPN_IdentifierIsString(m_lastRemovedProperty
)) {
67 char* lastRemovedPropertyName
= pluginTest()->NPN_UTF8FromIdentifier(m_lastRemovedProperty
);
69 STRINGZ_TO_NPVARIANT(lastRemovedPropertyName
, *result
);
73 int intIdentifier
= pluginTest()->NPN_IntFromIdentifier(m_lastRemovedProperty
);
74 DOUBLE_TO_NPVARIANT(intIdentifier
, *result
);
78 bool removeProperty(NPIdentifier propertyName
)
80 m_lastRemovedProperty
= propertyName
;
85 NPIdentifier m_lastRemovedProperty
;
88 struct PluginObject
: Object
<PluginObject
> {
95 ~PluginObject() override
{
97 pluginTest()->NPN_ReleaseObject(m_testObject
);
100 bool hasMethod(NPIdentifier methodName
)
102 if (identifierIs(methodName
, "testRemoveProperty"))
108 bool invoke(NPIdentifier methodName
, const NPVariant
* arguments
, uint32_t argumentCount
, NPVariant
* result
)
110 assert(identifierIs(methodName
, "testRemoveProperty"));
112 if (argumentCount
!= 2)
115 if (!NPVARIANT_IS_OBJECT(arguments
[0]))
118 if (!NPVARIANT_IS_STRING(arguments
[1]) && !NPVARIANT_IS_DOUBLE(arguments
[1]))
121 NPIdentifier propertyName
;
122 if (NPVARIANT_IS_STRING(arguments
[1])) {
123 string
propertyNameString(arguments
[1].value
.stringValue
.UTF8Characters
,
124 arguments
[1].value
.stringValue
.UTF8Length
);
126 propertyName
= pluginTest()->NPN_GetStringIdentifier(propertyNameString
.c_str());
128 int32_t number
= static_cast<int32_t>(arguments
[1].value
.doubleValue
);
129 propertyName
= pluginTest()->NPN_GetIntIdentifier(number
);
132 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments
[0]), propertyName
);
134 VOID_TO_NPVARIANT(*result
);
138 bool hasProperty(NPIdentifier propertyName
)
140 if (identifierIs(propertyName
, "testObject"))
146 bool getProperty(NPIdentifier propertyName
, NPVariant
* result
)
148 assert(identifierIs(propertyName
, "testObject"));
151 m_testObject
= TestObject::create(pluginTest());
153 OBJECT_TO_NPVARIANT(pluginTest()->NPN_RetainObject(m_testObject
), *result
);
158 NPObject
* m_testObject
;
161 NPError
NPP_GetValue(NPPVariable variable
, void* value
) override
{
162 if (variable
!= NPPVpluginScriptableNPObject
)
163 return NPERR_GENERIC_ERROR
;
165 *(NPObject
**)value
= PluginObject::create(this);
167 return NPERR_NO_ERROR
;
172 static PluginTest::Register
<NPRuntimeRemoveProperty
> npRuntimeRemoveProperty("npruntime-remove-property");