forked from bytebin/deepworld-gameserver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspec_helper.rb
77 lines (58 loc) · 1.85 KB
/
spec_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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
ENV['ENV'] = ENV['RAILS_ENV'] = ENV['RACK_ENV'] = 'test'
require 'bundler'
require 'rubygems'
require 'yajl'
Bundler.require(:default, :test)
# Load app and support files
require File.expand_path('../../config/initializers/load_paths.rb', __FILE__)
['spec/support', 'spec/foundries/base_foundry.rb', 'spec/foundries'].each {|p| LOAD_PATHS << p}
LOADER = Deepworld::Loader.load!(LOAD_PATHS)
include TestHelpers
include Eventually
PORT = 6969
Game = GameServer.new
DB_CONNECTIONS = []
RSpec.configure do |config|
config.mock_with :rspec
config.treat_symbols_as_metadata_keys_with_true_values = true
config.run_all_when_everything_filtered = true
config.filter_run_including focus: true
config.filter_run_excluding slow: true
config.filter_run_excluding performance: true
require "support/test_helpers"
require "faker"
I18n.reload!
config.before(:suite) do
# Set game configuration
config_file = File.read(File.expand_path('../data/game_configuration.json', __FILE__))
begin
parser = Yajl::Parser.new
config_data = parser.parse(config_file)
rescue
puts "JSON parse failure #{$!.message}"
end
ConfigurationFoundry.create(key: 'config', type: 'config', data: config_data)
game_thread = Thread.new { Game.boot!(PORT) }
game_thread.abort_on_exception = true
# Pause till the server is ready
server_wait
profile_start if ENV['PROFILE']
end
config.after(:suite) do
clean_mongo!
profile_stop if ENV['PROFILE']
Game.shutdown!
end
config.before :each do
clean_mongo! except: :servers
Game.config.test = {}
end
config.after :each do
# Kill all players / zones / queues
Game.zones.values.each do |zone|
zone.shutdown! unless zone.shutting_down_at
end
Game.connections.each { |z,conns| conns.each{ |c| c.close }}
Game.connections.clear
end
end