Newer
Older
class NearTest < GeocoderTestCase
def test_near_scope_options_includes_bounding_box_condition
omit("Not applicable to unextended SQLite") if using_unextended_sqlite?
result = PlaceWithCustomResultsHandling.send(:near_scope_options, 1.0, 2.0, 5)
table_name = PlaceWithCustomResultsHandling.table_name
assert_match(/#{table_name}.latitude BETWEEN 0.9276\d* AND 1.0723\d* AND #{table_name}.longitude BETWEEN 1.9276\d* AND 2.0723\d* AND /, result[:conditions][0])
end
def test_near_scope_options_includes_radius_condition
omit("Not applicable to unextended SQLite") if using_unextended_sqlite?
result = Place.send(:near_scope_options, 1.0, 2.0, 5)
assert_match(/BETWEEN \? AND \?$/, result[:conditions][0])
end
def test_near_scope_options_includes_radius_column_max_radius
omit("Not applicable to unextended SQLite") if using_unextended_sqlite?
result = Place.send(:near_scope_options, 1.0, 2.0, :radius_column)
assert_match(/BETWEEN \? AND radius_column$/, result[:conditions][0])
end
def test_near_scope_options_includes_radius_default_min_radius
omit("Not applicable to unextended SQLite") if using_unextended_sqlite?
result = Place.send(:near_scope_options, 1.0, 2.0, 5)
assert_equal(0, result[:conditions][1])
assert_equal(5, result[:conditions][2])
end
def test_near_scope_options_includes_radius_custom_min_radius
omit("Not applicable to unextended SQLite") if using_unextended_sqlite?
result = Place.send(:near_scope_options, 1.0, 2.0, 5, :min_radius => 3)
assert_equal(3, result[:conditions][1])
assert_equal(5, result[:conditions][2])
end
def test_near_scope_options_includes_radius_bogus_min_radius
omit("Not applicable to unextended SQLite") if using_unextended_sqlite?
result = Place.send(:near_scope_options, 1.0, 2.0, 5, :min_radius => 'bogus')
assert_equal(0, result[:conditions][1])
assert_equal(5, result[:conditions][2])
Philip Hallstrom
committed
end
def test_near_scope_options_with_defaults
result = PlaceWithCustomResultsHandling.send(:near_scope_options, 1.0, 2.0, 5)
assert_match(/AS distance/, result[:select])
assert_match(/AS bearing/, result[:select])
assert_no_consecutive_comma(result[:select])
end
def test_near_scope_options_with_no_distance
result = PlaceWithCustomResultsHandling.send(:near_scope_options, 1.0, 2.0, 5, :select_distance => false)
assert_no_match(/AS distance/, result[:select])
assert_match(/AS bearing/, result[:select])
assert_no_match(/distance/, result[:condition])
assert_no_match(/distance/, result[:order])
assert_no_consecutive_comma(result[:select])
end
def test_near_scope_options_with_no_bearing
result = PlaceWithCustomResultsHandling.send(:near_scope_options, 1.0, 2.0, 5, :select_bearing => false)
assert_match(/AS distance/, result[:select])
assert_no_match(/AS bearing/, result[:select])
assert_no_consecutive_comma(result[:select])
end
def test_near_scope_options_with_custom_distance_column
result = PlaceWithCustomResultsHandling.send(:near_scope_options, 1.0, 2.0, 5, :distance_column => 'calculated_distance')
assert_no_match(/AS distance/, result[:select])
assert_match(/AS calculated_distance/, result[:select])
assert_no_match(/\bdistance\b/, result[:order])
assert_match(/calculated_distance/, result[:order])
assert_no_consecutive_comma(result[:select])
end
def test_near_scope_options_with_custom_bearing_column
result = PlaceWithCustomResultsHandling.send(:near_scope_options, 1.0, 2.0, 5, :bearing_column => 'calculated_bearing')
assert_no_match(/AS bearing/, result[:select])
assert_match(/AS calculated_bearing/, result[:select])
assert_no_consecutive_comma(result[:select])
end
private
def assert_no_consecutive_comma(string)
assert_no_match(/, *,/, string, "two consecutive commas")
def using_unextended_sqlite?
ENV['DB'] == 'sqlite' && ENV['USE_SQLITE_EXT'] != '1'