Skip to content

Commit

Permalink
fix(mutant-placing): regression in optional chain (#3718)
Browse files Browse the repository at this point in the history
Fix a regression in mutant placing inside an optional chain.

For example: `bar?.baz[0]`

```diff
- (stryMutAct_9fa48("9") ? bar.baz : (stryCov_9fa48("9"), bar?.baz)[0];"
+ stryMutAct_9fa48("9") ? bar.baz[0] : (stryCov_9fa48("9"), bar?.baz[0]);"
```
  • Loading branch information
nicojs committed Sep 6, 2022
1 parent 238e5a2 commit 1228619
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,13 @@ function isValidExpression(path: NodePath<babel.types.Expression>) {
* foo.bar();
* foo?.bar();
* baz[foo.bar()]
* bar?.baz[0]
*/
function isPartOfChain() {
return (
isMemberOrCallOrNonNullExpression(path) &&
((isMemberExpression(parent) && !parent.node.computed) ||
path.isTSNonNullExpression() ||
((isMemberExpression(parent) && !(parent.node.computed && parent.node.property === path.node)) ||
parent.isTSNonNullExpression() ||
(isCallExpression(parent) && parent.node.callee === path.node))
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,11 @@ describe('expressionMutantPlacer', () => {
['foo.bar?.baz', (p) => p.isMemberExpression() && types.isIdentifier(p.node.property, { name: 'bar' })],
['foo?.bar.baz', (p) => p.isOptionalMemberExpression() && types.isIdentifier(p.node.property, { name: 'bar' })],
['foo?.bar!.baz', (p) => p.isTSNonNullExpression()],
['bar?.baz[0]', (p) => p.isOptionalMemberExpression() && types.isIdentifier(p.node.object, { name: 'bar' })],
];
falsePointers.forEach(([js, query]) => {
falsePointers.forEach(([js, query, only]) => {
const path = findNodePath(parseTS(js), query);
it(`should not allow placing in \`${path.toString()}\` of \`${js}\``, () => {
(only ? it.only : it)(`should not allow placing in \`${path.toString()}\` of \`${js}\``, () => {
expect(expressionMutantPlacer.canPlace(path)).false;
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ const directiveRanges = comments?.map(tryParseTSDirective)
const qux = quux(corge?.cov());

input?.id!.toString();

bar?.baz[0]
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ function stryMutAct_9fa48(id) {
return isActive(id);
}
const baz = stryMutAct_9fa48(\\"0\\") ? foo?.bar?.()?.[1] && 'qux' : (stryCov_9fa48(\\"0\\"), (stryMutAct_9fa48(\\"1\\") ? foo?.bar?.()[1] : (stryCov_9fa48(\\"1\\"), (stryMutAct_9fa48(\\"3\\") ? foo.bar?.() : stryMutAct_9fa48(\\"2\\") ? foo?.bar() : (stryCov_9fa48(\\"2\\", \\"3\\"), foo?.bar?.()))?.[1])) ?? (stryMutAct_9fa48(\\"4\\") ? \\"\\" : (stryCov_9fa48(\\"4\\"), 'qux')));
const baz = stryMutAct_9fa48(\\"0\\") ? foo?.bar?.()?.[1] && 'qux' : (stryCov_9fa48(\\"0\\"), (stryMutAct_9fa48(\\"3\\") ? foo.bar?.()?.[1] : stryMutAct_9fa48(\\"2\\") ? foo?.bar()?.[1] : stryMutAct_9fa48(\\"1\\") ? foo?.bar?.()[1] : (stryCov_9fa48(\\"1\\", \\"2\\", \\"3\\"), foo?.bar?.()?.[1])) ?? (stryMutAct_9fa48(\\"4\\") ? \\"\\" : (stryCov_9fa48(\\"4\\"), 'qux')));
stryMutAct_9fa48(\\"5\\") ? qux().map() : (stryCov_9fa48(\\"5\\"), qux()?.map());
const directiveRanges = stryMutAct_9fa48(\\"6\\") ? comments.map(tryParseTSDirective) : (stryCov_9fa48(\\"6\\"), comments?.map(tryParseTSDirective));
const qux = quux(stryMutAct_9fa48(\\"7\\") ? corge.cov() : (stryCov_9fa48(\\"7\\"), corge?.cov()));
(stryMutAct_9fa48(\\"8\\") ? input.id : (stryCov_9fa48(\\"8\\"), input?.id))!.toString();"
stryMutAct_9fa48(\\"8\\") ? input.id!.toString() : (stryCov_9fa48(\\"8\\"), input?.id!.toString());
stryMutAct_9fa48(\\"9\\") ? bar.baz[0] : (stryCov_9fa48(\\"9\\"), bar?.baz[0]);"
`;

0 comments on commit 1228619

Please sign in to comment.