Matcher to test that a query is covered by an index (covered query)
Startouf opened this issue · 1 comments
Startouf commented
Would it be possible to make make a matcher to ensure that a given request is a covered query ?
We could take advantage of mongodb's explain feature to check this.
I have written some basic tests that make sure the winning plan relies on an IXSCAN, I believe it would be possible to build more advanced matchers based on this ?
I know it mainly depends on what data you need to retrieve, but it could prove very useful to ensure the code is fast.
Note that it may be slightly more difficult for special queries like count
let(:winning_plan) { criteria.explain.dig('queryPlanner', 'winningPlan') }
expect(winning_plan).to include('stage' => 'IXSCAN')
dblock commented
Good idea.