Sha256: 7ebca455f630e13a2b5f91f9f1f679a8cf207b34c8c6d59ea107009b6e2ace31

Contents?: true

Size: 1.59 KB

Versions: 3

Compression:

Stored size: 1.59 KB

Contents

require "spec_helper"

describe Mongoid::Geospatial::Point do

  it "should not inferfer with mongoid" do
    Bar.create!(name: "Moe's")
    Bar.count.should eql(1)
  end

  it "should not respond to distance before loading external" do
    bar = Bar.create!(location: [5,5])
    bar.location.should_not respond_to(:distance)
  end


  describe "queryable" do

    before do
      Bar.create_indexes
      Mongoid::Geospatial.use_rgeo
    end

    describe "(de)mongoize" do

      it "should mongoize array" do
        geom = Bar.new(location: [10, -9]).location
        geom.class.should eql(Mongoid::Geospatial::Point)
        geom.to_geo.class.should eql(RGeo::Geographic::SphericalPointImpl)
        geom.x.should be_within(0.1).of(10)
        geom.to_geo.y.should be_within(0.1).of(-9)
      end

      it "should mongoize hash" do
        geom = Bar.new(location: {x: 10, y: -9}).location
        geom.class.should eql(Mongoid::Geospatial::Point)
        geom.to_geo.class.should eql(RGeo::Geographic::SphericalPointImpl)
      end

      it "should accept an RGeo object" do
        point = RGeo::Geographic.spherical_factory.point 1, 2
        bar = Bar.create!(location: point)
        bar.location.x.should be_within(0.1).of(1)
        bar.location.y.should be_within(0.1).of(2)
      end

      it "should calculate 3d distances by default" do
        bar = Bar.create! location: [-73.77694444, 40.63861111 ]
        bar2 = Bar.create! location: [-118.40, 33.94] #,:unit=>:mi, :spherical => true)
        bar.location.distance(bar2.location.to_geo).to_i.should be_within(1).of(3978262)
      end

    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mongoid_geospatial-2.5.1 spec/mongoid_geospatial/wrappers/rgeo_spec.rb
mongoid_geospatial-2.5.0 spec/mongoid_geospatial/wrappers/rgeo_spec.rb
mongoid_geospatial-2.3.0 spec/mongoid_geospatial/wrappers/rgeo_spec.rb