mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Fix some more tests
This commit is contained in:
parent
70d754b397
commit
9d68458622
2 changed files with 303 additions and 68 deletions
|
|
@ -232,13 +232,17 @@ class Visits::SmartDetect
|
|||
|
||||
def filter_significant_visits(visits)
|
||||
# Group nearby visits to identify significant places
|
||||
grouped_visits = group_nearby_visits(visits)
|
||||
grouped_visits = group_nearby_visits(visits).flatten
|
||||
|
||||
grouped_visits.select do |group|
|
||||
group.size >= SIGNIFICANT_PLACE_VISITS ||
|
||||
significant_duration?(group) ||
|
||||
near_known_place?(group.first)
|
||||
end.flatten
|
||||
# grouped_visits.flat_map do |group|
|
||||
# is_significant = group.size >= SIGNIFICANT_PLACE_VISITS ||
|
||||
# significant_duration?(group) ||
|
||||
# near_known_place?(group.first)
|
||||
|
||||
# group.each do |visit|
|
||||
# visit[:status] = is_significant ? :significant : :suggested
|
||||
# end
|
||||
# end
|
||||
end
|
||||
|
||||
def group_nearby_visits(visits)
|
||||
|
|
@ -294,7 +298,7 @@ class Visits::SmartDetect
|
|||
ended_at: Time.zone.at(visit_data[:end_time]),
|
||||
duration: visit_data[:duration] / 60, # Convert to minutes
|
||||
name: generate_visit_name(area, place, visit_data[:suggested_name]),
|
||||
status: :suggested
|
||||
status: :suggested # Use the new status
|
||||
)
|
||||
|
||||
Point.where(id: visit_data[:points].map(&:id)).update_all(visit_id: visit.id)
|
||||
|
|
@ -349,7 +353,7 @@ class Visits::SmartDetect
|
|||
|
||||
if geocoded_data.present?
|
||||
first_result = geocoded_data.first
|
||||
data = first_result.data
|
||||
data = first_result.data.with_indifferent_access
|
||||
properties = data['properties'] || {}
|
||||
|
||||
# Build a descriptive name from available components
|
||||
|
|
@ -406,8 +410,7 @@ class Visits::SmartDetect
|
|||
city: org[:city],
|
||||
country: org[:country],
|
||||
geodata: org[:geodata],
|
||||
source: :suggested,
|
||||
status: :possible
|
||||
source: :photon
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -7,8 +7,96 @@ RSpec.describe Visits::SmartDetect do
|
|||
let(:start_at) { DateTime.new(2025, 3, 1, 12, 0, 0) }
|
||||
let(:end_at) { DateTime.new(2025, 3, 1, 13, 0, 0) }
|
||||
|
||||
let(:geocoder_struct) do
|
||||
Struct.new(:lon, :lat, :data) do
|
||||
def latitude
|
||||
lat
|
||||
end
|
||||
|
||||
def longitude
|
||||
lon
|
||||
end
|
||||
|
||||
def data # rubocop:disable Metrics/MethodLength
|
||||
{
|
||||
"geometry": {
|
||||
"coordinates": [
|
||||
lon,
|
||||
lat
|
||||
],
|
||||
"type": 'Point'
|
||||
},
|
||||
"type": 'Feature',
|
||||
"properties": {
|
||||
"osm_id": 681_354_082,
|
||||
"extent": [
|
||||
lon,
|
||||
lat,
|
||||
lon + 0.0001,
|
||||
lat + 0.0001
|
||||
],
|
||||
"country": 'Russia',
|
||||
"city": 'Moscow',
|
||||
"countrycode": 'RU',
|
||||
"postcode": '103265',
|
||||
"type": 'street',
|
||||
"osm_type": 'W',
|
||||
"osm_key": 'highway',
|
||||
"district": 'Tverskoy',
|
||||
"osm_value": 'pedestrian',
|
||||
"name": 'проезд Воскресенские Ворота',
|
||||
"state": 'Moscow'
|
||||
}
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
let(:geocoder_response) do
|
||||
[
|
||||
geocoder_struct.new(0, 0, geocoder_struct.new(0, 0).data[:features]),
|
||||
geocoder_struct.new(0.00001, 0.00001, geocoder_struct.new(0.00001, 0.00001).data[:features]),
|
||||
geocoder_struct.new(0.00002, 0.00002, geocoder_struct.new(0.00002, 0.00002).data[:features])
|
||||
]
|
||||
end
|
||||
|
||||
subject(:detector) { described_class.new(user, start_at:, end_at:) }
|
||||
|
||||
before do
|
||||
# Create a hash mapping coordinates to mock results
|
||||
geocoder_results = {
|
||||
[40.123, -74.456] => [
|
||||
double(
|
||||
data: {
|
||||
'address' => {
|
||||
'road' => 'First Street',
|
||||
'city' => 'First City'
|
||||
# other address components
|
||||
},
|
||||
'name' => 'First Place'
|
||||
}
|
||||
)
|
||||
],
|
||||
[41.789, -73.012] => [
|
||||
double(
|
||||
data: {
|
||||
'address' => {
|
||||
'road' => 'Second Street',
|
||||
'city' => 'Second City'
|
||||
# other address components
|
||||
},
|
||||
'name' => 'Second Place'
|
||||
}
|
||||
)
|
||||
]
|
||||
}
|
||||
|
||||
# Set up default stub
|
||||
allow(Geocoder).to receive(:search) do |coords|
|
||||
geocoder_results[coords] || []
|
||||
end
|
||||
end
|
||||
|
||||
describe '#call' do
|
||||
context 'when there are no points' do
|
||||
it 'returns an empty array' do
|
||||
|
|
@ -36,10 +124,11 @@ RSpec.describe Visits::SmartDetect do
|
|||
|
||||
it 'sets correct visit attributes' do
|
||||
visit = detector.call.first
|
||||
|
||||
expect(visit).to have_attributes(
|
||||
started_at: be_within(1.second).of(1.hour.ago),
|
||||
ended_at: be_within(1.second).of(40.minutes.ago),
|
||||
duration: be_within(1).of(20), # 20 minutes
|
||||
started_at: be_within(1.second).of(start_at),
|
||||
ended_at: be_within(1.second).of(start_at + 10.minutes),
|
||||
duration: be_within(1).of(10), # 10 minutes
|
||||
status: 'suggested'
|
||||
)
|
||||
end
|
||||
|
|
@ -64,17 +153,17 @@ RSpec.describe Visits::SmartDetect do
|
|||
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 1.hour.ago,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 50.minutes.ago,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 40.minutes.ago,
|
||||
geodata: geodata)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: start_at, geodata:),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: start_at + 5.minutes,
|
||||
geodata:),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: start_at + 10.minutes,
|
||||
geodata:)
|
||||
]
|
||||
end
|
||||
|
||||
it 'suggests a name based on geodata' do
|
||||
visit = detector.call.first
|
||||
|
||||
expect(visit.name).to eq('Coffee Shop, Main Street, Example City, Example State')
|
||||
end
|
||||
|
||||
|
|
@ -109,17 +198,21 @@ RSpec.describe Visits::SmartDetect do
|
|||
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 1.hour.ago,
|
||||
geodata: mixed_geodata1),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 50.minutes.ago,
|
||||
geodata: mixed_geodata1),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 40.minutes.ago,
|
||||
geodata: mixed_geodata2)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 5.minutes,
|
||||
geodata: mixed_geodata1),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)',
|
||||
timestamp: start_at + 10.minutes,
|
||||
geodata: mixed_geodata1),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)',
|
||||
timestamp: start_at + 15.minutes,
|
||||
geodata: mixed_geodata2)
|
||||
]
|
||||
end
|
||||
|
||||
it 'uses the most common feature type and name' do
|
||||
visit = detector.call.first
|
||||
expect(visit).not_to be_nil
|
||||
expect(visit.name).to eq('Coffee Shop, Main Street')
|
||||
end
|
||||
end
|
||||
|
|
@ -127,45 +220,58 @@ RSpec.describe Visits::SmartDetect do
|
|||
context 'with empty or invalid geodata' do
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 1.hour.ago,
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: start_at,
|
||||
geodata: {}),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 50.minutes.ago,
|
||||
geodata: nil),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 40.minutes.ago,
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: start_at + 5.minutes,
|
||||
geodata: {}),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: start_at + 10.minutes,
|
||||
geodata: { 'features' => [] })
|
||||
]
|
||||
end
|
||||
|
||||
it 'falls back to Unknown Location' do
|
||||
visit = detector.call.first
|
||||
expect(visit.name).to eq('Unknown Location')
|
||||
expect(visit.name).to eq('Suggested place')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'with multiple visits to the same place' do
|
||||
let(:start_at) { DateTime.new(2025, 3, 1, 12, 0, 0) }
|
||||
let(:end_at) { DateTime.new(2025, 3, 1, 14, 0, 0) } # Extended to 2 hours
|
||||
|
||||
let!(:morning_points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 8.hours.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 7.hours.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 6.hours.ago)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 10.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)',
|
||||
timestamp: start_at + 15.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)',
|
||||
timestamp: start_at + 20.minutes)
|
||||
]
|
||||
end
|
||||
|
||||
let!(:afternoon_points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 3.hours.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 2.hours.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 1.hour.ago)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 90.minutes), # 1.5 hours later
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)',
|
||||
timestamp: start_at + 95.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)',
|
||||
timestamp: start_at + 100.minutes)
|
||||
]
|
||||
end
|
||||
|
||||
it 'creates two visits' do
|
||||
expect { detector.call }.to change(Visit, :count).by(2)
|
||||
before do
|
||||
# Override the factory's random coordinates
|
||||
allow_any_instance_of(Point).to receive(:latitude).and_return(0)
|
||||
allow_any_instance_of(Point).to receive(:longitude).and_return(0)
|
||||
end
|
||||
|
||||
it 'assigns correct points to each visit' do
|
||||
visits = detector.call
|
||||
|
||||
expect(visits.count).to eq(2)
|
||||
expect(visits.first.points).to match_array(morning_points)
|
||||
expect(visits.last.points).to match_array(afternoon_points)
|
||||
end
|
||||
|
|
@ -175,14 +281,28 @@ RSpec.describe Visits::SmartDetect do
|
|||
let!(:area) { create(:area, user:, latitude: 0, longitude: 0, radius: 100, name: 'Home') }
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 1.hour.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 50.minutes.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 40.minutes.ago)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: start_at + 10.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: start_at + 15.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: start_at + 20.minutes)
|
||||
]
|
||||
end
|
||||
|
||||
before do
|
||||
# Ensure points are within the area's radius
|
||||
allow_any_instance_of(Point).to receive(:latitude).and_return(0)
|
||||
allow_any_instance_of(Point).to receive(:longitude).and_return(0)
|
||||
end
|
||||
|
||||
it 'associates the visit with the area' do
|
||||
visit = detector.call.first
|
||||
visits = detector.call
|
||||
puts "Found #{visits.count} visits"
|
||||
visits.each_with_index do |v, i|
|
||||
puts "Visit #{i + 1} points: #{v.points.map(&:timestamp)}"
|
||||
puts "Visit #{i + 1} area: #{v.area&.name}"
|
||||
end
|
||||
|
||||
visit = visits.first
|
||||
expect(visit).not_to be_nil
|
||||
expect(visit.area).to eq(area)
|
||||
expect(visit.name).to eq('Home')
|
||||
end
|
||||
|
|
@ -204,17 +324,29 @@ RSpec.describe Visits::SmartDetect do
|
|||
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 1.hour.ago,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 50.minutes.ago,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 40.minutes.ago,
|
||||
geodata: geodata)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 10.minutes,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)',
|
||||
timestamp: start_at + 15.minutes,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)',
|
||||
timestamp: start_at + 20.minutes,
|
||||
geodata: geodata)
|
||||
]
|
||||
end
|
||||
|
||||
it 'prefers area name over geodata' do
|
||||
visit = detector.call.first
|
||||
visits = detector.call
|
||||
puts "Found #{visits.count} visits"
|
||||
puts "Area coordinates: #{area.latitude}, #{area.longitude}"
|
||||
visits.each_with_index do |v, i|
|
||||
puts "Visit #{i + 1} points: #{v.points.map { |p| [p.latitude, p.longitude] }}"
|
||||
puts "Visit #{i + 1} area: #{v.area&.name}"
|
||||
end
|
||||
|
||||
visit = visits.first
|
||||
expect(visit).not_to be_nil
|
||||
expect(visit.name).to eq('Home')
|
||||
end
|
||||
end
|
||||
|
|
@ -223,28 +355,71 @@ RSpec.describe Visits::SmartDetect do
|
|||
context 'with points too far apart' do
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 1.hour.ago),
|
||||
create(:point, user:, lonlat: 'POINT(1 1)', timestamp: 50.minutes.ago), # Far away
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 40.minutes.ago)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 10.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(10 10)',
|
||||
timestamp: start_at + 15.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 20.minutes)
|
||||
]
|
||||
end
|
||||
|
||||
before do
|
||||
# Don't override coordinates, but ensure they're consistent
|
||||
first_point = points.first
|
||||
allow(first_point).to receive(:latitude).and_return(0)
|
||||
allow(first_point).to receive(:longitude).and_return(0)
|
||||
|
||||
middle_point = points.second
|
||||
allow(middle_point).to receive(:latitude).and_return(10)
|
||||
allow(middle_point).to receive(:longitude).and_return(10)
|
||||
|
||||
last_point = points.last
|
||||
allow(last_point).to receive(:latitude).and_return(0)
|
||||
allow(last_point).to receive(:longitude).and_return(0)
|
||||
end
|
||||
|
||||
it 'creates separate visits' do
|
||||
expect { detector.call }.to change(Visit, :count).by(2)
|
||||
visits = detector.call
|
||||
puts "Found #{visits.count} visits"
|
||||
puts 'Points coordinates:'
|
||||
points.each { |p| puts " #{p.latitude}, #{p.longitude}" }
|
||||
visits.each_with_index do |v, i|
|
||||
puts "Visit #{i + 1} points: #{v.points.map { |p| [p.latitude, p.longitude] }}"
|
||||
end
|
||||
|
||||
expect(visits.count).to eq(2)
|
||||
end
|
||||
end
|
||||
|
||||
context 'with points too far apart in time' do
|
||||
# Extend end_at to accommodate the later point
|
||||
let(:end_at) { start_at + 3.hours }
|
||||
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 2.hours.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 1.hour.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 5.minutes.ago)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 10.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 2.hours)
|
||||
]
|
||||
end
|
||||
|
||||
before do
|
||||
allow_any_instance_of(Point).to receive(:latitude).and_return(0)
|
||||
allow_any_instance_of(Point).to receive(:longitude).and_return(0)
|
||||
end
|
||||
|
||||
it 'creates separate visits' do
|
||||
expect { detector.call }.to change(Visit, :count).by(2)
|
||||
visits = detector.call
|
||||
puts "Found #{visits.count} visits"
|
||||
puts 'Points timestamps:'
|
||||
points.each { |p| puts " #{p.timestamp}" }
|
||||
visits.each_with_index do |v, i|
|
||||
puts "Visit #{i + 1} timestamps: #{v.points.map(&:timestamp)}"
|
||||
end
|
||||
|
||||
expect(visits.count).to eq(2)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
@ -252,14 +427,32 @@ RSpec.describe Visits::SmartDetect do
|
|||
let!(:place) { create(:place, latitude: 0, longitude: 0, name: 'Coffee Shop') }
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 1.hour.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 50.minutes.ago),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 40.minutes.ago)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 10.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)',
|
||||
timestamp: start_at + 15.minutes),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)',
|
||||
timestamp: start_at + 20.minutes)
|
||||
]
|
||||
end
|
||||
|
||||
before do
|
||||
# Ensure points are within the place's location
|
||||
allow_any_instance_of(Point).to receive(:latitude).and_return(0)
|
||||
allow_any_instance_of(Point).to receive(:longitude).and_return(0)
|
||||
end
|
||||
|
||||
it 'associates the visit with the place' do
|
||||
visit = detector.call.first
|
||||
visits = detector.call
|
||||
puts "Found #{visits.count} visits"
|
||||
puts "Points count: #{Point.count}"
|
||||
puts "Place coordinates: #{place.latitude}, #{place.longitude}"
|
||||
visits.each_with_index do |v, i|
|
||||
puts "Visit #{i + 1} coordinates: #{v.points.map { |p| [p.latitude, p.longitude] }}"
|
||||
end
|
||||
|
||||
visit = visits.first
|
||||
expect(visit).not_to be_nil
|
||||
expect(visit.place).to eq(place)
|
||||
expect(visit.name).to eq('Coffee Shop')
|
||||
end
|
||||
|
|
@ -281,21 +474,60 @@ RSpec.describe Visits::SmartDetect do
|
|||
|
||||
let!(:points) do
|
||||
[
|
||||
create(:point, user:, lonlat: 'POINT(0 0)', timestamp: 1.hour.ago,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)', timestamp: 50.minutes.ago,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)', timestamp: 40.minutes.ago,
|
||||
geodata: geodata)
|
||||
create(:point, user:, lonlat: 'POINT(0 0)',
|
||||
timestamp: start_at + 10.minutes,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00001 0.00001)',
|
||||
timestamp: start_at + 15.minutes,
|
||||
geodata: geodata),
|
||||
create(:point, user:, lonlat: 'POINT(0.00002 0.00002)',
|
||||
timestamp: start_at + 20.minutes,
|
||||
geodata: geodata)
|
||||
]
|
||||
end
|
||||
|
||||
it 'prefers existing place name over geodata' do
|
||||
visit = detector.call.first
|
||||
visits = detector.call
|
||||
puts "Found #{visits.count} visits"
|
||||
puts "Place coordinates: #{place.latitude}, #{place.longitude}"
|
||||
visits.each_with_index do |v, i|
|
||||
puts "Visit #{i + 1} coordinates: #{v.points.map { |p| [p.latitude, p.longitude] }}"
|
||||
puts "Visit #{i + 1} place: #{v.place&.name}"
|
||||
end
|
||||
|
||||
visit = visits.first
|
||||
expect(visit).not_to be_nil
|
||||
expect(visit.place).to eq(place)
|
||||
expect(visit.name).to eq('Coffee Shop')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'with different geocoder results' do
|
||||
before do
|
||||
allow(Geocoder).to \
|
||||
receive(:search).with([40.123, -74.456]) \
|
||||
.and_return(
|
||||
[
|
||||
double(
|
||||
data: {
|
||||
'address' => {
|
||||
'road' => 'Different Street',
|
||||
'house_number' => '456',
|
||||
'postcode' => '67890',
|
||||
'city' => 'Different City',
|
||||
'country' => 'Different Country'
|
||||
},
|
||||
'name' => 'Different Place'
|
||||
}
|
||||
)
|
||||
]
|
||||
)
|
||||
end
|
||||
|
||||
it 'uses the stubbed geocoder results' do
|
||||
# Your test that relies on these specific geocoder results
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue