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

Exclude mutation types #13

Closed
simondel opened this issue Feb 16, 2016 · 13 comments
Closed

Exclude mutation types #13

simondel opened this issue Feb 16, 2016 · 13 comments
Labels
🚀 Feature request New feature request
Projects

Comments

@simondel
Copy link
Member

It should be possible to configure which mutation types are and which aren't used. The importance of this feature increases as the number of mutation types increases.

@shybyte
Copy link

shybyte commented Dec 15, 2017

This feature request seems to be a duplicate of #293.

@shybyte
Copy link

shybyte commented Dec 15, 2017

I wonder if it makes sense to exclude/disable/enable mutation types by a system similar to the rules configuration of tslint (See https://palantir.github.io/tslint/usage/configuration/)

Example:

{
  mutations: {
    StringLiteral: false,
    Block: false
  }
}

Th advantage of this system

Example:

{
  mutations: {
    StringLiteral: {
      relaceExportedConst: false,
      replacements: ["", "<script>window.alert('Evil Hack!')</script>"]
    },
  }
}

@shybyte
Copy link

shybyte commented Dec 15, 2017

@simondel @nicojs Is there any ongoing work in the direction of this ticket? Otherwise I would like to volunteer to implement it, at least for the TypescriptMutator. For me it seems that in the current design, the class TypescriptMutator is responsible for knowing all typescript "child" mutators and for executing them.
Therefore I think the best place to disable/enable/configure the "child" mutators is the constructor of https://github.com/stryker-mutator/stryker/blob/5dd8be70f0ec53152837abae6145214b9d06d364/packages/stryker-typescript/src/TypescriptMutator.ts#L24

In the long run, it might be better to do this work on a higher level, but I'm particular interested in TypeScript and it could be a good start.

@simondel
Copy link
Member Author

There are plans to implement this, but it's not at the top of our todo-list. I would be a fan of working with a blacklist that you could set in your config. That way when we release a new mutation type, you will actually start using it.

Perhaps we could simply work with an array property that is added to the config:

excludedMutations: ['ArrayNewExpression', 'PrefixUnaryExpression'],

The names of the excluded mutations should be exactly the same (case and all) with the reported value:
https://github.com/stryker-mutator/stryker/blob/06d6bace999265ac6a8d0ae98ba6f6413cc3a1e0/packages/stryker-api/src/report/MutantResult.ts#L6
That way you could always look at your report and decide what you want to exclude.

The constructor you found is used for test purposes. A more solid option might be to filter the NodeMutator[] with the list in the config when the mutate function is called.

@nicojs What you think? PS why is the mutators property private in the TypeScriptMutator?

@shybyte
Copy link

shybyte commented Dec 15, 2017

@simondel So you mean to filter in https://github.com/stryker-mutator/stryker/blob/5dd8be70f0ec53152837abae6145214b9d06d364/packages/stryker/src/Stryker.ts#L70 mutantName against the string array in excludedMutations?

Advantages:

Drawbacks:

  • Mutants are created and than ignored. So it's not possible to disable the mutator but just ignore it's result. I guess performancewise the difference should be minimal, compared to the actual test ececution? What if a Mutator should be disable because it e.g. throws Exceptions?

Advantages/Drawback:

  • Excluding mutations and a (potential future) configuration of mutations is handled separate/orthogonal

So your approach has many advantages, but I have to add that my approach could also work as a blacklist (If a mutation is not listed in mutations: {}, it's enabled by default.).

@simondel
Copy link
Member Author

I actually meant filtering inside the mutate function in a mutator, but filtering in Stryker would not even be a bad idea!

I'm just not a big fan of doing a whole lot of magic in a constructor.

@nicojs
Copy link
Member

nicojs commented Dec 15, 2017

I actually meant filtering inside the mutate function in a mutator, but filtering in Stryker would not even be a bad idea!

Agreed. It has a big advantage as we would only have to implement it once for all current and future mutators. Generating mutants only takes a fraction of the total mutation testing time, so it's not a big performance hit to first generate all mutants. I also like the idea of logging how many mutants are ignored based on your configuration. Let's proceed with this approach.

Otherwise I would like to volunteer to implement it

@shybyte that's awesome! The floor is yours! If you need any help, don't hesitate to ask.

I wonder if it makes sense to exclude/disable/enable mutation types by a system similar to the rules configuration of tslint.

I like this approach. It looks clean and leaves room for more configuration, like @shybyte said. All mutators are enabled at the start, so it will effectively be a black list for now. Later on we could introduce new mutators with default enabled = false for performance reasons (PIT also takes this approach). @simondel would you also agree with this?

@simondel
Copy link
Member Author

Let's do it!

@shybyte
Copy link

shybyte commented Dec 17, 2017

@simondel @nicojs How should the new config property be named??

  • mutations
  • mutationTypes
  • mutators
  • mutants

???
In the report it seems be named Mutator. There is already a config option mutator for the "parent" mutator. This could mean that mutators is the correct name. It could also mean that mutators would be confusing (just a 's' more)...
Actually I'm a bit confused about the correct terminology.

@simondel
Copy link
Member Author

Yeah it's quite confusing. I'd say we go with excludedMutations. @nicojs Agreed?

@shybyte
Copy link

shybyte commented Dec 18, 2017

@simondel Your comment raises again the question if we implement the

  • {excludedMutations: ['name', ...]}
  • or the
  • {mutations: {name: false}}

approach???
I personally have no particularly strong opinion in this question. The biggest advantage of the excludedMutations approach is probably, that it can be more easily used from the command line. Aside from this, I see more flexibility in the mutations approach.

@nicojs What do you think?

@nicojs
Copy link
Member

nicojs commented Dec 18, 2017

I've got an idea.

How about we allow this configuration:

{
   mutator: { 
      kind: 'typescript',
      mutations: {
         block: false,
         stringLiteral: { // example of a future config
            replaceExportedConst: false,
            replacements: ["", "<script>window.alert('Evil Hack!')</script>"]
         } 
    }

I think the intent here looks really clear. You would still be able to just put the kind as string as well: mutator: 'typescript'.

@simondel simondel added this to Inbox in Backlog Jan 10, 2018
@simondel simondel added the 🚀 Feature request New feature request label Jan 10, 2018
@simondel simondel moved this from Inbox to Features in Backlog Jan 10, 2018
hlbowen pushed a commit to hlbowen/stryker that referenced this issue Mar 14, 2018
…tor#13)

This adds the ability to exclude specific mutation types ('BooleanSubstitution', 'ArrayLiteral', etc.) from being performed during the test run. Can be used via either command-line or config file. Defaults to an empty array, meaning all mutation types are used.
nicojs pushed a commit that referenced this issue Mar 22, 2018
This adds the ability to exclude specific mutation types (`'BooleanSubstitution'`, `'ArrayLiteral'`, etc.) from being performed during the test run. Can be used via the config file. Defaults to an empty array, meaning all mutation types are used.

Configuration:

```js
mutator: {
  name: 'javascript', 
  excludedMutations: [ 'BooleanSubstitution', 'Block' /*, ... */]
}
```
@simondel
Copy link
Member Author

simondel commented Apr 6, 2018

Fixed with #652

@simondel simondel closed this as completed Apr 6, 2018
Backlog automation moved this from Features to Done Apr 6, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🚀 Feature request New feature request
Projects
Development

No branches or pull requests

3 participants