summaryrefslogtreecommitdiff
path: root/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/URLRedirect.cpp
blob: b834703da5eaf1d4d23a7cf697034da3b5cad87b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*
 * Copyright (C) 2014 Apple Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "PluginTest.h"

#include <string.h>

using namespace std;

class URLRedirect : public PluginTest {
public:
    URLRedirect(NPP npp, const string& identifier)
        : PluginTest(npp, identifier)
    {
    }

    struct Redirect {
        int redirectsRemaining;
        bool async;
        bool hasFired;
    };

    std::map<void*, Redirect> redirects;

private:
    // This is the test object.
    class TestObject : public Object<TestObject> { };

    // This is the scriptable object. It has a single "testObject" property and an "evaluate" function.
    class ScriptableObject : public Object<ScriptableObject> {
    public:
        bool hasMethod(NPIdentifier methodName)
        {
            return identifierIs(methodName, "get") || identifierIs(methodName, "getAsync") || identifierIs(methodName, "serviceAsync");
        }

        bool get(const NPVariant* args, uint32_t argCount, NPVariant* result, bool async)
        {
            if (argCount != 3 || !NPVARIANT_IS_STRING(args[0]) || !(NPVARIANT_IS_BOOLEAN(args[1]) || NPVARIANT_IS_DOUBLE(args[1]) || NPVARIANT_IS_INT32(args[1])) || !NPVARIANT_IS_STRING(args[2]))
                return false;

            const NPString* notifyString = &NPVARIANT_TO_STRING(args[2]);
            basic_string<NPUTF8> notify(notifyString->UTF8Characters, notifyString->UTF8Length);
            NPIdentifier notifyMethod = pluginTest()->NPN_GetStringIdentifier(notify.c_str());

            Redirect& redirect = static_cast<URLRedirect*>(pluginTest())->redirects[reinterpret_cast<void*>(notifyMethod)];
            if (NPVARIANT_IS_DOUBLE(args[1]))
                redirect.redirectsRemaining = NPVARIANT_TO_DOUBLE(args[1]);
            else if (NPVARIANT_IS_INT32(args[1]))
                redirect.redirectsRemaining = NPVARIANT_TO_INT32(args[1]);
            else if (NPVARIANT_IS_BOOLEAN(args[1]))
                redirect.redirectsRemaining = NPVARIANT_TO_BOOLEAN(args[1]);
            redirect.async = async;
            redirect.hasFired = true;

            const NPString* urlString = &NPVARIANT_TO_STRING(args[0]);
            basic_string<NPUTF8> url(urlString->UTF8Characters, urlString->UTF8Length);

            pluginTest()->NPN_GetURLNotify(url.c_str(), 0, reinterpret_cast<void*>(notifyMethod));

            VOID_TO_NPVARIANT(*result);
            return true;
        }

        bool serviceAsync(const NPVariant* args, uint32_t argCount, NPVariant* result)
        {
            if (argCount)
                return false;

            NPBool seen = 0;
            URLRedirect* plugin = static_cast<URLRedirect*>(pluginTest());
            for (auto& redirect : plugin->redirects) {
                if (redirect.second.hasFired)
                    continue;
                redirect.second.hasFired = true;
                plugin->NPN_URLRedirectResponse(redirect.first, redirect.second.redirectsRemaining);
                if (redirect.second.redirectsRemaining)
                    --redirect.second.redirectsRemaining;
                seen = 1;
            }

            BOOLEAN_TO_NPVARIANT(seen, *result);
            return true;
        }

        bool invoke(NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result)
        {
            if (identifierIs(methodName, "get"))
                return get(args, argCount, result, false);

            if (identifierIs(methodName, "getAsync"))
                return get(args, argCount, result, true);

            if (identifierIs(methodName, "serviceAsync"))
                return serviceAsync(args, argCount, result);

            return false;
        }
    };

    virtual NPError NPP_GetValue(NPPVariable variable, void *value)
    {
        if (variable != NPPVpluginScriptableNPObject)
            return NPERR_GENERIC_ERROR;

        *(NPObject**)value = ScriptableObject::create(this);

        return NPERR_NO_ERROR;
    }

    virtual bool NPP_URLNotify(const char* url, NPReason reason, void* notifyData)
    {
        NPVariant args[2];

        NPObject* windowScriptObject;
        NPN_GetValue(NPNVWindowNPObject, &windowScriptObject);

        NPIdentifier callbackIdentifier = notifyData;

        INT32_TO_NPVARIANT(reason, args[0]);
        STRINGZ_TO_NPVARIANT(url, args[1]);

        NPVariant browserResult;
        if (NPN_Invoke(windowScriptObject, callbackIdentifier, args, 2, &browserResult))
            NPN_ReleaseVariantValue(&browserResult);

        return true;
    }

    virtual void NPP_URLRedirectNotify(const char*, int32_t, void* notifyData)
    {
        Redirect& redirect = redirects[notifyData];
        if (redirect.async) {
            redirect.hasFired = false;
            return;
        }

        NPN_URLRedirectResponse(notifyData, redirect.redirectsRemaining);
        if (redirect.redirectsRemaining)
            --redirect.redirectsRemaining;
    }
};

static PluginTest::Register<URLRedirect> urlRedirect("url-redirect");