7bbea08f66
This refactoring makes it easier to write advanced tests and gives full control over what's happening to the test code. It also forces description for every test. BUG=none Review-Url: https://codereview.chromium.org/2891213002 Cr-Commit-Position: refs/heads/master@{#45412}
43 lines
1.5 KiB
JavaScript
43 lines
1.5 KiB
JavaScript
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start('Tests that destroying context from inside of console.log does not crash');
|
|
|
|
const expression = `
|
|
Object.defineProperty(Object.prototype, 'RemoteObject', {
|
|
configurable: true,
|
|
set(v) {
|
|
console.log("Should never be called");
|
|
delete Object.prototype.RemoteObject;
|
|
this.RemoteObject = v;
|
|
|
|
inspector.fireContextDestroyed();
|
|
setTimeout(function() {
|
|
// Attach the inspector again for the sake of establishing a
|
|
// communication channel with the frontend test runner.
|
|
inspector.fireContextCreated();
|
|
console.log("End of test");
|
|
}, 0);
|
|
},
|
|
});
|
|
|
|
// Before the whole script runs, the inspector is already attached.
|
|
// Re-attach the inspector and trigger the console API to make sure that the
|
|
// injected inspector script runs again (and triggers the above setter).
|
|
inspector.fireContextDestroyed();
|
|
inspector.fireContextCreated();
|
|
console.log("First inspector activity after attaching inspector");
|
|
console.log("End of test");
|
|
`;
|
|
|
|
Protocol.Runtime.enable();
|
|
Protocol.Runtime.evaluate({ expression: expression });
|
|
|
|
Protocol.Runtime.onConsoleAPICalled(function(result) {
|
|
InspectorTest.logObject(result.params.args[0]);
|
|
if (result.params.args[0].value == "End of test") {
|
|
InspectorTest.completeTest();
|
|
}
|
|
});
|