-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
79 lines (72 loc) · 2 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
# frozen_string_literal: true
require "decidim/dev/common_rake"
def install_module(path)
Dir.chdir(path) do
# system("bundle exec rails decidim_user_fields:install:migrations")
end
end
def seed_db(path)
Dir.chdir(path) do
system("bundle exec rails 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 -f docker-compose.yml down -v")
system("docker-compose -f docker-compose.yml up -d --remove-orphans")
end
ENV["RAILS_ENV"] = "test"
database_yml = {
"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/decidim_dummy_app/config/database.yml", __dir__)
File.open(config_file, "w") { |f| YAML.dump(database_yml, f) }
Dir.chdir("spec/decidim_dummy_app") do
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/decidim_dummy_app",
"--app_name",
"decidim_test",
"--path",
"../..",
"--skip_spring",
"--demo",
"--force_ssl",
"false",
"--locales",
"en,fr,es"
)
end
install_module("spec/decidim_dummy_app")
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
end