2009-01-12 19:06:21 -08:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008, Mozilla Corporation
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * 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.
|
|
|
|
* * Neither the name of the Mozilla Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT OWNER OR 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.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Josh Aas <josh@mozilla.com>
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef nptest_h_
|
|
|
|
#define nptest_h_
|
|
|
|
|
|
|
|
#include "mozilla-config.h"
|
|
|
|
|
|
|
|
#include "npapi.h"
|
|
|
|
#include "npfunctions.h"
|
|
|
|
#include "npruntime.h"
|
2009-01-17 03:20:40 -08:00
|
|
|
#include "prtypes.h"
|
2009-09-18 07:08:08 -07:00
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
|
|
|
|
2009-01-16 12:03:24 -08:00
|
|
|
typedef enum {
|
|
|
|
DM_DEFAULT,
|
|
|
|
DM_SOLID_COLOR
|
|
|
|
} DrawMode;
|
|
|
|
|
2009-09-18 07:08:08 -07:00
|
|
|
typedef enum {
|
|
|
|
FUNCTION_NONE,
|
|
|
|
FUNCTION_NPP_GETURL,
|
|
|
|
FUNCTION_NPP_GETURLNOTIFY,
|
|
|
|
FUNCTION_NPP_POSTURL,
|
2009-10-02 15:18:25 -07:00
|
|
|
FUNCTION_NPP_POSTURLNOTIFY,
|
|
|
|
FUNCTION_NPP_NEWSTREAM,
|
|
|
|
FUNCTION_NPP_WRITEREADY,
|
|
|
|
FUNCTION_NPP_WRITE,
|
2010-02-26 11:07:58 -08:00
|
|
|
FUNCTION_NPP_DESTROYSTREAM,
|
|
|
|
FUNCTION_NPP_WRITE_RPC
|
2009-09-18 07:08:08 -07:00
|
|
|
} TestFunction;
|
|
|
|
|
2010-04-20 23:21:46 -07:00
|
|
|
typedef enum {
|
|
|
|
ACTIVATION_STATE_UNKNOWN,
|
|
|
|
ACTIVATION_STATE_ACTIVATED,
|
|
|
|
ACTIVATION_STATE_DEACTIVATED
|
|
|
|
} ActivationState;
|
|
|
|
|
2009-10-02 15:18:25 -07:00
|
|
|
typedef struct FunctionTable {
|
|
|
|
TestFunction funcId;
|
2009-10-08 15:37:08 -07:00
|
|
|
const char* funcName;
|
2009-10-02 15:18:25 -07:00
|
|
|
} FunctionTable;
|
|
|
|
|
2009-09-18 07:08:08 -07:00
|
|
|
typedef enum {
|
|
|
|
POSTMODE_FRAME,
|
|
|
|
POSTMODE_STREAM
|
|
|
|
} PostMode;
|
|
|
|
|
2009-01-12 19:06:21 -08:00
|
|
|
typedef struct TestNPObject : NPObject {
|
|
|
|
NPP npp;
|
2009-01-16 12:03:24 -08:00
|
|
|
DrawMode drawMode;
|
2009-01-30 13:40:14 -08:00
|
|
|
PRUint32 drawColor; // 0xAARRGGBB
|
2009-01-12 19:06:21 -08:00
|
|
|
} TestNPObject;
|
|
|
|
|
2009-05-17 18:53:39 -07:00
|
|
|
typedef struct _PlatformData PlatformData;
|
|
|
|
|
2009-09-18 07:08:08 -07:00
|
|
|
typedef struct TestRange : NPByteRange {
|
|
|
|
bool waiting;
|
|
|
|
} TestRange;
|
|
|
|
|
2009-01-12 19:06:21 -08:00
|
|
|
typedef struct InstanceData {
|
|
|
|
NPP npp;
|
|
|
|
NPWindow window;
|
|
|
|
TestNPObject* scriptableObject;
|
2009-05-17 18:53:39 -07:00
|
|
|
PlatformData* platformData;
|
2009-10-08 15:37:08 -07:00
|
|
|
int32_t instanceCountWatchGeneration;
|
2009-03-31 18:07:19 -07:00
|
|
|
bool lastReportedPrivateModeState;
|
|
|
|
bool hasWidget;
|
2009-09-30 11:17:39 -07:00
|
|
|
bool npnNewStream;
|
2009-10-19 14:00:59 -07:00
|
|
|
bool throwOnNextInvoke;
|
2010-09-17 12:09:09 -07:00
|
|
|
bool runScriptOnPaint;
|
2010-01-22 17:13:26 -08:00
|
|
|
uint32_t timerID[2];
|
|
|
|
bool timerTestResult;
|
|
|
|
bool asyncCallbackResult;
|
2010-07-15 14:08:11 -07:00
|
|
|
bool invalidateDuringPaint;
|
2010-01-15 14:02:01 -08:00
|
|
|
int32_t winX;
|
|
|
|
int32_t winY;
|
2009-08-04 18:36:37 -07:00
|
|
|
int32_t lastMouseX;
|
|
|
|
int32_t lastMouseY;
|
2010-01-06 17:11:27 -08:00
|
|
|
int32_t widthAtLastPaint;
|
2009-11-03 10:39:42 -08:00
|
|
|
int32_t paintCount;
|
2009-10-02 15:18:25 -07:00
|
|
|
int32_t writeCount;
|
|
|
|
int32_t writeReadyCount;
|
2010-01-22 17:13:26 -08:00
|
|
|
int32_t asyncTestPhase;
|
2009-09-18 07:08:08 -07:00
|
|
|
TestFunction testFunction;
|
2009-10-02 15:18:25 -07:00
|
|
|
TestFunction functionToFail;
|
|
|
|
NPError failureCode;
|
2010-03-08 09:16:35 -08:00
|
|
|
NPObject* callOnDestroy;
|
2009-09-18 07:08:08 -07:00
|
|
|
PostMode postMode;
|
2009-10-07 16:48:31 -07:00
|
|
|
std::string testUrl;
|
|
|
|
std::string frame;
|
2010-01-22 17:13:26 -08:00
|
|
|
std::string timerTestScriptCallback;
|
|
|
|
std::string asyncTestScriptCallback;
|
2009-10-07 16:48:31 -07:00
|
|
|
std::ostringstream err;
|
2009-09-18 07:08:08 -07:00
|
|
|
uint16_t streamMode;
|
|
|
|
int32_t streamChunkSize;
|
|
|
|
int32_t streamBufSize;
|
|
|
|
int32_t fileBufSize;
|
|
|
|
TestRange* testrange;
|
|
|
|
void* streamBuf;
|
|
|
|
void* fileBuf;
|
2009-12-21 09:37:32 -08:00
|
|
|
bool crashOnDestroy;
|
2010-04-28 14:03:34 -07:00
|
|
|
bool cleanupWidget;
|
2010-04-20 23:21:46 -07:00
|
|
|
ActivationState topLevelWindowActivationState;
|
|
|
|
int32_t topLevelWindowActivationEventCount;
|
2010-04-25 13:58:03 -07:00
|
|
|
ActivationState focusState;
|
|
|
|
int32_t focusEventCount;
|
2010-04-20 23:21:46 -07:00
|
|
|
int32_t eventModel;
|
2009-01-12 19:06:21 -08:00
|
|
|
} InstanceData;
|
|
|
|
|
2010-01-06 17:11:27 -08:00
|
|
|
void notifyDidPaint(InstanceData* instanceData);
|
|
|
|
|
2010-04-20 20:33:14 -07:00
|
|
|
void NoteIntentionalCrash();
|
|
|
|
|
2009-01-12 19:06:21 -08:00
|
|
|
#endif // nptest_h_
|