2 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #import <JavaScriptCore/JavaScriptCore.h>
28 #import "CurrentThisInsideBlockGetterTest.h"
30 #import "JSExportTests.h"
32 extern "C" void JSSynchronousGarbageCollectForDebugging(JSContextRef);
33 extern "C" void JSSynchronousEdenCollectForDebugging(JSContextRef);
35 extern "C" bool _Block_has_signature(id);
36 extern "C" const char * _Block_signature(id);
39 extern "C" void testObjectiveCAPI(void);
40 extern "C" void checkResult(NSString *, bool);
42 #if JSC_OBJC_API_ENABLED
44 @interface UnexportedObject : NSObject
47 @implementation UnexportedObject
50 @protocol ParentObject <JSExport>
53 @interface ParentObject : NSObject<ParentObject>
54 + (NSString *)parentTest;
57 @implementation ParentObject
58 + (NSString *)parentTest
60 return [self description];
64 @protocol TestObject <JSExport>
66 @property int variable;
67 @property (readonly) int six;
68 @property CGPoint point;
69 + (NSString *)classTest;
70 + (NSString *)parentTest;
71 - (NSString *)getString;
72 JSExportAs(testArgumentTypes,
73 - (NSString *)testArgumentTypesWithInt:(int)i double:(double)d boolean:(BOOL)b string:(NSString *)s number:(NSNumber *)n array:(NSArray *)a dictionary:(NSDictionary *)o
75 - (void)callback:(JSValue *)function;
76 - (void)bogusCallback:(void(^)(int))function;
79 @interface TestObject : ParentObject <TestObject>
84 @implementation TestObject
90 return [[TestObject alloc] init];
92 + (NSString *)classTest
94 return @"classTest - okay";
96 - (NSString *)getString
100 - (NSString *)testArgumentTypesWithInt:(int)i double:(double)d boolean:(BOOL)b string:(NSString *)s number:(NSNumber *)n array:(NSArray *)a dictionary:(NSDictionary *)o
102 return [NSString stringWithFormat:@"%d,%g,%d,%@,%d,%@,%@", i, d, b==YES?true:false,s,[n intValue],a[1],o[@"x"]];
104 - (void)callback:(JSValue *)function
106 [function callWithArguments:[NSArray arrayWithObject:[NSNumber numberWithInt:42]]];
108 - (void)bogusCallback:(void(^)(int))function
114 bool testXYZTested = false;
116 @protocol TextXYZ <JSExport>
117 - (id)initWithString:(NSString*)string;
119 @property (readonly) int y;
120 @property (assign) JSValue *onclick;
121 @property (assign) JSValue *weakOnclick;
122 - (void)test:(NSString *)message;
125 @interface TextXYZ : NSObject <TextXYZ>
132 @implementation TextXYZ {
133 JSManagedValue *m_weakOnclickHandler;
134 JSManagedValue *m_onclickHandler;
139 - (id)initWithString:(NSString*)string
145 NSLog(@"%@", string);
149 - (void)test:(NSString *)message
151 testXYZTested = [message isEqual:@"test"] && x == 13 & y == 4 && z == 5;
153 - (void)setWeakOnclick:(JSValue *)value
155 m_weakOnclickHandler = [JSManagedValue managedValueWithValue:value];
158 - (void)setOnclick:(JSValue *)value
160 m_onclickHandler = [JSManagedValue managedValueWithValue:value];
161 [value.context.virtualMachine addManagedReference:m_onclickHandler withOwner:self];
163 - (JSValue *)weakOnclick
165 return [m_weakOnclickHandler value];
169 return [m_onclickHandler value];
173 if (!m_onclickHandler)
176 JSValue *function = [m_onclickHandler value];
177 [function callWithArguments:[NSArray array]];
183 @protocol TinyDOMNode <JSExport>
184 - (void)appendChild:(TinyDOMNode *)child;
185 - (NSUInteger)numberOfChildren;
186 - (TinyDOMNode *)childAtIndex:(NSUInteger)index;
187 - (void)removeChildAtIndex:(NSUInteger)index;
190 @interface TinyDOMNode : NSObject<TinyDOMNode>
193 @implementation TinyDOMNode {
194 NSMutableArray *m_children;
195 JSVirtualMachine *m_sharedVirtualMachine;
198 - (id)initWithVirtualMachine:(JSVirtualMachine *)virtualMachine
204 m_children = [[NSMutableArray alloc] initWithCapacity:0];
205 m_sharedVirtualMachine = virtualMachine;
206 #if !__has_feature(objc_arc)
207 [m_sharedVirtualMachine retain];
213 - (void)appendChild:(TinyDOMNode *)child
215 [m_sharedVirtualMachine addManagedReference:child withOwner:self];
216 [m_children addObject:child];
219 - (NSUInteger)numberOfChildren
221 return [m_children count];
224 - (TinyDOMNode *)childAtIndex:(NSUInteger)index
226 if (index >= [m_children count])
228 return [m_children objectAtIndex:index];
231 - (void)removeChildAtIndex:(NSUInteger)index
233 if (index >= [m_children count])
235 [m_sharedVirtualMachine removeManagedReference:[m_children objectAtIndex:index] withOwner:self];
236 [m_children removeObjectAtIndex:index];
241 @interface JSCollection : NSObject
242 - (void)setValue:(JSValue *)value forKey:(NSString *)key;
243 - (JSValue *)valueForKey:(NSString *)key;
246 @implementation JSCollection {
247 NSMutableDictionary *_dict;
255 _dict = [[NSMutableDictionary alloc] init];
260 - (void)setValue:(JSValue *)value forKey:(NSString *)key
262 JSManagedValue *oldManagedValue = [_dict objectForKey:key];
263 if (oldManagedValue) {
264 JSValue* oldValue = [oldManagedValue value];
266 [oldValue.context.virtualMachine removeManagedReference:oldManagedValue withOwner:self];
268 JSManagedValue *managedValue = [JSManagedValue managedValueWithValue:value];
269 [value.context.virtualMachine addManagedReference:managedValue withOwner:self];
270 [_dict setObject:managedValue forKey:key];
273 - (JSValue *)valueForKey:(NSString *)key
275 JSManagedValue *managedValue = [_dict objectForKey:key];
278 return [managedValue value];
282 @protocol InitA <JSExport>
283 - (id)initWithA:(int)a;
287 @protocol InitB <JSExport>
288 - (id)initWithA:(int)a b:(int)b;
291 @protocol InitC <JSExport>
295 @interface ClassA : NSObject<InitA>
298 @interface ClassB : ClassA<InitB>
301 @interface ClassC : ClassB<InitA, InitB>
304 @interface ClassCPrime : ClassB<InitA, InitC>
307 @interface ClassD : NSObject<InitA>
308 - (id)initWithA:(int)a;
311 @interface ClassE : ClassD
312 - (id)initWithA:(int)a;
315 @implementation ClassA {
318 - (id)initWithA:(int)a
334 @implementation ClassB {
337 - (id)initWithA:(int)a b:(int)b
339 self = [super initWithA:a];
349 @implementation ClassC {
352 - (id)initWithA:(int)a
354 return [self initWithA:a b:0];
356 - (id)initWithA:(int)a b:(int)b
358 self = [super initWithA:a b:b];
368 @implementation ClassCPrime
369 - (id)initWithA:(int)a
371 self = [super initWithA:a b:0];
378 return [self initWithA:42];
382 @implementation ClassD
384 - (id)initWithA:(int)a
387 return [[ClassE alloc] initWithA:a];
395 @implementation ClassE {
399 - (id)initWithA:(int)a
411 static bool evilAllocationObjectWasDealloced = false;
413 @interface EvilAllocationObject : NSObject
414 - (JSValue *)doEvilThingsWithContext:(JSContext *)context;
417 @implementation EvilAllocationObject {
418 JSContext *m_context;
420 - (id)initWithContext:(JSContext *)context
432 [self doEvilThingsWithContext:m_context];
433 evilAllocationObjectWasDealloced = true;
434 #if !__has_feature(objc_arc)
439 - (JSValue *)doEvilThingsWithContext:(JSContext *)context
441 JSValue *result = [context evaluateScript:@" \
445 for (var i = 0; i < 10000; ++i) { \
452 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
457 extern "C" void checkResult(NSString *description, bool passed)
459 NSLog(@"TEST: \"%@\": %@", description, passed ? @"PASSED" : @"FAILED");
464 static bool blockSignatureContainsClass()
466 static bool containsClass = ^{
467 id block = ^(NSString *string){ return string; };
468 return _Block_has_signature(block) && strstr(_Block_signature(block), "NSString");
470 return containsClass;
473 void testObjectiveCAPI()
475 NSLog(@"Testing Objective-C API");
478 JSVirtualMachine* vm = [[JSVirtualMachine alloc] init];
479 JSContext* context = [[JSContext alloc] initWithVirtualMachine:vm];
480 [context evaluateScript:@"bad"];
484 JSContext *context = [[JSContext alloc] init];
485 JSValue *result = [context evaluateScript:@"2 + 2"];
486 checkResult(@"2 + 2", [result isNumber] && [result toInt32] == 4);
490 JSContext *context = [[JSContext alloc] init];
491 NSString *result = [NSString stringWithFormat:@"Two plus two is %@", [context evaluateScript:@"2 + 2"]];
492 checkResult(@"stringWithFormat", [result isEqual:@"Two plus two is 4"]);
496 JSContext *context = [[JSContext alloc] init];
497 context[@"message"] = @"Hello";
498 JSValue *result = [context evaluateScript:@"message + ', World!'"];
499 checkResult(@"Hello, World!", [result isString] && [result isEqualToObject:@"Hello, World!"]);
503 JSContext *context = [[JSContext alloc] init];
504 JSValue *result = [context evaluateScript:@"({ x:42 })"];
505 checkResult(@"({ x:42 })", [result isObject] && [result[@"x"] isEqualToObject:@42]);
506 id obj = [result toObject];
507 checkResult(@"Check dictionary literal", [obj isKindOfClass:[NSDictionary class]]);
508 id num = (NSDictionary *)obj[@"x"];
509 checkResult(@"Check numeric literal", [num isKindOfClass:[NSNumber class]]);
513 JSCollection* myPrivateProperties = [[JSCollection alloc] init];
516 JSContext* context = [[JSContext alloc] init];
517 TestObject* rootObject = [TestObject testObject];
518 context[@"root"] = rootObject;
519 [context.virtualMachine addManagedReference:myPrivateProperties withOwner:rootObject];
520 [myPrivateProperties setValue:[JSValue valueWithBool:true inContext:context] forKey:@"is_ham"];
521 [myPrivateProperties setValue:[JSValue valueWithObject:@"hello!" inContext:context] forKey:@"message"];
522 [myPrivateProperties setValue:[JSValue valueWithInt32:42 inContext:context] forKey:@"my_number"];
523 [myPrivateProperties setValue:[JSValue valueWithNullInContext:context] forKey:@"definitely_null"];
524 [myPrivateProperties setValue:[JSValue valueWithUndefinedInContext:context] forKey:@"not_sure_if_undefined"];
526 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
528 JSValue *isHam = [myPrivateProperties valueForKey:@"is_ham"];
529 JSValue *message = [myPrivateProperties valueForKey:@"message"];
530 JSValue *myNumber = [myPrivateProperties valueForKey:@"my_number"];
531 JSValue *definitelyNull = [myPrivateProperties valueForKey:@"definitely_null"];
532 JSValue *notSureIfUndefined = [myPrivateProperties valueForKey:@"not_sure_if_undefined"];
533 checkResult(@"is_ham is true", [isHam isBoolean] && [isHam toBool]);
534 checkResult(@"message is hello!", [message isString] && [@"hello!" isEqualToString:[message toString]]);
535 checkResult(@"my_number is 42", [myNumber isNumber] && [myNumber toInt32] == 42);
536 checkResult(@"definitely_null is null", [definitelyNull isNull]);
537 checkResult(@"not_sure_if_undefined is undefined", [notSureIfUndefined isUndefined]);
540 checkResult(@"is_ham is nil", ![myPrivateProperties valueForKey:@"is_ham"]);
541 checkResult(@"message is nil", ![myPrivateProperties valueForKey:@"message"]);
542 checkResult(@"my_number is 42", ![myPrivateProperties valueForKey:@"my_number"]);
543 checkResult(@"definitely_null is null", ![myPrivateProperties valueForKey:@"definitely_null"]);
544 checkResult(@"not_sure_if_undefined is undefined", ![myPrivateProperties valueForKey:@"not_sure_if_undefined"]);
548 JSContext *context = [[JSContext alloc] init];
549 JSValue *message = [JSValue valueWithObject:@"hello" inContext:context];
550 TestObject *rootObject = [TestObject testObject];
551 JSCollection *collection = [[JSCollection alloc] init];
552 context[@"root"] = rootObject;
554 JSValue *jsCollection = [JSValue valueWithObject:collection inContext:context];
555 JSManagedValue *weakCollection = [JSManagedValue managedValueWithValue:jsCollection andOwner:rootObject];
556 [context.virtualMachine addManagedReference:weakCollection withOwner:message];
557 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
562 JSContext *context = [[JSContext alloc] init];
564 context[@"blockCallback"] = ^(int value){
567 [context evaluateScript:@"blockCallback(42)"];
568 checkResult(@"blockCallback", result == 42);
571 if (blockSignatureContainsClass()) {
573 JSContext *context = [[JSContext alloc] init];
574 __block bool result = false;
575 context[@"blockCallback"] = ^(NSString *value){
576 result = [@"42" isEqualToString:value] == YES;
578 [context evaluateScript:@"blockCallback(42)"];
579 checkResult(@"blockCallback(NSString *)", result);
582 NSLog(@"Skipping 'blockCallback(NSString *)' test case");
585 JSContext *context = [[JSContext alloc] init];
586 checkResult(@"!context.exception", !context.exception);
587 [context evaluateScript:@"!@#$%^&*() THIS IS NOT VALID JAVASCRIPT SYNTAX !@#$%^&*()"];
588 checkResult(@"context.exception", context.exception);
592 JSContext *context = [[JSContext alloc] init];
593 __block bool caught = false;
594 context.exceptionHandler = ^(JSContext *context, JSValue *exception) {
599 [context evaluateScript:@"!@#$%^&*() THIS IS NOT VALID JAVASCRIPT SYNTAX !@#$%^&*()"];
600 checkResult(@"JSContext.exceptionHandler", caught);
604 JSContext *context = [[JSContext alloc] init];
605 __block int expectedExceptionLineNumber = 1;
606 __block bool sawExpectedExceptionLineNumber = false;
607 context.exceptionHandler = ^(JSContext *, JSValue *exception) {
608 sawExpectedExceptionLineNumber = [exception[@"line"] toInt32] == expectedExceptionLineNumber;
610 [context evaluateScript:@"!@#$%^&*() THIS IS NOT VALID JAVASCRIPT SYNTAX !@#$%^&*()"];
611 checkResult(@"evaluteScript exception on line 1", sawExpectedExceptionLineNumber);
613 expectedExceptionLineNumber = 2;
614 sawExpectedExceptionLineNumber = false;
615 [context evaluateScript:@"// Line 1\n!@#$%^&*() THIS IS NOT VALID JAVASCRIPT SYNTAX !@#$%^&*()"];
616 checkResult(@"evaluteScript exception on line 2", sawExpectedExceptionLineNumber);
620 JSContext *context = [[JSContext alloc] init];
621 __block bool emptyExceptionSourceURL = false;
622 context.exceptionHandler = ^(JSContext *, JSValue *exception) {
623 emptyExceptionSourceURL = [exception[@"sourceURL"] isUndefined];
625 [context evaluateScript:@"!@#$%^&*() THIS IS NOT VALID JAVASCRIPT SYNTAX !@#$%^&*()"];
626 checkResult(@"evaluteScript: exception has no sourceURL", emptyExceptionSourceURL);
628 __block NSString *exceptionSourceURL = nil;
629 context.exceptionHandler = ^(JSContext *, JSValue *exception) {
630 exceptionSourceURL = [exception[@"sourceURL"] toString];
632 NSURL *url = [NSURL fileURLWithPath:@"/foo/bar.js"];
633 [context evaluateScript:@"!@#$%^&*() THIS IS NOT VALID JAVASCRIPT SYNTAX !@#$%^&*()" withSourceURL:url];
634 checkResult(@"evaluateScript:withSourceURL: exception has expected sourceURL", [exceptionSourceURL isEqualToString:[url absoluteString]]);
638 JSContext *context = [[JSContext alloc] init];
639 context[@"callback"] = ^{
640 JSContext *context = [JSContext currentContext];
641 context.exception = [JSValue valueWithNewErrorFromMessage:@"Something went wrong." inContext:context];
643 JSValue *result = [context evaluateScript:@"var result; try { callback(); } catch (e) { result = 'Caught exception'; }"];
644 checkResult(@"Explicit throw in callback - was caught by JavaScript", [result isEqualToObject:@"Caught exception"]);
645 checkResult(@"Explicit throw in callback - not thrown to Objective-C", !context.exception);
649 JSContext *context = [[JSContext alloc] init];
650 context[@"callback"] = ^{
651 JSContext *context = [JSContext currentContext];
652 [context evaluateScript:@"!@#$%^&*() THIS IS NOT VALID JAVASCRIPT SYNTAX !@#$%^&*()"];
654 JSValue *result = [context evaluateScript:@"var result; try { callback(); } catch (e) { result = 'Caught exception'; }"];
655 checkResult(@"Implicit throw in callback - was caught by JavaScript", [result isEqualToObject:@"Caught exception"]);
656 checkResult(@"Implicit throw in callback - not thrown to Objective-C", !context.exception);
660 JSContext *context = [[JSContext alloc] init];
661 [context evaluateScript:
662 @"function sum(array) { \
664 for (var i in array) \
665 result += array[i]; \
668 JSValue *array = [JSValue valueWithObject:@[@13, @2, @7] inContext:context];
669 JSValue *sumFunction = context[@"sum"];
670 JSValue *result = [sumFunction callWithArguments:@[ array ]];
671 checkResult(@"sum([13, 2, 7])", [result toInt32] == 22);
675 JSContext *context = [[JSContext alloc] init];
676 JSValue *mulAddFunction = [context evaluateScript:
677 @"(function(array, object) { \
679 for (var i in array) \
680 result.push(array[i] * object.x + object.y); \
683 JSValue *result = [mulAddFunction callWithArguments:@[ @[ @2, @4, @8 ], @{ @"x":@0.5, @"y":@42 } ]];
684 checkResult(@"mulAddFunction", [result isObject] && [[result toString] isEqual:@"43,44,46"]);
688 JSContext *context = [[JSContext alloc] init];
689 JSValue *array = [JSValue valueWithNewArrayInContext:context];
690 checkResult(@"arrayLengthEmpty", [[array[@"length"] toNumber] unsignedIntegerValue] == 0);
691 JSValue *value1 = [JSValue valueWithInt32:42 inContext:context];
692 JSValue *value2 = [JSValue valueWithInt32:24 inContext:context];
693 NSUInteger lowIndex = 5;
694 NSUInteger maxLength = UINT_MAX;
696 [array setValue:value1 atIndex:lowIndex];
697 checkResult(@"array.length after put to low index", [[array[@"length"] toNumber] unsignedIntegerValue] == (lowIndex + 1));
699 [array setValue:value1 atIndex:(maxLength - 1)];
700 checkResult(@"array.length after put to maxLength - 1", [[array[@"length"] toNumber] unsignedIntegerValue] == maxLength);
702 [array setValue:value2 atIndex:maxLength];
703 checkResult(@"array.length after put to maxLength", [[array[@"length"] toNumber] unsignedIntegerValue] == maxLength);
705 [array setValue:value2 atIndex:(maxLength + 1)];
706 checkResult(@"array.length after put to maxLength + 1", [[array[@"length"] toNumber] unsignedIntegerValue] == maxLength);
708 if (sizeof(NSUInteger) == 8)
709 checkResult(@"valueAtIndex:0 is undefined", [[array valueAtIndex:0] isUndefined]);
711 checkResult(@"valueAtIndex:0", [[array valueAtIndex:0] toInt32] == 24);
712 checkResult(@"valueAtIndex:lowIndex", [[array valueAtIndex:lowIndex] toInt32] == 42);
713 checkResult(@"valueAtIndex:maxLength - 1", [[array valueAtIndex:(maxLength - 1)] toInt32] == 42);
714 checkResult(@"valueAtIndex:maxLength", [[array valueAtIndex:maxLength] toInt32] == 24);
715 checkResult(@"valueAtIndex:maxLength + 1", [[array valueAtIndex:(maxLength + 1)] toInt32] == 24);
719 JSContext *context = [[JSContext alloc] init];
720 JSValue *object = [JSValue valueWithNewObjectInContext:context];
722 object[@"point"] = @{ @"x":@1, @"y":@2 };
723 object[@"point"][@"x"] = @3;
724 CGPoint point = [object[@"point"] toPoint];
725 checkResult(@"toPoint", point.x == 3 && point.y == 2);
727 object[@{ @"toString":^{ return @"foo"; } }] = @"bar";
728 checkResult(@"toString in object literal used as subscript", [[object[@"foo"] toString] isEqual:@"bar"]);
730 object[[@"foobar" substringToIndex:3]] = @"bar";
731 checkResult(@"substring used as subscript", [[object[@"foo"] toString] isEqual:@"bar"]);
735 JSContext *context = [[JSContext alloc] init];
736 TextXYZ *testXYZ = [[TextXYZ alloc] init];
737 context[@"testXYZ"] = testXYZ;
741 [context evaluateScript:@"testXYZ.x = 13; testXYZ.y = 14;"];
742 [context evaluateScript:@"testXYZ.test('test')"];
743 checkResult(@"TextXYZ - testXYZTested", testXYZTested);
744 JSValue *result = [context evaluateScript:@"testXYZ.x + ',' + testXYZ.y + ',' + testXYZ.z"];
745 checkResult(@"TextXYZ - result", [result isEqualToObject:@"13,4,undefined"]);
749 JSContext *context = [[JSContext alloc] init];
750 [context[@"Object"][@"prototype"] defineProperty:@"getterProperty" descriptor:@{
751 JSPropertyDescriptorGetKey:^{
752 return [JSContext currentThis][@"x"];
755 JSValue *object = [JSValue valueWithObject:@{ @"x":@101 } inContext:context];
756 int result = [object [@"getterProperty"] toInt32];
757 checkResult(@"getterProperty", result == 101);
761 JSContext *context = [[JSContext alloc] init];
762 context[@"concatenate"] = ^{
763 NSArray *arguments = [JSContext currentArguments];
764 if (![arguments count])
766 NSString *message = [arguments[0] description];
767 for (NSUInteger index = 1; index < [arguments count]; ++index)
768 message = [NSString stringWithFormat:@"%@ %@", message, arguments[index]];
771 JSValue *result = [context evaluateScript:@"concatenate('Hello,', 'World!')"];
772 checkResult(@"concatenate", [result isEqualToObject:@"Hello, World!"]);
776 JSContext *context = [[JSContext alloc] init];
777 context[@"foo"] = @YES;
778 checkResult(@"@YES is boolean", [context[@"foo"] isBoolean]);
779 JSValue *result = [context evaluateScript:@"typeof foo"];
780 checkResult(@"@YES is boolean", [result isEqualToObject:@"boolean"]);
784 JSContext *context = [[JSContext alloc] init];
785 JSValue *result = [context evaluateScript:@"String(console)"];
786 checkResult(@"String(console)", [result isEqualToObject:@"[object Console]"]);
787 result = [context evaluateScript:@"typeof console.log"];
788 checkResult(@"typeof console.log", [result isEqualToObject:@"function"]);
792 JSContext *context = [[JSContext alloc] init];
793 TestObject* testObject = [TestObject testObject];
794 context[@"testObject"] = testObject;
795 JSValue *result = [context evaluateScript:@"String(testObject)"];
796 checkResult(@"String(testObject)", [result isEqualToObject:@"[object TestObject]"]);
800 JSContext *context = [[JSContext alloc] init];
801 TestObject* testObject = [TestObject testObject];
802 context[@"testObject"] = testObject;
803 JSValue *result = [context evaluateScript:@"String(testObject.__proto__)"];
804 checkResult(@"String(testObject.__proto__)", [result isEqualToObject:@"[object TestObjectPrototype]"]);
808 JSContext *context = [[JSContext alloc] init];
809 context[@"TestObject"] = [TestObject class];
810 JSValue *result = [context evaluateScript:@"String(TestObject)"];
811 checkResult(@"String(TestObject)", [result isEqualToObject:@"function TestObject() {\n [native code]\n}"]);
815 JSContext *context = [[JSContext alloc] init];
816 JSValue* value = [JSValue valueWithObject:[TestObject class] inContext:context];
817 checkResult(@"[value toObject] == [TestObject class]", [value toObject] == [TestObject class]);
821 JSContext *context = [[JSContext alloc] init];
822 context[@"TestObject"] = [TestObject class];
823 JSValue *result = [context evaluateScript:@"TestObject.parentTest()"];
824 checkResult(@"TestObject.parentTest()", [result isEqualToObject:@"TestObject"]);
828 JSContext *context = [[JSContext alloc] init];
829 TestObject* testObject = [TestObject testObject];
830 context[@"testObjectA"] = testObject;
831 context[@"testObjectB"] = testObject;
832 JSValue *result = [context evaluateScript:@"testObjectA == testObjectB"];
833 checkResult(@"testObjectA == testObjectB", [result isBoolean] && [result toBool]);
837 JSContext *context = [[JSContext alloc] init];
838 TestObject* testObject = [TestObject testObject];
839 context[@"testObject"] = testObject;
840 testObject.point = (CGPoint){3,4};
841 JSValue *result = [context evaluateScript:@"var result = JSON.stringify(testObject.point); testObject.point = {x:12,y:14}; result"];
842 checkResult(@"testObject.point - result", [result isEqualToObject:@"{\"x\":3,\"y\":4}"]);
843 checkResult(@"testObject.point - {x:12,y:14}", testObject.point.x == 12 && testObject.point.y == 14);
847 JSContext *context = [[JSContext alloc] init];
848 TestObject* testObject = [TestObject testObject];
850 context[@"testObject"] = testObject;
851 context[@"mul"] = ^(int x, int y){ return x * y; };
852 JSValue *result = [context evaluateScript:@"mul(testObject.six, 7)"];
853 checkResult(@"mul(testObject.six, 7)", [result isNumber] && [result toInt32] == 42);
857 JSContext *context = [[JSContext alloc] init];
858 TestObject* testObject = [TestObject testObject];
859 context[@"testObject"] = testObject;
860 context[@"testObject"][@"variable"] = @4;
861 [context evaluateScript:@"++testObject.variable"];
862 checkResult(@"++testObject.variable", testObject.variable == 5);
866 JSContext *context = [[JSContext alloc] init];
867 context[@"point"] = @{ @"x":@6, @"y":@7 };
868 JSValue *result = [context evaluateScript:@"point.x + ',' + point.y"];
869 checkResult(@"point.x + ',' + point.y", [result isEqualToObject:@"6,7"]);
873 JSContext *context = [[JSContext alloc] init];
874 context[@"point"] = @{ @"x":@6, @"y":@7 };
875 JSValue *result = [context evaluateScript:@"point.x + ',' + point.y"];
876 checkResult(@"point.x + ',' + point.y", [result isEqualToObject:@"6,7"]);
880 JSContext *context = [[JSContext alloc] init];
881 TestObject* testObject = [TestObject testObject];
882 context[@"testObject"] = testObject;
883 JSValue *result = [context evaluateScript:@"testObject.getString()"];
884 checkResult(@"testObject.getString()", [result isString] && [result toInt32] == 42);
888 JSContext *context = [[JSContext alloc] init];
889 TestObject* testObject = [TestObject testObject];
890 context[@"testObject"] = testObject;
891 JSValue *result = [context evaluateScript:@"testObject.testArgumentTypes(101,0.5,true,'foo',666,[false,'bar',false],{x:'baz'})"];
892 checkResult(@"testObject.testArgumentTypes", [result isEqualToObject:@"101,0.5,1,foo,666,bar,baz"]);
896 JSContext *context = [[JSContext alloc] init];
897 TestObject* testObject = [TestObject testObject];
898 context[@"testObject"] = testObject;
899 JSValue *result = [context evaluateScript:@"testObject.getString.call(testObject)"];
900 checkResult(@"testObject.getString.call(testObject)", [result isString] && [result toInt32] == 42);
904 JSContext *context = [[JSContext alloc] init];
905 TestObject* testObject = [TestObject testObject];
906 context[@"testObject"] = testObject;
907 checkResult(@"testObject.getString.call({}) pre", !context.exception);
908 [context evaluateScript:@"testObject.getString.call({})"];
909 checkResult(@"testObject.getString.call({}) post", context.exception);
913 JSContext *context = [[JSContext alloc] init];
914 TestObject* testObject = [TestObject testObject];
915 context[@"testObject"] = testObject;
916 JSValue *result = [context evaluateScript:@"var result = 0; testObject.callback(function(x){ result = x; }); result"];
917 checkResult(@"testObject.callback", [result isNumber] && [result toInt32] == 42);
918 result = [context evaluateScript:@"testObject.bogusCallback"];
919 checkResult(@"testObject.bogusCallback == undefined", [result isUndefined]);
923 JSContext *context = [[JSContext alloc] init];
924 TestObject *testObject = [TestObject testObject];
925 context[@"testObject"] = testObject;
926 JSValue *result = [context evaluateScript:@"Function.prototype.toString.call(testObject.callback)"];
927 checkResult(@"Function.prototype.toString", !context.exception && ![result isUndefined]);
931 JSContext *context1 = [[JSContext alloc] init];
932 JSContext *context2 = [[JSContext alloc] initWithVirtualMachine:context1.virtualMachine];
933 JSValue *value = [JSValue valueWithDouble:42 inContext:context2];
934 context1[@"passValueBetweenContexts"] = value;
935 JSValue *result = [context1 evaluateScript:@"passValueBetweenContexts"];
936 checkResult(@"[value isEqualToObject:result]", [value isEqualToObject:result]);
940 JSContext *context = [[JSContext alloc] init];
941 context[@"handleTheDictionary"] = ^(NSDictionary *dict) {
942 NSDictionary *expectedDict = @{
943 @"foo" : [NSNumber numberWithInt:1],
945 @"baz": [NSNumber numberWithInt:2]
948 checkResult(@"recursively convert nested dictionaries", [dict isEqualToDictionary:expectedDict]);
950 [context evaluateScript:@"var myDict = { \
954 handleTheDictionary(myDict);"];
956 context[@"handleTheArray"] = ^(NSArray *array) {
957 NSArray *expectedArray = @[@"foo", @"bar", @[@"baz"]];
958 checkResult(@"recursively convert nested arrays", [array isEqualToArray:expectedArray]);
960 [context evaluateScript:@"var myArray = ['foo', 'bar', ['baz']]; handleTheArray(myArray);"];
964 JSContext *context = [[JSContext alloc] init];
965 TestObject *testObject = [TestObject testObject];
967 context[@"testObject"] = testObject;
968 [context evaluateScript:@"var constructor = Object.getPrototypeOf(testObject).constructor; constructor.prototype = undefined;"];
969 [context evaluateScript:@"testObject = undefined"];
972 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
975 context[@"testObject"] = testObject;
980 JSContext *context = [[JSContext alloc] init];
981 TextXYZ *testXYZ = [[TextXYZ alloc] init];
984 context[@"testXYZ"] = testXYZ;
986 [context evaluateScript:@" \
988 testXYZ.onclick = function() { \
992 testXYZ.weakOnclick = function() { \
1000 JSValue *result = [context evaluateScript:@"didClick"];
1001 checkResult(@"Event handler onclick", [result toBool]);
1004 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
1007 JSValue *result = [context evaluateScript:@"testXYZ.onclick"];
1008 checkResult(@"onclick still around after GC", !([result isNull] || [result isUndefined]));
1013 JSValue *result = [context evaluateScript:@"testXYZ.weakOnclick"];
1014 checkResult(@"weakOnclick not around after GC", [result isNull] || [result isUndefined]);
1018 [context evaluateScript:@" \
1024 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
1028 JSValue *result = [context evaluateScript:@"didClick"];
1029 checkResult(@"Event handler onclick doesn't fire", ![result toBool]);
1034 JSVirtualMachine *vm = [[JSVirtualMachine alloc] init];
1035 TestObject *testObject = [TestObject testObject];
1036 JSManagedValue *weakValue;
1038 JSContext *context = [[JSContext alloc] initWithVirtualMachine:vm];
1039 context[@"testObject"] = testObject;
1040 weakValue = [[JSManagedValue alloc] initWithValue:context[@"testObject"]];
1044 JSContext *context = [[JSContext alloc] initWithVirtualMachine:vm];
1045 context[@"testObject"] = testObject;
1046 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
1047 checkResult(@"weak value == nil", ![weakValue value]);
1048 checkResult(@"root is still alive", ![context[@"testObject"] isUndefined]);
1053 JSContext *context = [[JSContext alloc] init];
1054 TinyDOMNode *root = [[TinyDOMNode alloc] initWithVirtualMachine:context.virtualMachine];
1055 TinyDOMNode *lastNode = root;
1056 for (NSUInteger i = 0; i < 3; i++) {
1057 TinyDOMNode *newNode = [[TinyDOMNode alloc] initWithVirtualMachine:context.virtualMachine];
1058 [lastNode appendChild:newNode];
1063 context[@"root"] = root;
1064 context[@"getLastNodeInChain"] = ^(TinyDOMNode *head){
1065 TinyDOMNode *lastNode = nil;
1068 head = [lastNode childAtIndex:0];
1072 [context evaluateScript:@"getLastNodeInChain(root).myCustomProperty = 42;"];
1075 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
1077 JSValue *myCustomProperty = [context evaluateScript:@"getLastNodeInChain(root).myCustomProperty"];
1078 checkResult(@"My custom property == 42", [myCustomProperty isNumber] && [myCustomProperty toInt32] == 42);
1082 JSContext *context = [[JSContext alloc] init];
1083 TinyDOMNode *root = [[TinyDOMNode alloc] initWithVirtualMachine:context.virtualMachine];
1084 TinyDOMNode *lastNode = root;
1085 for (NSUInteger i = 0; i < 3; i++) {
1086 TinyDOMNode *newNode = [[TinyDOMNode alloc] initWithVirtualMachine:context.virtualMachine];
1087 [lastNode appendChild:newNode];
1092 context[@"root"] = root;
1093 context[@"getLastNodeInChain"] = ^(TinyDOMNode *head){
1094 TinyDOMNode *lastNode = nil;
1097 head = [lastNode childAtIndex:0];
1101 [context evaluateScript:@"getLastNodeInChain(root).myCustomProperty = 42;"];
1103 [root appendChild:[root childAtIndex:0]];
1104 [root removeChildAtIndex:0];
1107 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
1109 JSValue *myCustomProperty = [context evaluateScript:@"getLastNodeInChain(root).myCustomProperty"];
1110 checkResult(@"duplicate calls to addManagedReference don't cause things to die", [myCustomProperty isNumber] && [myCustomProperty toInt32] == 42);
1114 JSContext *context = [[JSContext alloc] init];
1115 JSValue *o = [JSValue valueWithNewObjectInContext:context];
1117 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
1119 checkResult(@"JSValue correctly protected its internal value", [[o[@"foo"] toString] isEqualToString:@"foo"]);
1123 JSContext *context = [[JSContext alloc] init];
1124 TestObject *testObject = [TestObject testObject];
1125 context[@"testObject"] = testObject;
1126 [context evaluateScript:@"testObject.__lookupGetter__('variable').call({})"];
1127 checkResult(@"Make sure we throw an exception when calling getter on incorrect |this|", context.exception);
1131 TestObject *testObject = [TestObject testObject];
1132 JSManagedValue *managedTestObject;
1134 JSContext *context = [[JSContext alloc] init];
1135 context[@"testObject"] = testObject;
1136 managedTestObject = [JSManagedValue managedValueWithValue:context[@"testObject"]];
1137 [context.virtualMachine addManagedReference:managedTestObject withOwner:testObject];
1142 JSContext *context = [[JSContext alloc] init];
1143 TestObject *testObject = [TestObject testObject];
1144 context[@"testObject"] = testObject;
1145 JSManagedValue *managedValue = nil;
1147 JSValue *object = [JSValue valueWithNewObjectInContext:context];
1148 managedValue = [JSManagedValue managedValueWithValue:object andOwner:testObject];
1149 [context.virtualMachine addManagedReference:managedValue withOwner:testObject];
1151 JSSynchronousGarbageCollectForDebugging([context JSGlobalContextRef]);
1155 JSContext *context = [[JSContext alloc] init];
1156 context[@"MyClass"] = ^{
1157 JSValue *newThis = [JSValue valueWithNewObjectInContext:[JSContext currentContext]];
1158 JSGlobalContextRef contextRef = [[JSContext currentContext] JSGlobalContextRef];
1159 JSObjectRef newThisRef = JSValueToObject(contextRef, [newThis JSValueRef], NULL);
1160 JSObjectSetPrototype(contextRef, newThisRef, [[JSContext currentContext][@"MyClass"][@"prototype"] JSValueRef]);
1164 context[@"MyOtherClass"] = ^{
1165 JSValue *newThis = [JSValue valueWithNewObjectInContext:[JSContext currentContext]];
1166 JSGlobalContextRef contextRef = [[JSContext currentContext] JSGlobalContextRef];
1167 JSObjectRef newThisRef = JSValueToObject(contextRef, [newThis JSValueRef], NULL);
1168 JSObjectSetPrototype(contextRef, newThisRef, [[JSContext currentContext][@"MyOtherClass"][@"prototype"] JSValueRef]);
1172 context.exceptionHandler = ^(JSContext *context, JSValue *exception) {
1173 NSLog(@"EXCEPTION: %@", [exception toString]);
1174 context.exception = nil;
1177 JSValue *constructor1 = context[@"MyClass"];
1178 JSValue *constructor2 = context[@"MyOtherClass"];
1180 JSValue *value1 = [context evaluateScript:@"new MyClass()"];
1181 checkResult(@"value1 instanceof MyClass", [value1 isInstanceOf:constructor1]);
1182 checkResult(@"!(value1 instanceof MyOtherClass)", ![value1 isInstanceOf:constructor2]);
1183 checkResult(@"MyClass.prototype.constructor === MyClass", [[context evaluateScript:@"MyClass.prototype.constructor === MyClass"] toBool]);
1184 checkResult(@"MyClass instanceof Function", [[context evaluateScript:@"MyClass instanceof Function"] toBool]);
1186 JSValue *value2 = [context evaluateScript:@"new MyOtherClass()"];
1187 checkResult(@"value2 instanceof MyOtherClass", [value2 isInstanceOf:constructor2]);
1188 checkResult(@"!(value2 instanceof MyClass)", ![value2 isInstanceOf:constructor1]);
1189 checkResult(@"MyOtherClass.prototype.constructor === MyOtherClass", [[context evaluateScript:@"MyOtherClass.prototype.constructor === MyOtherClass"] toBool]);
1190 checkResult(@"MyOtherClass instanceof Function", [[context evaluateScript:@"MyOtherClass instanceof Function"] toBool]);
1194 JSContext *context = [[JSContext alloc] init];
1195 context[@"MyClass"] = ^{
1196 NSLog(@"I'm intentionally not returning anything.");
1198 JSValue *result = [context evaluateScript:@"new MyClass()"];
1199 checkResult(@"result === undefined", [result isUndefined]);
1200 checkResult(@"exception.message is correct'", context.exception
1201 && [@"Objective-C blocks called as constructors must return an object." isEqualToString:[context.exception[@"message"] toString]]);
1205 checkResult(@"[JSContext currentThis] == nil outside of callback", ![JSContext currentThis]);
1206 checkResult(@"[JSContext currentArguments] == nil outside of callback", ![JSContext currentArguments]);
1207 if ([JSContext currentCallee])
1208 checkResult(@"[JSContext currentCallee] == nil outside of callback", ![JSContext currentCallee]);
1211 if ([JSContext currentCallee]) {
1213 JSContext *context = [[JSContext alloc] init];
1214 context[@"testFunction"] = ^{
1215 checkResult(@"testFunction.foo === 42", [[JSContext currentCallee][@"foo"] toInt32] == 42);
1217 context[@"testFunction"][@"foo"] = @42;
1218 [context[@"testFunction"] callWithArguments:nil];
1220 context[@"TestConstructor"] = ^{
1221 JSValue *newThis = [JSValue valueWithNewObjectInContext:[JSContext currentContext]];
1222 JSGlobalContextRef contextRef = [[JSContext currentContext] JSGlobalContextRef];
1223 JSObjectRef newThisRef = JSValueToObject(contextRef, [newThis JSValueRef], NULL);
1224 JSObjectSetPrototype(contextRef, newThisRef, [[JSContext currentCallee][@"prototype"] JSValueRef]);
1227 checkResult(@"(new TestConstructor) instanceof TestConstructor", [context evaluateScript:@"(new TestConstructor) instanceof TestConstructor"]);
1232 JSContext *context = [[JSContext alloc] init];
1233 context[@"TestObject"] = [TestObject class];
1234 JSValue *testObject = [context evaluateScript:@"(new TestObject())"];
1235 checkResult(@"testObject instanceof TestObject", [testObject isInstanceOf:context[@"TestObject"]]);
1237 context[@"TextXYZ"] = [TextXYZ class];
1238 JSValue *textObject = [context evaluateScript:@"(new TextXYZ(\"Called TextXYZ constructor!\"))"];
1239 checkResult(@"textObject instanceof TextXYZ", [textObject isInstanceOf:context[@"TextXYZ"]]);
1243 JSContext *context = [[JSContext alloc] init];
1244 context[@"ClassA"] = [ClassA class];
1245 context[@"ClassB"] = [ClassB class];
1246 context[@"ClassC"] = [ClassC class]; // Should print error message about too many inits found.
1247 context[@"ClassCPrime"] = [ClassCPrime class]; // Ditto.
1249 JSValue *a = [context evaluateScript:@"(new ClassA(42))"];
1250 checkResult(@"a instanceof ClassA", [a isInstanceOf:context[@"ClassA"]]);
1251 checkResult(@"a.initialize() is callable", [[a invokeMethod:@"initialize" withArguments:@[]] toInt32] == 42);
1253 JSValue *b = [context evaluateScript:@"(new ClassB(42, 53))"];
1254 checkResult(@"b instanceof ClassB", [b isInstanceOf:context[@"ClassB"]]);
1256 JSValue *canConstructClassC = [context evaluateScript:@"(function() { \
1258 (new ClassC(1, 2)); \
1264 checkResult(@"shouldn't be able to construct ClassC", ![canConstructClassC toBool]);
1265 JSValue *canConstructClassCPrime = [context evaluateScript:@"(function() { \
1267 (new ClassCPrime(1)); \
1273 checkResult(@"shouldn't be able to construct ClassCPrime", ![canConstructClassCPrime toBool]);
1277 JSContext *context = [[JSContext alloc] init];
1278 context[@"ClassD"] = [ClassD class];
1279 context[@"ClassE"] = [ClassE class];
1281 JSValue *d = [context evaluateScript:@"(new ClassD())"];
1282 checkResult(@"Returning instance of ClassE from ClassD's init has correct class", [d isInstanceOf:context[@"ClassE"]]);
1286 JSContext *context = [[JSContext alloc] init];
1287 while (!evilAllocationObjectWasDealloced) {
1289 EvilAllocationObject *evilObject = [[EvilAllocationObject alloc] initWithContext:context];
1290 context[@"evilObject"] = evilObject;
1291 context[@"evilObject"] = nil;
1294 checkResult(@"EvilAllocationObject was successfully dealloced without crashing", evilAllocationObjectWasDealloced);
1298 JSContext *context = [[JSContext alloc] init];
1299 checkResult(@"default context.name is nil", context.name == nil);
1300 NSString *name1 = @"Name1";
1301 NSString *name2 = @"Name2";
1302 context.name = name1;
1303 NSString *fetchedName1 = context.name;
1304 context.name = name2;
1305 NSString *fetchedName2 = context.name;
1307 NSString *fetchedName3 = context.name;
1308 checkResult(@"fetched context.name was expected", [fetchedName1 isEqualToString:name1]);
1309 checkResult(@"fetched context.name was expected", [fetchedName2 isEqualToString:name2]);
1310 checkResult(@"fetched context.name was expected", ![fetchedName1 isEqualToString:fetchedName2]);
1311 checkResult(@"fetched context.name was expected", fetchedName3 == nil);
1315 JSContext *context = [[JSContext alloc] init];
1316 context[@"UnexportedObject"] = [UnexportedObject class];
1317 context[@"makeObject"] = ^{
1318 return [[UnexportedObject alloc] init];
1320 JSValue *result = [context evaluateScript:@"(makeObject() instanceof UnexportedObject)"];
1321 checkResult(@"makeObject() instanceof UnexportedObject", [result isBoolean] && [result toBool]);
1325 JSContext *context = [[JSContext alloc] init];
1326 [[JSValue valueWithInt32:42 inContext:context] toDictionary];
1327 [[JSValue valueWithInt32:42 inContext:context] toArray];
1331 JSContext *context = [[JSContext alloc] init];
1333 // Create the root, make it reachable from JS, and force an EdenCollection
1334 // so that we scan the external object graph.
1335 TestObject *root = [TestObject testObject];
1337 context[@"root"] = root;
1339 JSSynchronousEdenCollectForDebugging([context JSGlobalContextRef]);
1341 // Create a new Obj-C object only reachable via the external object graph
1342 // through the object we already scanned during the EdenCollection.
1343 TestObject *child = [TestObject testObject];
1344 [context.virtualMachine addManagedReference:child withOwner:root];
1346 // Create a new managed JSValue that will only be kept alive if we properly rescan
1347 // the external object graph.
1348 JSManagedValue *managedJSObject = nil;
1350 JSValue *jsObject = [JSValue valueWithObject:@"hello" inContext:context];
1351 managedJSObject = [JSManagedValue managedValueWithValue:jsObject];
1352 [context.virtualMachine addManagedReference:managedJSObject withOwner:child];
1355 // Force another EdenCollection. It should rescan the new part of the external object graph.
1356 JSSynchronousEdenCollectForDebugging([context JSGlobalContextRef]);
1358 // Check that the managed JSValue is still alive.
1359 checkResult(@"EdenCollection doesn't reclaim new managed values", [managedJSObject value] != nil);
1362 currentThisInsideBlockGetterTest();
1369 void testObjectiveCAPI()
1373 #endif // JSC_OBJC_API_ENABLED