-
Notifications
You must be signed in to change notification settings - Fork 59
/
Rakefile
executable file
·51 lines (39 loc) · 1.35 KB
/
Rakefile
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
require 'rubygems'
require 'bundler/setup'
require 'bundler/gem_tasks'
require 'rake'
require 'rspec'
require_relative 'lib/locomotive/steam'
namespace :mongodb do
namespace :test do
desc 'Seed the MongoDB database with the dump of the Sample website'
task :seed do
root_path = File.expand_path(File.dirname(__FILE__))
db_path = File.join(root_path, 'spec', 'fixtures', 'mongodb')
if ENV['MONGO_HOST']
host = "--host=#{ENV['MONGO_HOST']}"
else
host = ""
end
if database = ENV['DATABASE']
dump_path = File.join(root_path, 'dump', database)
`rm -rf #{db_path}`
`mongodump --db #{database} #{host}`
`mv #{dump_path} #{db_path}`
end
# NOTE: command to drop the database
# `mongo steam_test_1_8_x --eval "db.dropDatabase()" #{host}`
`mongorestore --drop -d steam_test_1_8_x #{db_path} #{host}`
puts "Done! Update now the spec/support/helpers.rb file by setting the new id of the site returned by the mongodb_site_id method"
end
end
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new('spec')
RSpec::Core::RakeTask.new('spec:integration') do |spec|
spec.pattern = 'spec/integration/**/*_spec.rb'
end
RSpec::Core::RakeTask.new('spec:unit') do |spec|
spec.pattern = 'spec/unit/**/*_spec.rb'
end
task default: ['mongodb:test:seed', :spec]