{refactor} helps you test your refactored code with real live data. It’s a complement to unit tests, useful in the dirtier stage of refactoring, when we’re not quite sure if our unit tests are good enough or if we don’t want to write them yet because there are too many things changing.
{refactor} lets you run both the original and refactored version of your code and checks whether the output is the same and if it runs as fast.
As you encounter failures you might improve your unit tests, and when you’re comfortable with your work you can remove the original version
Install with:
remotes::install_github("moodymudskipper/refactor")
library(refactor)
%refactor%
by default checks that the output value is consistent
between the original and refactored expressions.
They’ll often be used on the body of a function but can be used on any expression.
Here I intend to correct an inefficient use of the apply()
function,
but used pmax
incorrectly:
fun1 <- function(data) {
apply(data, 1, max)
} %refactor% {
pmax(data)
}
fun1(cars)
#> Error: The refactored expression returns a different value from the original one.
#>
#> `original` is a double vector (4, 10, 7, 22, 16, ...)
#> `refactored` is an S3 object of class <data.frame>, a list
Now using it correctly:
fun2 <- function(data) {
apply(data, 1, max)
} %refactor% {
do.call(pmax, data)
}
fun2(cars)
#> [1] 4 10 7 22 16 10 18 26 34 17 28 14 20 24 28 26 34 34 46
#> [20] 26 36 60 80 20 26 54 32 40 32 40 50 42 56 76 84 36 46 68
#> [39] 32 48 52 56 64 66 54 70 92 93 120 85
We can use the option refactor.env
to test that the local environment
isn’t changed in different ways by the original and refactored
expression.
options("refactor.env" = TRUE)
{
# original code
data <- cars
i <- 1
apply(data, i, max)
} %refactor% {
# refactored code
do.call(pmax, cars)
}
#> Error: Some variables defined in the original code, were not found in the refactored code: data, i
#> Do you need `rm(data, i)`
#> Some variables defined in the refactored code, were not found in the original code: data, i
#> Do you need `rm()`
We can use the option refactor.time
to test that the refactored
solution is faster.
# use bigger data so execution time differences are noticeable
cars2 <- do.call(rbind, replicate(1000,cars, F))
options("refactor.time" = TRUE)
fun3 <- function(data) {
do.call(pmax, data)
} %refactor% {
apply(data, 1, max)
}
fun3(cars2)
#> Error: The refactored code ran slower than the original code.
#> `original time (s)`: 0.00
#> `refactored time (s)`: 0.03
It’s often easier to use the functions below:
%refactor_chunk%
behaves like%refactor%
withoptions(refactor.value = FALSE, refactor.env = TRUE, refactor.time = FALSE)
, it’s convenient to refactor chunks of code that modify the local environment.%refactor_value%
behaves like%refactor%
withoptions(refactor.value = TRUE, refactor.env = FALSE, refactor.time = FALSE)
, it’s convenient to refactor the body of a function that returns a useful value.%refactor_chunk_and_value%
behaves like%refactor%
withoptions(refactor.value = TRUE, refactor.env = TRUE, refactor.time = FALSE)
, it’s convenient to refactor the body of a function that returns a closure.%refactor_chunk_efficiently%
,%refactor_value_efficiently%
and%refactor_chunk_and_value_efficiently%
are variants of the above which also check the improved execution speed of the refactored solution%ignore_original%
and%ignore_refactored%
are useful when original and refactored code give different results (possibly because one of them is wrong) and we want to keep both codes around without commenting.
We provide a few helper for refactoring tasks, check out the doc!
We don’t control that side effects are the same on both sides, with the exception of modifications to the local environment. This means the following for instance might be different in your refactored code and you won’t be warned about it :
- modified environments (other than local)
- written files
- printed output
- messages
- warnings
- errors
We might be able to support some of those though.
More importantly since both side are run, side effects will be run twice and in some case this might change the behavior of the program, so use cautiously.