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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/new mutant placing #2964

Merged
merged 7 commits into from Jul 1, 2021
Merged

Feat/new mutant placing #2964

merged 7 commits into from Jul 1, 2021

Conversation

nicojs
Copy link
Member

@nicojs nicojs commented Jun 22, 2021

Implements a new mutant placing algorithm while also refactoring the instrumenter package.

馃敘 New mutant placing algorithm

On the way down: 馃憞

  • Treat the tree as immutable!
  • Identify the nodes that can be used to place mutants on in the placementMap. I call these AST nodes "placement nodes".
    • Example: A node that is a Statement
  • Generate the mutants on each node.
    • When a node generated mutants, do a short walk back up to the nearest node where the mutant can be placed, register them in the placement map
    • Call the new applied method on each Mutant, providing the placement node. This way the mutant will capture the AST with the single mutation from the placement node down.

On the way back up 馃憜

  • If this node has mutants in the placementMap, place them in the AST.

馃帹 Refactoring

  • A Mutant now has an applied method. Note: passed tense, because it treats the input as immutable.
  • Split each MutantPlacer's functionality in a canPlace method and a place method. The transformer uses canPlace to identity the placement nodes.
  • Mutators no longer return an array of mutants. Instead, it returns an Iterable of replacement nodes.
  • Mutators are now implemented as objects and pure functions (instead of classes). I think this programming paradigm fits better to the use case.
  • Only the conditional expression mutator returned replacements for something other than the provided node. I've refactored that one mutator to be in line with the rest.
  • The mutate functions now return an Iterable, since this allows us to use generator functions. You can simply yield mutants when needed. This cleans up the code nicely
  • Split up babel-transformer into multiple methods
  • The babel-transformer unit tests now use test doubles instead of sinon stubs. This makes for a more robust - black box - unit test experience.

Fixes #2968

@nicojs nicojs marked this pull request as ready for review June 24, 2021 21:17
@nicojs nicojs requested a review from Garethp June 24, 2021 21:17
@nicojs
Copy link
Member Author

nicojs commented Jun 25, 2021

@Garethp feel free to review

@nicojs nicojs merged commit 24b8bc9 into master Jul 1, 2021
@nicojs nicojs deleted the feat/new-mutant-placing branch July 1, 2021 15:48
@nicojs
Copy link
Member Author

nicojs commented Jul 1, 2021

@Garethp I've merged it, but feel free to still review it later and add issues/ or a new PR later.

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.

Don't place the same mutant twice
1 participant