-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
82 lines (75 loc) · 2.06 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
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
78
79
80
81
82
# frozen_string_literal: true
require "decidim/dev/common_rake"
def install_module(path)
Dir.chdir(path) do
# system("bundle exec rake decidim_vocacity_gem_tasks:install:migrations")
end
end
def seed_db(path)
Dir.chdir(path) do
system("bundle exec rake db:seed")
end
end
desc "Prepare for testing"
task :prepare_tests do
# Remove previous existing db, and recreate one.
disable_docker_compose = ENV.fetch("DISABLED_DOCKER_COMPOSE", "false") == "true"
unless disable_docker_compose
system("docker-compose down -v")
system("docker-compose up -d --remove-orphans")
end
ENV["RAILS_ENV"] = "test"
databaseYml = {
"test" => {
"adapter" => "postgresql",
"encoding" => "unicode",
"host" => ENV.fetch("DATABASE_HOST", "localhost"),
"port" => ENV.fetch("DATABASE_PORT", "5432").to_i,
"username" => ENV.fetch("DATABASE_USERNAME", "decidim"),
"password" => ENV.fetch("DATABASE_PASSWORD", "TEST-baeGhi4Ohtahcee5eejoaxaiwaezaiGo"),
"database" => "decidim_test"
}
}
config_file = File.expand_path("spec/dummy/config/database.yml", __dir__)
File.open(config_file, "w") { |f| YAML.dump(databaseYml, f) }
Dir.chdir("spec/dummy") do
system("bundle exec rails decidim_referral:install:migrations")
system("bundle exec rails db:migrate")
end
end
desc "Generates a dummy app for testing"
task :test_app do
Bundler.with_original_env do
generate_decidim_app(
"spec/dummy",
"--app_name",
"decidim_test",
"--path",
"../..",
"--skip_spring",
"--demo",
"--force_ssl",
"false",
"--locales",
"en,fr,es"
)
end
install_module("spec/dummy")
Rake::Task["prepare_tests"].invoke
end
desc "Generates a development app"
task :development_app do
Bundler.with_original_env do
generate_decidim_app(
"development_app",
"--app_name",
"#{base_app_name}_development_app",
"--path",
"..",
"--recreate_db",
"--demo"
)
end
install_module("development_app")
seed_db("development_app")
end