Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 2226: restore props defined on prototype chain by deleting #2237

Merged
merged 7 commits into from
Mar 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/sinon/default-behaviors.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ var defaultBehaviors = {
Object.defineProperty(rootStub.rootObj, rootStub.propName, {
value: newVal,
enumerable: true,
configurable: isPropertyConfigurable(rootStub.rootObj, rootStub.propName)
configurable: rootStub.shadowsPropOnPrototype || isPropertyConfigurable(rootStub.rootObj, rootStub.propName)
});

return fake;
Expand Down
6 changes: 5 additions & 1 deletion lib/sinon/sandbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,11 @@ function Sandbox() {
var descriptor = getPropertyDescriptor(object, property);

function restorer() {
Object.defineProperty(object, property, descriptor);
if (descriptor.isOwn) {
Object.defineProperty(object, property, descriptor);
} else {
delete object[property];
}
}
restorer.object = object;
restorer.property = property;
Expand Down
9 changes: 5 additions & 4 deletions lib/sinon/stub.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var behaviors = require("./default-behaviors");
var createProxy = require("./proxy");
var functionName = require("@sinonjs/commons").functionName;
var hasOwnProperty = require("@sinonjs/commons").prototypes.object.hasOwnProperty;
var isNonExistentOwnProperty = require("./util/core/is-non-existent-own-property");
var isNonExistentProperty = require("./util/core/is-non-existent-property");
var spy = require("./spy");
var extend = require("./util/core/extend");
var getPropertyDescriptor = require("./util/core/get-property-descriptor");
Expand Down Expand Up @@ -69,8 +69,8 @@ function stub(object, property) {

throwOnFalsyObject.apply(null, arguments);

if (isNonExistentOwnProperty(object, property)) {
throw new TypeError("Cannot stub non-existent own property " + valueToString(property));
if (isNonExistentProperty(object, property)) {
throw new TypeError("Cannot stub non-existent property " + valueToString(property));
}

var actualDescriptor = getPropertyDescriptor(object, property);
Expand All @@ -97,8 +97,9 @@ function stub(object, property) {
extend.nonEnum(s, {
rootObj: object,
propName: property,
shadowsPropOnPrototype: !actualDescriptor.isOwn,
restore: function restore() {
if (actualDescriptor !== undefined) {
if (actualDescriptor !== undefined && actualDescriptor.isOwn) {
Object.defineProperty(object, property, actualDescriptor);
return;
}
Expand Down
6 changes: 6 additions & 0 deletions lib/sinon/util/core/get-property-descriptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@
module.exports = function getPropertyDescriptor(object, property) {
var proto = object;
var descriptor;
var isOwn = Boolean(object && Object.getOwnPropertyDescriptor(object, property));

while (proto && !(descriptor = Object.getOwnPropertyDescriptor(proto, property))) {
proto = Object.getPrototypeOf(proto);
}

if (descriptor) {
descriptor.isOwn = isOwn;
}

return descriptor;
};
7 changes: 0 additions & 7 deletions lib/sinon/util/core/is-non-existent-own-property.js

This file was deleted.

12 changes: 12 additions & 0 deletions lib/sinon/util/core/is-non-existent-property.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"use strict";

/**
* @param {*} object
* @param {String} property
* @returns whether a prop exists in the prototype chain
*/
function isNonExistentProperty(object, property) {
return object && typeof property !== "undefined" && !(property in object);
}

module.exports = isNonExistentProperty;
46 changes: 46 additions & 0 deletions test/issues/issues-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -580,9 +580,11 @@ describe("issues", function() {
function ClassWithoutProps() {
return;
}

function AnotherClassWithoutProps() {
return;
}

ClassWithoutProps.prototype.constructor = ClassWithoutProps;
AnotherClassWithoutProps.prototype.constructor = AnotherClassWithoutProps;
var arg1 = new ClassWithoutProps(); //arg1.constructor.name === ClassWithoutProps
Expand Down Expand Up @@ -640,6 +642,7 @@ describe("issues", function() {
function Foo() {
return;
}

// eslint-disable-next-line mocha/no-setup-in-describe
Foo.prototype.testMethod = function() {
return;
Expand Down Expand Up @@ -679,6 +682,7 @@ describe("issues", function() {
function Foo() {
return;
}

// eslint-disable-next-line mocha/no-setup-in-describe
Foo.prototype.testMethod = function() {
return 1;
Expand Down Expand Up @@ -709,4 +713,46 @@ describe("issues", function() {
refute.equals(fake.lastArg, 3);
});
});

describe("#2226 - props on prototype are not restored correctly", function() {
function createObjectWithPropFromPrototype() {
var proto = {};
var obj = {};

Object.setPrototypeOf(obj, proto);
Object.defineProperty(proto, "test", { writable: true, value: 1 });
return obj;
}

it("should restore fakes shadowing prototype props correctly", function() {
var obj = createObjectWithPropFromPrototype();

var originalPropertyDescriptor = Object.getOwnPropertyDescriptor(obj, "test");

sinon.replace(obj, "test", 2);
var replacedPropertyDescriptor = Object.getOwnPropertyDescriptor(obj, "test");

sinon.restore();
var restoredPropertyDescriptor = Object.getOwnPropertyDescriptor(obj, "test");

assert.isUndefined(originalPropertyDescriptor);
refute.isUndefined(replacedPropertyDescriptor);
assert.isUndefined(restoredPropertyDescriptor);
});

it("should restore stubs shadowing prototype props correctly", function() {
var obj = createObjectWithPropFromPrototype();
var originalPropertyDescriptor = Object.getOwnPropertyDescriptor(obj, "test");

sinon.stub(obj, "test").value(2);
var replacedPropertyDescriptor = Object.getOwnPropertyDescriptor(obj, "test");

sinon.restore();
var restoredPropertyDescriptor = Object.getOwnPropertyDescriptor(obj, "test");

assert.isUndefined(originalPropertyDescriptor);
refute.isUndefined(replacedPropertyDescriptor);
assert.isUndefined(restoredPropertyDescriptor);
});
});
});
2 changes: 1 addition & 1 deletion test/sandbox-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ describe("Sandbox", function() {
function() {
sandbox.stub(object, Symbol());
},
{ message: "Cannot stub non-existent own property Symbol()" },
{ message: "Cannot stub non-existent property Symbol()" },
TypeError
);

Expand Down