class Mongoid::Matchers::Associations::HaveAssociationMatcher

Public Class Methods

new(name, association_type) click to toggle source
# File lib/matchers/associations.rb, line 16
def initialize(name, association_type)
  @association = {}
  @association[:name] = name.to_s
  @association[:type] = association_type
  @expectation_message = "#{type_description} #{@association[:name].inspect}"
  @expectation_message << " of type #{@association[:class].inspect}" unless @association[:class].nil?
end

Public Instance Methods

as_inverse_of(association_inverse_name) click to toggle source
# File lib/matchers/associations.rb, line 30
def as_inverse_of(association_inverse_name)
  @association[:inverse_of] = association_inverse_name.to_s
  @expectation_message << " which is an inverse of #{@association[:inverse_of].inspect}"
  self
end
cyclic() click to toggle source
# File lib/matchers/associations.rb, line 85
def cyclic
  @association[:cyclic] = true
  @expectation_message << " which specifies cyclic as #{@association[:cyclic].to_s}"
  self
end
description() click to toggle source
# File lib/matchers/associations.rb, line 266
def description
  @expectation_message
end
failure_message()
failure_message_for_should() click to toggle source
# File lib/matchers/associations.rb, line 255
def failure_message_for_should
  "Expected #{@actual.inspect} to #{@expectation_message}, got #{@negative_result_message}"
end
Also aliased as: failure_message
failure_message_for_should_not() click to toggle source
# File lib/matchers/associations.rb, line 259
def failure_message_for_should_not
  "Expected #{@actual.inspect} to not #{@expectation_message}, got #{@positive_result_message}"
end
Also aliased as: failure_message_when_negated
failure_message_when_negated()
matches?(actual) click to toggle source
# File lib/matchers/associations.rb, line 109
def matches?(actual)
  @actual = actual.is_a?(Class) ? actual : actual.class
  metadata = @actual.relations[@association[:name]]

  if metadata.nil?
    @negative_result_message = "no association named #{@association[:name]}"
    return false
  else
    @positive_result_message = "association named #{@association[:name]}"
  end

  relation = metadata.relation
  if relation != @association[:type]
    @negative_result_message = "#{@actual.inspect} #{type_description(relation, false)} #{@association[:name]}"
    return false
  else
    @positive_result_message = "#{@actual.inspect} #{type_description(relation, false)} #{@association[:name]}"
  end

  if !@association[:class].nil? and @association[:class] != metadata.klass
    @negative_result_message = "#{@positive_result_message} of type #{metadata.klass.inspect}"
    return false
  else
    @positive_result_message = "#{@positive_result_message}#{" of type #{metadata.klass.inspect}" if @association[:class]}"
  end

  if @association[:inverse_of]
    if @association[:inverse_of].to_s != metadata.inverse_of.to_s
      @negative_result_message = "#{@positive_result_message} which is an inverse of #{metadata.inverse_of}"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which is an inverse of #{metadata.inverse_of}"
    end
  end

  if @association[:order]
    if @association[:order].to_s != metadata.order.to_s
      @negative_result_message = "#{@positive_result_message} ordered by #{metadata.order}"
      return false
    else
      @positive_result_message = "#{@positive_result_message} ordered by #{metadata.order}"
    end
  end

  if @association[:order_operator]
    if @association[:order_operator] != metadata.order.operator
      @negative_result_message = "#{@positive_result_message} #{order_way(@association[:order_operator] * -1)}"
      return false
    else
      @positive_result_message = "#{@positive_result_message} #{order_way(@association[:order_operator])}"
    end
  end

  if @association[:dependent]
    if @association[:dependent].to_s != metadata.dependent.to_s
      @negative_result_message = "#{@positive_result_message} which specified dependent as #{metadata.dependent}"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which specified dependent as #{metadata.dependent}"
    end
  end

  if @association[:autosave]
    if metadata.autosave != true
      @negative_result_message = "#{@positive_result_message} which did not set autosave"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which set autosave"
    end
  end

  if @association[:autobuild]
    if metadata.autobuilding? != true
      @negative_result_message = "#{@positive_result_message} which did not set autobuild"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which set autobuild"
    end
  end

  if @association[:polymorphic]
    if metadata.polymorphic? != true
      @negative_result_message = "#{@positive_result_message} which did not set polymorphic"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which set polymorphic"
    end
  end

  if @association[:cascade_callbacks]
    if metadata.cascading_callbacks? != true
      @negative_result_message = "#{@positive_result_message} which did not set cascade_callbacks"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which set cascade_callbacks"
    end
  end

  if @association[:cyclic]
    if metadata.cyclic? != true
      @negative_result_message = "#{@positive_result_message} which did not set cyclic"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which set cyclic"
    end
  end

  if @association[:store_as]
    if metadata.store_as != @association[:store_as]
      @negative_result_message = "#{@positive_result_message} which is stored as #{metadata.store_as}"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which is stored as #{metadata.store_as}"
    end
  end

  if @association[:index]
    if metadata.index != true
      @negative_result_message = "#{@positive_result_message} which did not set index"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which set index"
    end
  end

  if @association[:foreign_key]
    if metadata.foreign_key != @association[:foreign_key]
      @negative_result_message = "#{@positive_result_message} with foreign key #{metadata.foreign_key.inspect}"
      return false
    else
      @positive_result_message = "#{@positive_result_message} with foreign key #{metadata.foreign_key.inspect}"
    end
  end

  if @association[:counter_cache]
    if metadata.counter_cached? != true
      @negative_result_message = "#{@positive_result_message} which did not set counter_cache"
      return false
    else
      @positive_result_message = "#{@positive_result_message} which set counter_cache"
    end
  end

  return true
end
of_type(klass) click to toggle source
# File lib/matchers/associations.rb, line 24
def of_type(klass)
  @association[:class] = klass
  @expectation_message << " of type #{@association[:class].inspect}"
  self
end
ordered_by(association_field_name) click to toggle source
# File lib/matchers/associations.rb, line 36
def ordered_by(association_field_name)
  raise "#{@association[:type].inspect} does not respond to :order" unless [HAS_MANY, HAS_AND_BELONGS_TO_MANY, EMBEDS_MANY].include?(@association[:type])
  @association[:order] = association_field_name.to_s
  @expectation_message << " ordered by #{@association[:order].inspect}"

  if association_field_name.is_a? Mongoid::Criteria::Queryable::Key
    @association[:order_operator] = association_field_name.operator
    @expectation_message << " #{order_way(@association[:order_operator])}"
  end

  self
end
stored_as(store_as) click to toggle source
# File lib/matchers/associations.rb, line 91
def stored_as(store_as)
  @association[:store_as] = store_as.to_s
  @expectation_message << " which is stored as #{@association[:store_as].inspect}"
  self
end
type_description(type = nil, passive = true) click to toggle source
# File lib/matchers/associations.rb, line 270
def type_description(type = nil, passive = true)
  type ||= @association[:type]
  case type.name
    when EMBEDS_ONE.name
      (passive ? 'embed' : 'embeds') << ' one'
    when EMBEDS_MANY.name
      (passive ? 'embed' : 'embeds') << ' many'
    when EMBEDDED_IN.name
      (passive ? 'be' : 'is') << ' embedded in'
    when HAS_ONE.name
      (passive ? 'reference' : 'references') << ' one'
    when HAS_MANY.name
      (passive ? 'reference' : 'references') << ' many'
    when HAS_AND_BELONGS_TO_MANY.name
      (passive ? 'reference' : 'references') << ' and referenced in many'
    when BELONGS_TO.name
      (passive ? 'be referenced in' : 'referenced in')
    else
      raise "Unknown association type '%s'" % type
  end
end
with_autobuild() click to toggle source
# File lib/matchers/associations.rb, line 67
def with_autobuild
  @association[:autobuild] = true
  @expectation_message << " which specifies autobuild as #{@association[:autobuild].to_s}"
  self
end
with_autosave() click to toggle source
# File lib/matchers/associations.rb, line 55
def with_autosave
  @association[:autosave] = true
  @expectation_message << " which specifies autosave as #{@association[:autosave].to_s}"
  self
end
with_cascading_callbacks() click to toggle source
# File lib/matchers/associations.rb, line 79
def with_cascading_callbacks
  @association[:cascade_callbacks] = true
  @expectation_message << " which specifies cascade_callbacks as #{@association[:cascade_callbacks].to_s}"
  self
end
with_counter_cache() click to toggle source
# File lib/matchers/associations.rb, line 103
def with_counter_cache
  @association[:counter_cache] = true
  @expectation_message << " which specifies counter_cache as #{@association[:counter_cache].to_s}"
  self
end
with_dependent(method_name) click to toggle source
# File lib/matchers/associations.rb, line 49
def with_dependent(method_name)
  @association[:dependent] = method_name
  @expectation_message << " which specifies dependent as #{@association[:dependent].to_s}"
  self
end
with_foreign_key(foreign_key) click to toggle source
# File lib/matchers/associations.rb, line 97
def with_foreign_key(foreign_key)
  @association[:foreign_key] = foreign_key.to_s
  @expectation_message << " using foreign key #{@association[:foreign_key].inspect}"
  self
end
with_index() click to toggle source
# File lib/matchers/associations.rb, line 61
def with_index
  @association[:index] = true
  @expectation_message << " which specifies index as #{@association[:index].to_s}"
  self
end
with_polymorphism() click to toggle source
# File lib/matchers/associations.rb, line 73
def with_polymorphism
  @association[:polymorphic] = true
  @expectation_message << " which specifies polymorphic as #{@association[:polymorphic].to_s}"
  self
end

Private Instance Methods

order_way(operator) click to toggle source
# File lib/matchers/associations.rb, line 293
def order_way(operator)
  [nil, "ascending", "descending"][operator]
end