Skip to content

Commit

Permalink
Merge 5cb96cd into d2d3f2c
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Jul 15, 2019
2 parents d2d3f2c + 5cb96cd commit 8f87e00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
6 changes: 3 additions & 3 deletions app/jobs/trace_importer_job.rb
Expand Up @@ -5,15 +5,15 @@ def perform(trace)
gpx = trace.import

if gpx.actual_points.positive?
Notifier.gpx_success(trace, gpx.actual_points).deliver_later
Notifier.gpx_success(trace, gpx.actual_points).deliver
else
Notifier.gpx_failure(trace, "0 points parsed ok. Do they all have lat,lng,alt,timestamp?").deliver_later
Notifier.gpx_failure(trace, "0 points parsed ok. Do they all have lat,lng,alt,timestamp?").deliver
trace.destroy
end
rescue StandardError => e
logger.info e.to_s
e.backtrace.each { |l| logger.info l }
Notifier.gpx_failure(trace, e.to_s + "\n" + e.backtrace.join("\n")).deliver_later
Notifier.gpx_failure(trace, e.to_s + "\n" + e.backtrace.join("\n")).deliver
trace.destroy
end
end
18 changes: 3 additions & 15 deletions test/jobs/trace_importer_job_test.rb
Expand Up @@ -12,13 +12,9 @@ def gpx.actual_points
end

trace.stub(:import, gpx) do
perform_enqueued_jobs do
TraceImporterJob.perform_now(trace)
end
TraceImporterJob.perform_now(trace)
end

assert_performed_jobs 1

email = ActionMailer::Base.deliveries.last
assert_equal trace.user.email, email.to[0]
assert_match(/success/, email.subject)
Expand All @@ -36,13 +32,9 @@ def gpx.actual_points
end

trace.stub(:import, gpx) do
perform_enqueued_jobs do
TraceImporterJob.perform_now(trace)
end
TraceImporterJob.perform_now(trace)
end

assert_performed_jobs 1

email = ActionMailer::Base.deliveries.last
assert_equal trace.user.email, email.to[0]
assert_match(/failure/, email.subject)
Expand All @@ -54,13 +46,9 @@ def test_error_notification
# Check that the user gets a failure notification when something goes badly wrong
trace = create(:trace)
trace.stub(:import, -> { raise }) do
perform_enqueued_jobs do
TraceImporterJob.perform_now(trace)
end
TraceImporterJob.perform_now(trace)
end

assert_performed_jobs 1

email = ActionMailer::Base.deliveries.last
assert_equal trace.user.email, email.to[0]
assert_match(/failure/, email.subject)
Expand Down

0 comments on commit 8f87e00

Please sign in to comment.