10 KiB
mutant
Mutant is a mutation testing tool for Ruby.
The idea is that if code can be changed and your tests do not notice, then either that code isn't being covered or it does not have a speced side effect.
Mutant supports ruby >= 2.5, MRI only.
Mutant uses a pure Ruby parser and an unparser to do its magic.
Topics
Sponsoring
Mutant, as published in the opensource version, would not exist without the help of contributors spending lots of their private time.
Additionally, the following features where sponsored by organizations:
- The
mutant-minitest
integration was sponsored by Arkency - Mutant's initial concurrency support was sponsored by an undisclosed company that does currently not wish to be listed here.
If your organization is interested in sponsoring a feature, general maintainership or bugfixes, contact Markus Schirp.
Examples
cd virtus
# Run mutant on virtus namespace
bundle exec mutant --include lib --require virtus --use rspec Virtus*
# Run mutant on specific virtus class
bundle exec mutant --include lib --require virtus --use rspec Virtus::Attribute
# Run mutant on specific virtus class method
bundle exec mutant --include lib --require virtus --use rspec Virtus::Attribute.build
# Run mutant on specific virtus instance method
bundle exec mutant --include lib --require virtus --use rspec Virtus::Attribute#type
Rails
To mutation test Rails models with rspec, comment out require 'rspec/autorun'
from your spec_helper.rb file. Having done so you should be able to use commands like the following:
RAILS_ENV=test bundle exec mutant -r ./config/environment --use rspec User
Passing in RSpec Options
NOTE: Experimental
You can control some aspects of RSpec using the SPEC_OPTS
environment variable as usual. If you want mutant to only pay attention to specs in a certain directory, you can run
SPEC_OPTS="--pattern spec/subdir_only/**/*_spec.rb" bundle exec mutant --use rspec SomeClass
Mutation-Operators
Mutant supports a wide range of mutation operators. An exhaustive list can be found in the mutant-meta.
The mutant-meta
is arranged to the AST-Node-Types of parser. Refer to parsers AST documentation in doubt.
There is no easy and universal way to count the number of mutation operators a tool supports.
Test-Selection
Mutation testing is slow. The key to making it fast is selecting the correct set of tests to run. Mutant currently supports the following built-in strategy for selecting tests/specs:
Mutant uses the "longest rspec example group descriptions prefix match" to select the tests to run.
Example for a subject like Foo::Bar#baz
it will run all example groups with description prefixes in
Foo::Bar#baz
, Foo::Bar
and Foo
. The order is important, so if mutant finds example groups in the
current prefix level, these example groups must kill the mutation.
Neutral (noop) Tests
Mutant will also test the original, unmutated, version your code. This ensures that mutant is able to properly setup and run your tests. If an error occurs while mutant/rspec is running testing the original code, you will receive an error like the following:
--- Neutral failure ---
Original code was inserted unmutated. And the test did NOT PASS.
Your tests do not pass initially or you found a bug in mutant / unparser.
...
Test Output:
marshal data too short
Currently, troubleshooting these errors requires using a debugger and/or modyifying mutant to print out the error. You will want to rescue and inspect exceptions raised in this method: lib/mutant/integration/rspec.rb:call
Only Mutating Changed Code
Running mutant for the first time on an existing codebase can be a rather disheartening experience due to the large number of alive mutations found! Mutant has a setting that can help. Using the --since
argument, mutant will only mutate code that has been modified. This allows you to introduce mutant into an existing code base without drowning in errors. Example usage that will mutate all code changed between master and the current branch:
bundle exec mutant --include lib --require virtus --since master --use rspec Virtus::Attribute#type
Presentations
There are some presentations about mutant in the wild:
- RailsConf 2014 / http://confreaks.com/videos/3333-railsconf-mutation-testing-with-mutant
- Wrocloverb 2014 / https://www.youtube.com/watch?v=rz-lFKEioLk
- eurucamp 2013 / FrOSCon-2013 http://slid.es/markusschirp/mutation-testing
- Cologne.rb / https://github.com/DonSchado/colognerb-on-mutant/blob/master/mutation_testing_slides.pdf
Planning a presentation?
Mutation testing lately (not only mutant) seems to attract some attention. So naturally people do talks about it at conferences, user groups or other chances. Thanks for that!
As I (the author @mbj) am not too happy with some of the facts being presented about mutant the last month.
So if you plan to do a presentation: I offer to review your slides / talk - for free of course. My intention is NOT to change your bias pro / against this tool. Just to help to fix invalid statements about the tool.
Also in many cases a conversation to the author should help you to improve the talk significantly. One of mutants biggest weaknesses is the bad documentation, but instead of assumptions based on the absence of docs, use the tool authors brain to fill the gaps.
Hint, same applies to papers.
Blog posts
Sorted by recency:
- A deep dive into mutation testing and how the Mutant gem works
- Keep calm and kill mutants (December, 2015)
- How to write better code using mutation testing (November 2015)
- How good are your Ruby tests? Testing your tests with mutant (June 2015)
- Mutation testing and continuous integration (May 2015)
- Why I want to introduce mutation testing to the
rails_event_store
gem (April 2015) - Mutation testing with mutant (April 2014)
- Mutation testing with mutant (January 2013)
Support
I'm very happy to receive/answer feedback/questions and criticism.
Your options:
- GitHub Issues
- Ping me on twitter
There is also a mutation testing slack chat. Get an invite here. For discussing this project, join #mutant.
Other Channels:
- #cosmic-ray: for discussing
cosmic-ray
, the python mutation testing tool. - #devtools: for discussing the
devtools
metagem. - #general: for general discussions about mutation testing.
- #mutagen: for discussing
mutagen
, the javascript mutation testing tool. - #random: for misc. off topic discussion.
- #stryker: for discussing
stryker
, the javascript mutation testing tool. - #wtf-dev: for sharing software development wtfs.
Credits
- Markus Schirp (mbj)
- A gist, now removed, from dkubb showing ideas.
- Older abandoned mutant. For motivating me doing this one.
- heckle. For getting me into mutation testing.
Contributing
- Fork the project.
- Make your feature addition or bug fix.
- Add tests for it. This is important so I don't break it in a future version unintentionally.
- Commit, do not mess with Rakefile or version (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
- Send me a pull request. Bonus points for topic branches.
License
See LICENSE file.