trabajo-afectivo/test/test_helper.rb

94 lines
2.2 KiB
Ruby
Raw Normal View History

ENV['RAILS_ENV'] = 'test'
2012-04-10 13:31:21 +00:00
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
require 'cache'
2013-01-08 13:56:20 +00:00
require 'simplecov'
require 'simplecov-rcov'
2016-12-03 16:20:03 +00:00
require 'coveralls'
Coveralls.wear!('rails')
2012-04-10 13:31:21 +00:00
2016-06-30 20:04:48 +00:00
#ActiveSupport::TestCase.test_order = :sorted
2016-06-20 12:55:47 +00:00
2015-04-27 21:01:04 +00:00
class ActiveSupport::TestCase
2016-06-30 20:04:48 +00:00
self.test_order = :sorted
2016-06-20 12:55:47 +00:00
2015-04-27 21:01:04 +00:00
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
#
# Note: You'll currently still have to declare fixtures explicitly in integration tests
# -- they do not yet inherit this setting
2016-12-03 16:20:03 +00:00
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::RcovFormatter,
Coveralls::SimpleCov::Formatter
]
2015-04-27 21:01:04 +00:00
SimpleCov.start
fixtures :all
2012-04-10 13:31:21 +00:00
2015-04-27 21:01:04 +00:00
# disable transactions
self.use_transactional_fixtures = false
2015-04-27 21:01:04 +00:00
# clear cache
Cache.clear
2015-04-27 21:01:04 +00:00
# load seeds
load "#{Rails.root}/db/seeds.rb"
load "#{Rails.root}/test/fixtures/seeds.rb"
2012-05-06 20:48:23 +00:00
2015-04-27 21:01:04 +00:00
# set system mode to done / to activate
Setting.set('system_init_done', true)
2014-11-10 20:34:15 +00:00
def setup
2015-04-27 21:01:04 +00:00
# clear cache
Cache.clear
2015-02-25 21:35:37 +00:00
# remove background jobs
Delayed::Job.destroy_all
2015-04-27 21:01:04 +00:00
# set current user
UserInfo.current_user_id = nil
# set interface handle
ApplicationHandleInfo.current = 'unknown'
Rails.logger.info '++++NEW++++TEST++++'
end
2015-04-27 21:01:04 +00:00
# Add more helper methods to be used by all tests here...
def email_notification_count(type, recipient)
# read config file and count type & recipients
file = "#{Rails.root}/log/#{Rails.env}.log"
lines = []
IO.foreach(file) do |line|
lines.push line
end
count = 0
2016-06-30 20:04:48 +00:00
lines.reverse.each { |line|
break if line =~ /\+\+\+\+NEW\+\+\+\+TEST\+\+\+\+/
next if line !~ /Send notification \(#{type}\)/
next if line !~ /to:\s#{recipient}/
count += 1
}
count
end
def email_count(recipient)
# read config file and count & recipients
file = "#{Rails.root}/log/#{Rails.env}.log"
lines = []
IO.foreach(file) do |line|
lines.push line
end
count = 0
lines.reverse.each { |line|
break if line =~ /\+\+\+\+NEW\+\+\+\+TEST\+\+\+\+/
next if line !~ /Send email to:/
next if line !~ /to:\s'#{recipient}'/
count += 1
}
count
end
end