2012-07-26 13:38:17 -04:00
mutant
======
2015-06-12 23:48:41 -04:00
[![Build Status ](https://circleci.com/gh/mbj/mutant.svg?style=shield&circle-token=1afd77e8f0f9d0a11fd8f15f5d7b10270f4665e2 )](https://circleci.com/gh/mbj/mutant/tree/master)
2017-02-28 12:43:00 -05:00
[![Code Climate ](https://codeclimate.com/github/mbj/mutant.svg )](https://codeclimate.com/github/mbj/mutant)
[![Inline docs ](http://inch-ci.org/github/mbj/mutant.svg )](http://inch-ci.org/github/mbj/mutant)
2014-06-08 08:46:59 -04:00
[![Gem Version ](https://img.shields.io/gem/v/mutant.svg )](https://rubygems.org/gems/mutant)
2016-07-25 02:38:15 -04:00
[![Slack Status ](https://mutation-testing-slack.herokuapp.com/badge.svg )](https://mutation-testing.slack.com/messages/mutant)
2012-07-26 13:38:17 -04:00
2014-08-12 17:09:59 -04:00
Mutant is a mutation testing tool for Ruby.
2012-07-26 13:38:17 -04:00
2016-04-28 12:14:15 -04:00
The idea is that if code can be changed and your tests do not notice, then either that code isn't being covered
2012-12-21 14:59:59 -05:00
or it does not have a speced side effect.
2012-12-08 09:09:45 -05:00
2018-11-20 08:45:54 -05:00
Mutant supports ruby >= 2.5, MRI only.
2012-12-21 14:59:59 -05:00
2014-08-12 17:09:59 -04:00
Mutant uses a pure Ruby [parser ](https://github.com/whitequark/parser ) and an [unparser ](https://github.com/mbj/unparser )
2014-04-07 14:51:59 -04:00
to do its magic.
2018-11-23 10:14:17 -05:00
Sponsoring
----------
Mutant, as published in the opensource version, would not exist without the help
of [contributors ](https://github.com/mbj/mutant/graphs/contributors ) spending lots
of their private time.
Additionally, the following features where sponsored by organizations:
* The `mutant-minitest` integration was sponsored by [Arkency ](https://arkency.com/ )
* 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 ](mailto:mbj@schirp-dso.com ).
2018-11-20 09:23:43 -05:00
Nomenclature
2012-07-26 13:38:17 -04:00
------------
2018-11-20 09:23:43 -05:00
The following explains several nouns you may experience in mutant's documentation.
It's a good idea to familiarize yourself before moving on.
2013-07-03 04:07:23 -04:00
2018-11-20 09:23:43 -05:00
### AST
Acronym for [Abstract Syntax Tree ](https://en.wikipedia.org/wiki/Abstract_syntax_tree )
and the level of abstraction mutant operates on.
### Subject
An addressable piece of code to be targeted for mutation testing.
Mutant currently supports the following subjects:
* Instance methods
* Singleton (class) methods
Other subjects (constants, class bodies for DSLs, ...) are possible but aren't
implemented in the OSS version.
### Mutation operator
A transformation applied to the AST of a subject. Mutant knows the following high level operator
classes:
* Semantic Reduction
* Orthogonal Replacement
* [Noop ](#neutral-noop-tests )
An exhaustive list can be found in the [mutant-meta ](https://github.com/mbj/mutant/tree/master/meta )
subdirectory of the source.
### Mutation
The result of applying a mutation operator to the AST of a subject. A mutation represents a
hypothesis that ideally gets falsified by the tests.
### Insertion
The process of inserting a mutation into the runtime environment.
Mutant currently supports insertion via dynamically created monkeypatches.
Other insertion strategies (such as "boot time") are possible but aren't implemented
in the OSS version.
### Isolation
The attempt to isolate the (side) effects of killing a mutation via an integration
to prevent a mutation leaking into adjacent concurrent, or future mutations.
Examples of sources for leaks are
* Global variable writes
* Thread local writes
* DB State
* File system
Natively, mutant offers fork isolation. This works for any state within the executing
Ruby process. For all state reachable via IO, it's the test author's responsibility to
provide proper isolation.
### Integration
The method used to determine if a specific inserted mutation is covered by tests.
Currently mutant supports integrations for:
* rspec (https://rubygems.org/gems/mutant-rspec)
* minitest (https://rubygems.org/gems/mutant-minitest)
### Report
Mutant currently provides two different reporters:
* Progress (printed during mutation testing).
* Summary (printed at the end of a finished analysis run)
A reporter producing a machine readable report does not exist in the OSS version
at the time of writing this documentation.
2013-07-03 01:49:13 -04:00
2012-07-26 13:38:17 -04:00
Examples
--------
2012-12-07 05:52:53 -05:00
```
2012-12-08 09:12:52 -05:00
cd virtus
2013-08-04 19:15:03 -04:00
# Run mutant on virtus namespace
2017-11-30 10:51:10 -05:00
bundle exec mutant --include lib --require virtus --use rspec Virtus*
2013-04-17 23:31:21 -04:00
# Run mutant on specific virtus class
2017-11-30 10:51:10 -05:00
bundle exec mutant --include lib --require virtus --use rspec Virtus::Attribute
2012-12-08 09:09:45 -05:00
# Run mutant on specific virtus class method
2017-11-30 10:51:10 -05:00
bundle exec mutant --include lib --require virtus --use rspec Virtus::Attribute.build
2012-12-08 09:09:45 -05:00
# Run mutant on specific virtus instance method
2017-11-30 10:51:10 -05:00
bundle exec mutant --include lib --require virtus --use rspec Virtus::Attribute#type
2012-12-07 05:52:53 -05:00
```
2013-01-23 07:59:03 -05:00
2015-10-29 02:47:44 -04:00
Rails
-------
2016-04-28 12:14:15 -04:00
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:
2015-10-29 02:47:44 -04:00
```sh
RAILS_ENV=test bundle exec mutant -r ./config/environment --use rspec User
```
2016-03-30 15:27:23 -04:00
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
```sh
2017-11-30 10:51:10 -05:00
SPEC_OPTS="--pattern spec/subdir_only/**/*_spec.rb" bundle exec mutant --use rspec SomeClass
2016-03-30 15:27:23 -04:00
```
2015-11-01 00:17:37 -04:00
Limitations
-----------
Mutant cannot emit mutations for...
* methods defined within a closure. For example, methods defined using `module_eval` , `class_eval` ,
`define_method` , or `define_singleton_method` :
```ruby
class Example
class_eval do
def example1
end
end
module_eval do
def example2
end
end
define_method(:example3) do
end
define_singleton_method(:example4) do
end
end
```
2015-11-01 00:46:41 -04:00
* singleton methods not defined on a constant or `self`
```ruby
class Foo
def self.bar; end # ok
def Foo.baz; end # ok
myself = self
def myself.qux; end # cannot mutate
end
```
2015-11-01 00:59:06 -04:00
* methods defined with eval:
```ruby
class Foo
class_eval('def bar; end') # cannot mutate
end
```
2016-02-14 19:55:47 -05:00
Mutation-Operators
------------------
2015-10-29 02:47:44 -04:00
Mutant supports a wide range of mutation operators. An exhaustive list can be found in the [mutant-meta ](https://github.com/mbj/mutant/tree/master/meta ).
The `mutant-meta` is arranged to the AST-Node-Types of parser. Refer to parsers [AST documentation ](https://github.com/whitequark/parser/blob/master/doc/AST_FORMAT.md ) in doubt.
There is no easy and universal way to count the number of mutation operators a tool supports.
2014-05-06 17:11:41 -04:00
Subjects
--------
2012-12-08 09:09:45 -05:00
2013-08-04 19:15:03 -04:00
Mutant currently mutates code in instance and singleton methods. It is planned to support mutation
of constant definitions and domain specific languages, DSL probably as plugins.
2012-12-08 09:09:45 -05:00
2013-08-04 19:15:03 -04:00
Test-Selection
--------------
2012-12-08 09:09:45 -05:00
2013-08-04 19:15:03 -04:00
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:
2012-12-08 09:09:45 -05:00
2013-08-04 19:17:14 -04:00
Mutant uses the "longest rspec example group descriptions prefix match" to select the tests to run.
2012-12-08 09:09:45 -05:00
2013-08-04 19:15:03 -04:00
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.
2012-12-08 09:09:45 -05:00
2015-08-10 18:54:30 -04:00
Reading Reports
---------------
Mutation output is grouped by selection groups. Each group contains three sections:
1. An identifier for the current group.
**Format** :
```text
[SUBJECT EXPRESSION]:[SOURCE LOCATION]:[LINENO]
```
**Example** :
```text
Book#add_page:Book#add_page:/home/dev/mutant-examples/lib/book.rb:18
```
2. A list of specs that mutant ran to try to kill mutations for the current group.
**Format** :
```text
- [INTEGRATION]:0:[SPEC LOCATION]:[SPEC DESCRIPTION]
- [INTEGRATION]:1:[SPEC LOCATION]:[SPEC DESCRIPTION]
```
**Example** :
```text
- rspec:0:./spec/unit/book_spec.rb:9/Book#add_page should return self
- rspec:1:./spec/unit/book_spec.rb:13/Book#add_page should add page to book
```
3. A list of unkilled mutations diffed against the original unparsed source
**Format** :
```text
[MUTATION TYPE]:[SUBJECT EXPRESSION]:[SOURCE LOCATION]:[SOURCE LINENO]:[IDENTIFIER]
[DIFF]
-----------------------
```
- `[MUTATION TYPE]` will be one of the following:
- `evil` - a mutation of your source was not killed by your tests
- `neutral` your original source was injected and one or more tests failed
- `[IDENTIFIER]` - Unique identifier for this mutation
**Example** :
```diff
evil:Book#add_page:Book#add_page:/home/dev/mutant-examples/lib/book.rb:18:01f69
@@ -1,6 +1,6 @@
def add_page(page)
- @pages < < page
+ @pages
@index [page.number] = page
self
end
-----------------------
evil:Book#add_page:Book#add_page:/home/dev/mutant-examples/lib/book.rb:18:b1ff2
@@ -1,6 +1,6 @@
def add_page(page)
- @pages < < page
+ self
@index [page.number] = page
self
end
-----------------------
```
2016-07-25 02:38:15 -04:00
2016-02-14 19:55:47 -05:00
Concurrency
-----------
2015-08-10 18:54:30 -04:00
2016-02-14 19:55:47 -05:00
By default, mutant will test mutations in parallel by running up to one process for each core on your system. You can control the number of processes created using the `--jobs` argument.
2016-07-25 02:38:15 -04:00
2016-04-28 12:14:15 -04:00
Mutant forks a new process for each mutation to be tested to prevent side affects in your specs and the lack of thread safety in rspec from impacting the results.
2015-10-29 02:47:44 -04:00
2016-02-14 19:55:47 -05:00
If the code under test relies on a database, you may experience problems when running mutant because of conflicting data in the database. For example, if you have a test like this:
```
m = MyModel.create!(...)
expect(MyModel.first.name).to eql(m.name)
```
It might fail if some other test wrote a record to the MyModel table at the same time as this test was executed. (It would find the MyModel record created by the other test.) Most of these issues can be fixed by writing more specific tests. Here is a concurrent safe version of the same test:
```
m = MyModel.create!(...)
expect(MyModel.find_by_id(m.id).name).to eql(m.name)
```
You may also try wrapping your test runs in transactions.
2015-10-29 02:47:44 -04:00
2016-02-14 19:55:47 -05:00
Note that some databases, SQLite in particular, are not designed for concurrent access and will fail if used in this manner. If you are using SQLite, you should set the `--jobs` to 1.
2015-10-29 02:47:44 -04:00
2016-02-14 19:55:47 -05:00
Neutral (noop) Tests
--------------------
2015-10-29 02:47:44 -04:00
2016-06-11 04:59:33 -04:00
Mutant will also test the original, unmutated, version your code. This ensures that mutant is able to properly setup and run your tests.
2016-02-14 19:55:47 -05:00
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
```
2016-06-11 04:59:33 -04:00
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
2015-11-02 17:08:07 -05:00
2016-02-14 19:55:47 -05:00
Only Mutating Changed Code
--------------------------
2015-11-02 17:08:07 -05:00
2016-04-28 12:14:15 -04:00
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:
2018-11-20 08:47:05 -05:00
2016-02-14 19:55:47 -05:00
```
2017-11-30 10:51:10 -05:00
bundle exec mutant --include lib --require virtus --since master --use rspec Virtus::Attribute#type
2016-02-14 19:55:47 -05:00
```
Known Problems
==============
2016-04-28 12:14:15 -04:00
Mutations with Infinite Runtimes
2016-02-14 19:55:47 -05:00
---------------------------------
Occasionally mutant will produce a mutation with an infinite runtime. When this happens
mutant will look like it is running indefinitely without killing a remaining mutation. To
avoid mutations like this, consider adding a timeout around your tests. For example, in
RSpec you can add the following to your `spec_helper` :
```ruby
config.around(:each) do |example|
2016-05-29 06:39:36 -04:00
Timeout.timeout(5, & example)
2016-02-14 19:55:47 -05:00
end
```
which will fail specs which run for longer than 5 seconds.
2015-10-29 02:47:44 -04:00
The Crash / Stuck Problem (MRI)
-------------------------------
Mutations generated by mutant can cause MRI to enter VM states its not prepared for.
All MRI versions > 1.9 and < 2.2.1 are affected by this depending on your compiler flags ,
compiler version, and OS scheduling behavior.
This can have the following unintended effects:
* MRI crashes with a segfault. Mutant kills each mutation in a dedicated fork to isolate
the mutations side effects when this fork terminates abnormally (segfault) mutant
counts the mutation as killed.
* MRI crashes with a segfault and gets stuck when handling the segfault.
Depending on the number of active kill jobs mutant might appear to continue normally until
all workers are stuck into this state when it begins to hang.
Currently mutant must assume that your test suite simply not terminated yet as from the outside
(parent process) the difference between a long running test and a stuck MRI is not observable.
Its planned to implement a timeout enforced from the parent process, but ideally MRI simply gets fixed.
References:
* [MRI fix ](https://github.com/ruby/ruby/commit/8fe95fea9d238a6deb70c8953ceb3a28a67f4636 )
* [MRI backport to 2.2.1 ](https://github.com/ruby/ruby/commit/8fe95fea9d238a6deb70c8953ceb3a28a67f4636 )
* [Mutant issue ](https://github.com/mbj/mutant/issues/265 )
* [Upstream bug redmine ](https://bugs.ruby-lang.org/issues/10460 )
* [Upstream bug github ](https://github.com/ruby/ruby/pull/822 )
2016-02-14 19:55:47 -05:00
Presentations
-------------
There are some presentations about mutant in the wild:
* [RailsConf 2014 ](http://railsconf.com/ ) / http://confreaks.com/videos/3333-railsconf-mutation-testing-with-mutant
* [Wrocloverb 2014 ](http://wrocloverb.com/ ) / https://www.youtube.com/watch?v=rz-lFKEioLk
* [eurucamp 2013 ](http://2013.eurucamp.org/ ) / FrOSCon-2013 http://slid.es/markusschirp/mutation-testing
* [Cologne.rb ](http://www.colognerb.de/topics/mutation-testing-mit-mutant ) / https://github.com/DonSchado/colognerb-on-mutant/blob/master/mutation_testing_slides.pdf
2015-08-16 17:46:23 -04:00
Planning a presentation?
------------------------
Mutation testing lately (not only mutant) seems to attract some attention. So naturally
2015-10-29 15:01:24 -04:00
people do talks about it at conferences, user groups or other chances. Thanks for that!
2015-08-16 17:46:23 -04:00
As I (the author @mbj ) am not too happy with some of the facts being presented about
mutant the last month.
2015-11-16 14:59:52 -05:00
So if you plan to do a presentation: I offer to review your slides / talk - for free of course.
2015-08-16 17:46:23 -04:00
My intention is NOT to change your bias pro / against this tool. Just to help to fix
invalid statements about the tool.
2015-10-29 15:01:24 -04:00
Also in many cases a conversation to the author should help you to improve the talk
2015-08-16 17:46:23 -04:00
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.
2016-02-14 19:55:47 -05:00
Blog posts
----------
Sorted by recency:
2016-08-10 07:32:05 -04:00
* [A deep dive into mutation testing and how the Mutant gem works][troessner]
2016-12-06 06:58:48 -05:00
* [Keep calm and kill mutants (December, 2015)][itransition]
2016-02-14 19:55:47 -05:00
* [How to write better code using mutation testing (November 2015)][blockscore]
* [How good are your Ruby tests? Testing your tests with mutant (June 2015)][arkency1]
* [Mutation testing and continuous integration (May 2015)][arkency2]
* [Why I want to introduce mutation testing to the `rails_event_store` gem (April 2015)][arkency3]
* [Mutation testing with mutant (April 2014)][sitepoint]
* [Mutation testing with mutant (January 2013)][solnic]
2016-08-10 07:32:05 -04:00
[troessner]: https://troessner.svbtle.com/kill-all-the-mutants-a-deep-dive-into-mutation-testing-and-how-the-mutant-gem-works
2016-12-06 06:58:48 -05:00
[itransition]: https://github.com/maksar/mentat
2016-02-14 19:55:47 -05:00
[blockscore]: https://blog.blockscore.com/how-to-write-better-code-using-mutation-testing/
[sitepoint]: http://www.sitepoint.com/mutation-testing-mutant/
[arkency1]: http://blog.arkency.com/2015/06/how-good-are-your-ruby-tests-testing-your-tests-with-mutant/
[arkency2]: http://blog.arkency.com/2015/05/mutation-testing-and-continuous-integration/
2018-11-06 12:28:14 -05:00
[arkency3]: http://blog.arkency.com/2015/04/why-i-want-to-introduce-mutation-testing-to-the-rails-event-store-gem/
2016-02-14 19:55:47 -05:00
[solnic]: http://solnic.eu/2013/01/23/mutation-testing-with-mutant.html
2013-02-27 15:35:51 -05:00
Support
-------
2014-08-07 12:00:31 -04:00
I'm very happy to receive/answer feedback/questions and criticism.
2013-02-27 15:35:51 -05:00
Your options:
2014-08-06 12:46:02 -04:00
* [GitHub Issues ](https://github.com/mbj/mutant/issues )
* Ping me on [twitter ](https://twitter.com/_m_b_j_ )
2016-07-25 02:38:15 -04:00
There is also a mutation testing slack chat. Get an invite [here ](https://mutation-testing-slack.herokuapp.com ).
For discussing this project, join [#mutant ](https://mutation-testing.slack.com/messages/#mutant ).
Other Channels:
- [#cosmic-ray ](https://mutation-testing.slack.com/messages/cosmic-ray ): for discussing `cosmic-ray` , the python mutation testing tool.
- [#devtools ](https://mutation-testing.slack.com/messages/devtools ): for discussing the `devtools` metagem.
- [#general ](https://mutation-testing.slack.com/messages/general ): for general discussions about mutation testing.
- [#mutagen ](https://mutation-testing.slack.com/messages/mutagen ): for discussing `mutagen` , the javascript mutation testing tool.
- [#random ](https://mutation-testing.slack.com/messages/random ): for misc. off topic discussion.
- [#stryker ](https://mutation-testing.slack.com/messages/stryker ): for discussing `stryker` , the javascript mutation testing tool.
- [#wtf-dev ](https://mutation-testing.slack.com/messages/wtf-dev ): for sharing software development wtfs.
2013-02-27 15:35:51 -05:00
2012-07-26 13:38:17 -04:00
Credits
-------
2013-01-03 17:40:57 -05:00
* [Markus Schirp (mbj) ](https://github.com/mbj )
2015-01-20 17:50:55 -05:00
* A gist, now removed, from [dkubb ](https://github.com/dkubb ) showing ideas.
2012-12-07 05:55:04 -05:00
* Older abandoned [mutant ](https://github.com/txus/mutant ). For motivating me doing this one.
2012-12-07 05:54:13 -05:00
* [heckle ](https://github.com/seattlerb/heckle ). For getting me into mutation testing.
2012-07-26 13:38:17 -04:00
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
-------
2012-12-21 14:59:59 -05:00
See LICENSE file.