blob: 5631d71b02f2f45bc89d91e17a761dc5772dbcad [file] [log] [blame]
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* Tests the JSClass::getProperty hook
*/
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "tests.h"
int called_test_fn;
int called_test_prop_get;
static JSBool test_prop_get( JSContext *cx, JS::HandleObject obj, JS::HandleId id, JS::MutableHandleValue vp )
{
called_test_prop_get++;
return JS_TRUE;
}
static JSBool
PTest(JSContext* cx, unsigned argc, jsval *vp);
static JSClass ptestClass = {
"PTest",
JSCLASS_HAS_PRIVATE,
JS_PropertyStub, // add
JS_DeletePropertyStub, // delete
test_prop_get, // get
JS_StrictPropertyStub, // set
JS_EnumerateStub,
JS_ResolveStub,
JS_ConvertStub
};
static JSBool
PTest(JSContext* cx, unsigned argc, jsval *vp)
{
JSObject *obj = JS_NewObjectForConstructor(cx, &ptestClass, vp);
if (!obj)
return JS_FALSE;
JS_SET_RVAL(cx, vp, OBJECT_TO_JSVAL(obj));
return JS_TRUE;
}
static JSBool test_fn(JSContext *cx, unsigned argc, jsval *vp)
{
called_test_fn++;
return JS_TRUE;
}
static const JSFunctionSpec ptestFunctions[] = {
JS_FS( "test_fn", test_fn, 0, 0 ),
JS_FS_END
};
BEGIN_TEST(testClassGetter_isCalled)
{
CHECK(JS_InitClass(cx, global, NULL, &ptestClass, PTest, 0,
NULL, ptestFunctions, NULL, NULL));
EXEC("function check() { var o = new PTest(); o.test_fn(); o.test_value1; o.test_value2; o.test_value1; }");
for (int i = 1; i < 9; i++) {
JS::RootedValue rval(cx);
CHECK(JS_CallFunctionName(cx, global, "check", 0, NULL, rval.address()));
CHECK_SAME(INT_TO_JSVAL(called_test_fn), INT_TO_JSVAL(i));
CHECK_SAME(INT_TO_JSVAL(called_test_prop_get), INT_TO_JSVAL(4 * i));
}
return true;
}
END_TEST(testClassGetter_isCalled)