thoughtbot--shoulda-matchers/lib/shoulda/matchers/active_record/have_db_index_matcher.rb

112 lines
2.7 KiB
Ruby
Raw Normal View History

2010-12-15 22:34:19 +00:00
module Shoulda # :nodoc:
module Matchers
module ActiveRecord # :nodoc:
# Ensures that there are DB indices on the given columns or tuples of
# columns.
#
# Options:
# * <tt>unique</tt> - whether or not the index has a unique
# constraint. Use <tt>true</tt> to explicitly test for a unique
# constraint. Use <tt>false</tt> to explicitly test for a non-unique
# constraint.
2010-12-15 22:34:19 +00:00
#
# Examples:
#
# it { should have_db_index(:age) }
# it { should have_db_index([:commentable_type, :commentable_id]) }
# it { should have_db_index(:ssn).unique(true) }
#
def have_db_index(columns)
2012-03-30 15:36:04 +00:00
HaveDbIndexMatcher.new(columns)
2010-12-15 22:34:19 +00:00
end
class HaveDbIndexMatcher # :nodoc:
2012-03-30 15:36:04 +00:00
def initialize(columns)
2010-12-15 22:34:19 +00:00
@columns = normalize_columns_to_array(columns)
@options = {}
2010-12-15 22:34:19 +00:00
end
def unique(unique)
@options[:unique] = unique
2010-12-15 22:34:19 +00:00
self
end
def matches?(subject)
@subject = subject
index_exists? && correct_unique?
end
def failure_message_for_should
2010-12-15 22:34:19 +00:00
"Expected #{expectation} (#{@missing})"
end
def failure_message_for_should_not
2010-12-15 22:34:19 +00:00
"Did not expect #{expectation}"
end
def description
if @options.key?(:unique)
"have a #{index_type} index on columns #{@columns.join(' and ')}"
else
"have an index on columns #{@columns.join(' and ')}"
end
2010-12-15 22:34:19 +00:00
end
protected
def index_exists?
! matched_index.nil?
end
def correct_unique?
return true unless @options.key?(:unique)
is_unique = matched_index.unique
is_unique = !is_unique unless @options[:unique]
unless is_unique
2010-12-15 22:34:19 +00:00
@missing = "#{table_name} has an index named #{matched_index.name} " <<
"of unique #{matched_index.unique}, not #{@options[:unique]}."
2010-12-15 22:34:19 +00:00
end
is_unique
2010-12-15 22:34:19 +00:00
end
def matched_index
indexes.detect { |each| each.columns == @columns }
end
def model_class
@subject.class
end
def table_name
model_class.table_name
end
def indexes
::ActiveRecord::Base.connection.indexes(table_name)
end
def expectation
2012-03-30 15:22:31 +00:00
"#{model_class.name} to #{description}"
2010-12-15 22:34:19 +00:00
end
def index_type
if @options[:unique]
2010-12-15 22:34:19 +00:00
'unique'
else
'non-unique'
2010-12-15 22:34:19 +00:00
end
end
def normalize_columns_to_array(columns)
2012-04-10 01:03:19 +00:00
Array.wrap(columns).map(&:to_s)
2010-12-15 22:34:19 +00:00
end
end
end
end
end