The unreliable
gem forces your ActiveRecord tests not to rely on ambiguous ordering. This makes your app and its tests more robust.
Add unreliable
to your Gemfile
's test
group:
# Gemfile
group :test do
gem "unreliable", "~> 0.10"
end
And run bundle install
. Then try running your test suite. If it emits new errors and failures, great!
Here's an open secret: relational databases do not guarantee the order results are returned in, without a thorough ORDER BY
clause.
If all your ActiveRecord ordering is already unambiguous, congratulations! unreliable
will have no effect.
But sometimes... we think we specified an unambiguous order, but we didn't. For example, maybe we ordered on timestamps, which are usually unique but sometimes not.
The test suite will stay silent about that, as long as our database just happens to return the same order. That silence is a problem.
If ambiguous ordering is fine for your app's purposes, but your tests rely on a specific order, that's a bug in your tests. Your tests are incorrectly failing -- rarely -- which can be confusing and annoying.
Or, if your Rails code relies on that accidental ordering, that's a bug in your app. Your tests are passing when they should be failing.
In both cases, unreliable
exposes the problem by making those tests fail most of the time.
When unreliable
turns up a new test failure, you fix it in one of two ways.
Either:
- relax your test so it stops relying on order,
- or tighten up your app to specify order rigorously.
In my company's app, it was about 50/50.
Take a look at what your test is checking. If you're testing a method or an endpoint that returns a list whose order doesn't matter, you may have written it to expect the order that was returned the first time you ran it. This often happens with fixtures. You might:
-
Make your test accept all correct answers. For example, sort an array in the method's response before comparing.
-
Help your test suite focus on what you're testing. If your fixtures' "latest" element could change because they don't specify a timestamp, that might be a distraction that's not relevant to how your app works, so you could assign unique timestamps to the fixtures.
This makes your test suite more robust.
If your test suite is checking generated .to_sql
against known-good SQL text, unreliable
isn't helpful. It's easiest to use Unreliable::Config.disable { ... }
to turn it off for a block.
If your app should be returning results in a particular order, and now with unreliable
it sometimes does not, your test is correct and your app is wrong.
Specify order rigorously in your app.
Maybe you're testing Book.reverse_chron.first
, and you've defined that ordering this way:
class Book
scope :reverse_chron, -> { order(year_published: :desc) }
end
When you meant to define it unambiguously:
scope :reverse_chron, -> { order(year_published: :desc, title: :desc) }
Or, if title
is not unique:
scope :reverse_chron, -> { order(year_published: :desc, title: :desc, id: :desc) }
This example's problem is easy to see because many books are published each year.
But this error can occur at any granularity, in time or other data types.
unreliable
is tested on every valid combination of:
- sqlite, postgresql, and mysql2 adapters
- Ruby 2.6 through 3.3
- Rails 5.2 through 7.1
unreliable
depends only on ActiveRecord and Railties. If you have a non-Rails app that uses ActiveRecord, you can still use it.
unreliable
does exactly nothing outside of test environments. There is intentionally no way to enable it in production, and there never will be.
In a Rails test environment, unreliable
patches ActiveRecord to append a final ORDER BY
clause, when necessary, that returns results in a random order.
Because it's appended, the existing ordering is not affected unless it is ambiguous.
With unreliable
installed, every ActiveRecord relation invoked by the test suite will have any ambiguity replaced with randomness. Tests that rely on the ordering of two records will break half the time. Tests with three or more break most of the time.
unreliable
patches ActiveRecord::QueryMethods#build_arel
, the point where an Arel is converted for use, to append an order to the existing order chain. (The patch is applied after ActiveRecord loads, using ActiveSupport.on_load
, the standard interface since Rails 4.0.) It works with MySQL, Postgres, and SQLite.
This means that the ORDER BY
applies to not just SELECT
but e.g. delete_all
and update_all
. It also applies within subqueries.
The patch is only applied when Rails.env.test?
, and that boolean is also checked on every invocation, just to make certain it has no effect in any other environment.
The gem has a large test suite that checks for correctness at several abstraction layers inside ActiveRecord. It ensures the correct SQL is generated and that it executes correctly.
Your test environment is just for running your test suite. If you've overloaded the test environment to do any actual work, you'll be frustrated when unreliable
slows it down and changes its behavior. Don't do that.
Thoughts and suggestions are welcome. Please read the code of conduct, then create an issue or pull request on GitHub. If you just have questions, please go ahead and open an issue!
To test locally, see the hint at the top of compose.yaml
to spin up docker containers.
After you spin up the containers and open a shell in the app container, run unreliable
's linter with:
standardrb
Run its tests in three separate passes:
RSPEC_ADAPTER=sqlite bundle exec rake
RSPEC_ADAPTER=postgresql bundle exec rake
RSPEC_ADAPTER=mysql2 bundle exec rake
The GitHub CI workflow in .github/
ensures those tests are also run against against every compatible minor version of Ruby. Your PR won't trigger my GitHub project's workflow, but you're welcome to run your own, or ask me to run mine manually.
If you'd like to see unreliable
in action on a small but real Rails app locally, you can do this:
- In a directory next to your
unreliable
working directory, create a.ruby-version
of2.7.8
and a 2-lineGemfile
:source "https://rubygems.org"
,gem "rails", "~> 7.0"
bundle install && bundle exec rails new . --force
echo 'gem "unreliable", path: "../unreliable"' >> Gemfile
bundle install && bundle exec rails generate model post title:string body:text
RAILS_ENV=test bundle exec rails db:migrate
RAILS_ENV=test bundle exec rails c
- You should see SQLite's
ORDER BY RANDOM()
in ActiveRecord queries:
irb(main):001:0> Post.where(title: "abc")
(2.1ms) SELECT sqlite_version(*)
Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."title" = ? ORDER BY RANDOM() [["title", "abc"]]
=> []
irb(main):002:0> Post.limit(5).delete_all
Post Delete All (0.2ms) DELETE FROM "posts" WHERE "posts"."id" IN (SELECT "posts"."id" FROM "posts" ORDER BY RANDOM() LIMIT ?) [["LIMIT", 5]]
=> 0
The most common ambiguous ordering is an ORDER BY one column that is not unique, like a timestamp.
But there are other ways you can order a relation but still have your query be ambiguous:
- ORDER BY multiple columns, but with no subset which is unique
- ORDER BY a column your pre-Rails-6.1 application thought was unique, but currently isn't, due to your non-UNIQUE database column's accent- or case-insensitive collation
- ORDER BY values that are identical only within the prefix length limit examined for sorting
unreliable
ensures correct testing because it appends a random order to each of these cases.
SQL standard (SQL-92):
When the ordering of a cursor is partially determined by an order by clause, then the relative positions of two rows are determined only by the order by clause; if the two rows have equal values for the purpose of evaluating the order by clause, then their relative positions are implementation-dependent.
If multiple rows have identical values in the
ORDER BY
columns, the server is free to return those rows in any order, and may do so differently depending on the overall execution plan. In other words, the sort order of those rows is nondeterministic with respect to the nonordered columns.
If two rows are equal according to the leftmost expression, they are compared according to the next expression and so on. If they are equal according to all specified expressions, they are returned in an implementation-dependent order.
SQLite (3.45):
The order in which two rows for which all ORDER BY expressions evaluate to equal values are returned is undefined.