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

chore: convert compareArray() to assert.compareArray() #3219

Merged
merged 6 commits into from
Sep 24, 2021

Conversation

rwaldron
Copy link
Contributor

No description provided.

@rwaldron rwaldron requested a review from leobalter September 24, 2021 15:03
@rwaldron rwaldron force-pushed the rwaldron/migrate-comparearray branch 2 times, most recently from aed2d60 to b6ba2e1 Compare September 24, 2021 16:18
@rwaldron rwaldron force-pushed the rwaldron/migrate-comparearray branch 2 times, most recently from 478d995 to 7e4b2ad Compare September 24, 2021 17:51
@rwaldron rwaldron force-pushed the rwaldron/migrate-comparearray branch from 7e4b2ad to 92dad8d Compare September 24, 2021 17:52
@@ -27,7 +27,7 @@ compareArray.isSameValue = function(a, b) {
};

compareArray.format = function(spreadable) {
return `[${[...spreadable].map(String).join(', ')}]`;
return `[${[].map.call(spreadable, String).join(', ')}]`;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dunno if this will work--a "spreadable" is an iterable, right?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there is a whole problematic over this compareArray file and this format is being only used for the assertion message.

The assertion requires the values a and b (actual and expected) to be accessed in a for loop during the assertion, and the values would be accessed again for this formatting purposes.

I believe this [].map.call is a conservative approach and I'd stick with it for discussing compareArray in a different PR.

leobalter
leobalter previously approved these changes Sep 24, 2021
…ual and expected more than once, unless absolutely necessary.
// more than once unless absolutely necessary.
if (!result) {
assert(false, `Expected ${format(actual)} and ${format(expected)} to have the same contents. ${message}`);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jugglinmike Rick and I discussed about this assertion message that is now deferred to execute only if compareArray fails. That might avoid conflicts for existing tests migrating from pure compareArray to assert.compareArray.

@leobalter leobalter merged commit b690cb6 into main Sep 24, 2021
@leobalter leobalter deleted the rwaldron/migrate-comparearray branch September 24, 2021 19:02
@mhofman
Copy link
Member

mhofman commented Sep 24, 2021

This PR mangled my previous PR #3213 (and possibly other changes!)

Comment on lines -117 to -137


// Indirect change requested through Object.freeze

// Try freezing more times than there are exported properties
for (let i = 1; i < exported.length + 2; i++) {
assert.throws(
TypeError,
function () {
Object.freeze(ns);
},
"Object.freeze: " + String(i)
);
}

for (const key of exported) {
const desc = Object.getOwnPropertyDescriptor(ns, key);
assert.sameValue(desc.writable, true, String(key) + " writable");
}

assert(!Object.isFrozen(ns), "namespace object not frozen");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These lines were removed

jugglinmike added a commit that referenced this pull request Oct 1, 2021
…ray"

This reverts commit b690cb6, reversing
changes made to 50dd431. This is
necessary because the reverted changeset reduced coverage by an unknown
extent.
rwaldron pushed a commit that referenced this pull request Oct 1, 2021
…ray"

This reverts commit b690cb6, reversing
changes made to 50dd431. This is
necessary because the reverted changeset reduced coverage by an unknown
extent.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants