Skip to content
Snippets Groups Projects
mongoid_test.rb 1.47 KiB
Newer Older
# encoding: utf-8
require 'mongoid_test_helper'

class MongoidTest < GeocoderTestCase
    p = PlaceUsingMongoid.new(*geocoded_object_params(:msg))
    p.location = [40.750354, -73.993371]
    assert p.geocoded?
  end

  def test_distance_to_returns_float
    p = PlaceUsingMongoid.new(*geocoded_object_params(:msg))
    p.location = [40.750354, -73.993371]
    assert p.distance_to([30, -94]).is_a?(Float)
  end

  def test_custom_coordinate_field_near_scope
    location = [40.750354, -73.993371]
    p = PlaceUsingMongoid.near(location)
    key = Mongoid::VERSION >= "3" ? "location" : :location
    assert_equal p.selector[key]['$nearSphere'], location.reverse

  def test_model_configuration
    p = PlaceUsingMongoid.new(*geocoded_object_params(:msg))
    PlaceUsingMongoid.geocoded_by :address, :coordinates => :location, :units => :km
    assert_equal 111, p.distance_to([0,1]).round

    PlaceUsingMongoid.geocoded_by :address, :coordinates => :location, :units => :mi
    assert_equal 69, p.distance_to([0,1]).round
  end
  def test_index_is_skipped_if_skip_option_flag
    result = PlaceUsingMongoidWithoutIndex.index_options.keys.flatten[0] == :coordinates
Alex Reisner's avatar
Alex Reisner committed
    assert !result

  def test_nil_radius_omits_max_distance
    location = [40.750354, -73.993371]
    p = PlaceUsingMongoid.near(location, nil)
    key = Mongoid::VERSION >= "3" ? "location" : :location
    assert_equal nil, p.selector[key]['$maxDistance']
  end