forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
integration_test_helper.rb
49 lines (33 loc) · 1.03 KB
/
integration_test_helper.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
ENV['RAILS_ENV'] = 'test'
require File.expand_path('../config/environment', __dir__)
require 'rails/test_help'
require 'cache'
require 'test_support_helper'
class ActiveSupport::TestCase
# disable transactions / to work with own database connections for each thread
self.use_transactional_tests = false
ActiveRecord::Base.logger = Rails.logger.clone
ActiveRecord::Base.logger.level = Logger::INFO
# clear cache
Cache.clear
# load seeds
load Rails.root.join('db/seeds.rb')
load Rails.root.join('test/fixtures/seeds.rb')
# set system mode to done / to activate
Setting.set('system_init_done', true)
setup do
# clear cache
Cache.clear
# reload settings
Setting.reload
# remove all session messages
Sessions.cleanup
# remove old delayed jobs
Delayed::Job.destroy_all
# set current user
UserInfo.current_user_id = nil
travel_back
end
# Add more helper methods to be used by all tests here...
end