Index: test/cctest/test-api.cc |
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc |
index c0e83948d9d4fc7d839ccaf363986e7067b0238c..fe5baa86aa5a7bc17aed3662e0872d4ae176e708 100644 |
--- a/test/cctest/test-api.cc |
+++ b/test/cctest/test-api.cc |
@@ -16780,6 +16780,8 @@ |
v8::AccessType type, |
Local<v8::Value> data) { |
CcTest::heap()->CollectAllGarbage(); |
+ CcTest::isolate()->ThrowException( |
+ v8::Exception::Error(v8_str("cross context"))); |
} |
@@ -16810,28 +16812,42 @@ |
LocalContext context1(NULL, global_template); |
context1->Global()->Set(v8_str("other"), global0); |
+ v8::TryCatch try_catch(isolate); |
+ |
// Get property with failed access check. |
- ExpectUndefined("other.x"); |
+ CHECK(CompileRun("other.x").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// Get element with failed access check. |
- ExpectUndefined("other[0]"); |
+ CHECK(CompileRun("other[0]").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// Set property with failed access check. |
- v8::Handle<v8::Value> result = CompileRun("other.x = new Object()"); |
- CHECK(result->IsObject()); |
+ CHECK(CompileRun("other.x = new Object()").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// Set element with failed access check. |
- result = CompileRun("other[0] = new Object()"); |
- CHECK(result->IsObject()); |
+ CHECK(CompileRun("other[0] = new Object()").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// Get property attribute with failed access check. |
- ExpectFalse("\'x\' in other"); |
+ CHECK(CompileRun("\'x\' in other").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// Get property attribute for element with failed access check. |
- ExpectFalse("0 in other"); |
+ CHECK(CompileRun("0 in other").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// Delete property. |
- ExpectFalse("delete other.x"); |
+ CHECK(CompileRun("delete other.x").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// Delete element. |
CHECK_EQ(false, global0->Delete(0)); |
@@ -16841,15 +16857,25 @@ |
global0->SetAccessor(v8_str("x"), GetXValue, NULL, v8_str("x"))); |
// Define JavaScript accessor. |
- ExpectUndefined("Object.prototype.__defineGetter__.call(" |
- " other, \'x\', function() { return 42; })"); |
+ CHECK(CompileRun( |
+ "Object.prototype.__defineGetter__.call(" |
+ " other, \'x\', function() { return 42; })").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// LookupAccessor. |
- ExpectUndefined("Object.prototype.__lookupGetter__.call(" |
- " other, \'x\')"); |
+ CHECK(CompileRun( |
+ "Object.prototype.__lookupGetter__.call(" |
+ " other, \'x\')").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
// HasOwnElement. |
- ExpectFalse("Object.prototype.hasOwnProperty.call(other, \'0\')"); |
+ CHECK(CompileRun( |
+ "Object.prototype.hasOwnProperty.call(" |
+ "other, \'0\')").IsEmpty()); |
+ CHECK(try_catch.HasCaught()); |
+ try_catch.Reset(); |
CHECK_EQ(false, global0->HasRealIndexedProperty(0)); |
CHECK_EQ(false, global0->HasRealNamedProperty(v8_str("x"))); |