thingspeak/spec/models/feed_spec.rb
2014-10-09 13:25:48 -04:00

58 lines
1.3 KiB
Ruby

# == Schema Information
#
# Table name: feeds
#
# id :integer not null, primary key
# channel_id :integer
# field1 :string(255)
# field2 :string(255)
# field3 :string(255)
# field4 :string(255)
# field5 :string(255)
# field6 :string(255)
# field7 :string(255)
# field8 :string(255)
# created_at :datetime
# updated_at :datetime
# entry_id :integer
# status :string(255)
# latitude :decimal(15, 10)
# longitude :decimal(15, 10)
# elevation :string(255)
# location :string(255)
#
require 'spec_helper'
describe Feed do
it "should close the connection when an exception is raised" do
# use a single connection for both queries
connection = ActiveRecord::Base.connection
# cause a proper timeout with the second argument to timeout()
begin
Timeout.timeout(1, Timeout::Error) do
connection.execute("SELECT sleep(2)")
end
rescue Timeout::Error => e
rescue => e
end
# capture the error message
error_message = nil
begin
connection.execute("SELECT 1")
rescue => e
error_message = e.message
end
error_message.should eq("Mysql2::Error: closed MySQL connection: SELECT 1")
# check the connection back in afterwards
ActiveRecord::Base.connection_pool.checkin(connection)
end
end