app_generator_test.rb 27.7 KB
Newer Older
1 2 3
require "generators/generators_test_helper"
require "rails/generators/rails/app/app_generator"
require "generators/shared_generator_tests"
J
José Valim 已提交
4

5 6
DEFAULT_APP_FILES = %w(
  .gitignore
7
  README.md
8 9 10
  Gemfile
  Rakefile
  config.ru
J
José Valim 已提交
11 12
  app/assets/javascripts
  app/assets/stylesheets
13
  app/assets/images
14
  app/controllers
F
Francesco Rodriguez 已提交
15
  app/controllers/concerns
16
  app/helpers
17
  app/mailers
18
  app/models
F
Francesco Rodriguez 已提交
19
  app/models/concerns
20
  app/jobs
21
  app/views/layouts
22 23 24
  bin/bundle
  bin/rails
  bin/rake
25
  bin/setup
26 27 28
  config/environments
  config/initializers
  config/locales
29
  config/cable.yml
S
schneems 已提交
30
  config/puma.rb
31
  config/spring.rb
32 33 34
  db
  lib
  lib/tasks
35
  lib/assets
36
  log
A
Arun Agrawal 已提交
37
  test/test_helper.rb
38
  test/fixtures
39
  test/fixtures/files
M
Mike Moore 已提交
40 41 42 43
  test/controllers
  test/models
  test/helpers
  test/mailers
44
  test/integration
E
eileencodes 已提交
45
  test/system
46
  vendor
47
  tmp
48
  tmp/cache
J
José Valim 已提交
49
  tmp/cache/assets
50 51
)

52 53
class AppGeneratorTest < Rails::Generators::TestCase
  include GeneratorsTestHelper
54
  arguments [destination_root]
55 56

  # brings setup, teardown, and some tests
57
  include SharedGeneratorTests
J
José Valim 已提交
58

59 60
  def default_files
    ::DEFAULT_APP_FILES
61 62
  end

63
  def test_assets
64
    run_generator
65

J
Jeroen Visser 已提交
66 67
    assert_file("app/views/layouts/application.html.erb", /stylesheet_link_tag\s+'application', media: 'all', 'data-turbolinks-track': 'reload'/)
    assert_file("app/views/layouts/application.html.erb", /javascript_include_tag\s+'application', 'data-turbolinks-track': 'reload'/)
68
    assert_file("app/assets/stylesheets/application.css")
A
Arun Agrawal 已提交
69
    assert_file("app/assets/javascripts/application.js")
70 71
  end

72 73 74 75 76
  def test_application_job_file_present
    run_generator
    assert_file("app/jobs/application_job.rb")
  end

77
  def test_invalid_application_name_raises_an_error
78
    content = capture(:stderr) { run_generator [File.join(destination_root, "43-things")] }
79 80 81 82
    assert_equal "Invalid application name 43-things. Please give a name which does not start with numbers.\n", content
  end

  def test_invalid_application_name_is_fixed
83
    run_generator [File.join(destination_root, "things-43")]
84
    assert_file "things-43/config/environment.rb", /Rails\.application\.initialize!/
85
    assert_file "things-43/config/application.rb", /^module Things43$/
86 87
  end

88
  def test_application_new_exits_with_non_zero_code_on_invalid_application_name
89
    quietly { system "rails new test --no-rc" }
90
    assert_equal false, $?.success?
91 92 93
  end

  def test_application_new_exits_with_message_and_non_zero_code_when_generating_inside_existing_rails_directory
94
    app_root = File.join(destination_root, "myfirstapp")
95 96 97 98 99 100 101
    run_generator [app_root]
    output = nil
    Dir.chdir(app_root) do
      output = `rails new mysecondapp`
    end
    assert_equal "Can't initialize a new Rails application within the directory of another, please change to a non-Rails directory first.\nType 'rails' for help.\n", output
    assert_equal false, $?.success?
102 103
  end

104
  def test_application_new_show_help_message_inside_existing_rails_directory
105
    app_root = File.join(destination_root, "myfirstapp")
106 107 108 109
    run_generator [app_root]
    output = Dir.chdir(app_root) do
      `rails new --help`
    end
110
    assert_match(/rails new APP_PATH \[options\]/, output)
111 112 113
    assert_equal true, $?.success?
  end

114 115 116 117 118 119
  def test_application_name_is_detected_if_it_exists_and_app_folder_renamed
    app_root       = File.join(destination_root, "myapp")
    app_moved_root = File.join(destination_root, "myapp_moved")

    run_generator [app_root]

120 121 122
    stub_rails_application(app_moved_root) do
      Rails.application.stub(:is_a?, -> *args { Rails::Application }) do
        FileUtils.mv(app_root, app_moved_root)
123

124 125
        # make sure we are in correct dir
        FileUtils.cd(app_moved_root)
126

127
        generator = Rails::Generators::AppGenerator.new ["rails"], [],
128 129 130 131 132 133
                                                                   destination_root: app_moved_root, shell: @shell
        generator.send(:app_const)
        quietly { generator.send(:update_config_files) }
        assert_file "myapp_moved/config/environment.rb", /Rails\.application\.initialize!/
      end
    end
134
  end
135

136
  def test_app_update_generates_correct_session_key
137
    app_root = File.join(destination_root, "myapp")
138
    run_generator [app_root]
139

140
    stub_rails_application(app_root) do
141
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
142 143 144
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
    end
145
  end
146

147 148 149 150 151 152
  def test_new_application_use_json_serialzier
    run_generator

    assert_file("config/initializers/cookies_serializer.rb", /Rails\.application\.config\.action_dispatch\.cookies_serializer = :json/)
  end

153 154 155
  def test_new_application_not_include_api_initializers
    run_generator

156
    assert_no_file "config/initializers/cors.rb"
157 158
  end

159 160 161 162
  def test_new_application_doesnt_need_defaults
    assert_no_file "config/initializers/new_framework_defaults_5_1.rb"
  end

163 164 165 166 167 168 169 170 171 172 173 174
  def test_new_application_load_defaults
    app_root = File.join(destination_root, "myfirstapp")
    run_generator [app_root]
    output = nil

    Dir.chdir(app_root) do
      output = `./bin/rails r "puts Rails.application.config.assets.unknown_asset_fallback"`
    end

    assert_equal "false\n", output
  end

175
  def test_app_update_keep_the_cookie_serializer_if_it_is_already_configured
176
    app_root = File.join(destination_root, "myapp")
177 178
    run_generator [app_root]

179
    stub_rails_application(app_root) do
180
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
181 182 183 184
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file("#{app_root}/config/initializers/cookies_serializer.rb", /Rails\.application\.config\.action_dispatch\.cookies_serializer = :json/)
    end
185 186
  end

187
  def test_app_update_set_the_cookie_serializer_to_marshal_if_it_is_not_already_configured
188
    app_root = File.join(destination_root, "myapp")
189 190 191 192
    run_generator [app_root]

    FileUtils.rm("#{app_root}/config/initializers/cookies_serializer.rb")

193
    stub_rails_application(app_root) do
194
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
195 196
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
197 198
      assert_file("#{app_root}/config/initializers/cookies_serializer.rb",
                  /Valid options are :json, :marshal, and :hybrid\.\nRails\.application\.config\.action_dispatch\.cookies_serializer = :marshal/)
199
    end
200 201
  end

202
  def test_app_update_create_new_framework_defaults
203
    app_root = File.join(destination_root, "myapp")
204 205
    run_generator [app_root]

206
    assert_no_file "#{app_root}/config/initializers/new_framework_defaults_5_1.rb"
207 208

    stub_rails_application(app_root) do
209 210 211
      generator = Rails::Generators::AppGenerator.new ["rails"], { update: true }, destination_root: app_root, shell: @shell
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
212

213
      assert_file "#{app_root}/config/initializers/new_framework_defaults_5_1.rb"
214 215 216
    end
  end

217
  def test_app_update_does_not_create_rack_cors
218
    app_root = File.join(destination_root, "myapp")
219 220 221
    run_generator [app_root]

    stub_rails_application(app_root) do
222
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
223 224 225 226 227 228
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_no_file "#{app_root}/config/initializers/cors.rb"
    end
  end

229
  def test_app_update_does_not_remove_rack_cors_if_already_present
230
    app_root = File.join(destination_root, "myapp")
231 232 233 234 235
    run_generator [app_root]

    FileUtils.touch("#{app_root}/config/initializers/cors.rb")

    stub_rails_application(app_root) do
236
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
237 238 239 240 241 242
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file "#{app_root}/config/initializers/cors.rb"
    end
  end

243 244
  def test_application_names_are_not_singularized
    run_generator [File.join(destination_root, "hats")]
245
    assert_file "hats/config/environment.rb", /Rails\.application\.initialize!/
246 247
  end

248 249 250
  def test_gemfile_has_no_whitespace_errors
    run_generator
    absolute = File.expand_path("Gemfile", destination_root)
251
    File.open(absolute, "r") do |f|
252
      f.each_line do |line|
A
Arun Agrawal 已提交
253
        assert_no_match %r{/^[ \t]+$/}, line
254 255 256 257
      end
    end
  end

J
José Valim 已提交
258 259 260
  def test_config_database_is_added_by_default
    run_generator
    assert_file "config/database.yml", /sqlite3/
261
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
262
      assert_gem "activerecord-jdbcsqlite3-adapter"
263 264
    else
      assert_gem "sqlite3"
265
    end
266 267 268 269 270
  end

  def test_config_another_database
    run_generator([destination_root, "-d", "mysql"])
    assert_file "config/database.yml", /mysql/
271
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
272
      assert_gem "activerecord-jdbcmysql-adapter"
273
    else
274
      assert_gem "mysql2", "'>= 0.3.18', '< 0.5'"
275
    end
J
José Valim 已提交
276 277
  end

278 279 280 281 282
  def test_config_database_app_name_with_period
    run_generator [File.join(destination_root, "common.usage.com"), "-d", "postgresql"]
    assert_file "common.usage.com/config/database.yml", /common_usage_com/
  end

283 284 285
  def test_config_postgresql_database
    run_generator([destination_root, "-d", "postgresql"])
    assert_file "config/database.yml", /postgresql/
286
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
287
      assert_gem "activerecord-jdbcpostgresql-adapter"
288
    else
289
      assert_gem "pg", "'~> 0.18'"
290 291 292
    end
  end

293 294
  def test_config_jdbcmysql_database
    run_generator([destination_root, "-d", "jdbcmysql"])
295
    assert_file "config/database.yml", /mysql/
O
Oscar Del Ben 已提交
296
    assert_gem "activerecord-jdbcmysql-adapter"
297 298
  end

299 300
  def test_config_jdbcsqlite3_database
    run_generator([destination_root, "-d", "jdbcsqlite3"])
301
    assert_file "config/database.yml", /sqlite3/
O
Oscar Del Ben 已提交
302
    assert_gem "activerecord-jdbcsqlite3-adapter"
303 304
  end

305 306
  def test_config_jdbcpostgresql_database
    run_generator([destination_root, "-d", "jdbcpostgresql"])
307
    assert_file "config/database.yml", /postgresql/
O
Oscar Del Ben 已提交
308
    assert_gem "activerecord-jdbcpostgresql-adapter"
309 310
  end

A
Arun Agrawal 已提交
311 312 313
  def test_config_jdbc_database
    run_generator([destination_root, "-d", "jdbc"])
    assert_file "config/database.yml", /jdbc/
314
    assert_file "config/database.yml", /mssql/
O
Oscar Del Ben 已提交
315
    assert_gem "activerecord-jdbc-adapter"
A
Arun Agrawal 已提交
316 317
  end

318 319
  if defined?(JRUBY_VERSION)
    def test_config_jdbc_database_when_no_option_given
320
      run_generator
321
      assert_file "config/database.yml", /sqlite3/
O
Oscar Del Ben 已提交
322
      assert_gem "activerecord-jdbcsqlite3-adapter"
323 324 325
    end
  end

326 327 328 329 330 331 332 333 334 335 336
  def test_generator_without_skips
    run_generator
    assert_file "config/application.rb", /\s+require\s+["']rails\/all["']/
    assert_file "config/environments/development.rb" do |content|
      assert_match(/config\.action_mailer\.raise_delivery_errors = false/, content)
    end
    assert_file "config/environments/test.rb" do |content|
      assert_match(/config\.action_mailer\.delivery_method = :test/, content)
    end
    assert_file "config/environments/production.rb" do |content|
      assert_match(/# config\.action_mailer\.raise_delivery_errors = false/, content)
337
      assert_match(/^  config\.read_encrypted_secrets = true/, content)
338 339 340
    end
  end

S
schneems 已提交
341 342
  def test_generator_defaults_to_puma_version
    run_generator [destination_root]
R
Roberto Miranda 已提交
343
    assert_gem "puma", "'~> 3.7'"
S
schneems 已提交
344 345
  end

S
schneems 已提交
346 347 348 349 350 351 352 353
  def test_generator_if_skip_puma_is_given
    run_generator [destination_root, "--skip-puma"]
    assert_no_file "config/puma.rb"
    assert_file "Gemfile" do |content|
      assert_no_match(/puma/, content)
    end
  end

354
  def test_generator_if_skip_active_record_is_given
355
    run_generator [destination_root, "--skip-active-record"]
356
    assert_no_directory "db/"
J
José Valim 已提交
357
    assert_no_file "config/database.yml"
358
    assert_no_file "app/models/application_record.rb"
359
    assert_file "config/application.rb", /#\s+require\s+["']active_record\/railtie["']/
360
    assert_file "test/test_helper.rb" do |helper_content|
361
      assert_no_match(/fixtures :all/, helper_content)
362
    end
363 364 365 366 367 368
    assert_file "bin/setup" do |setup_content|
      assert_no_match(/db:setup/, setup_content)
    end
    assert_file "bin/update" do |update_content|
      assert_no_match(/db:migrate/, update_content)
    end
J
José Valim 已提交
369 370
  end

371 372 373 374 375 376 377 378 379 380 381 382
  def test_generator_if_skip_action_mailer_is_given
    run_generator [destination_root, "--skip-action-mailer"]
    assert_file "config/application.rb", /#\s+require\s+["']action_mailer\/railtie["']/
    assert_file "config/environments/development.rb" do |content|
      assert_no_match(/config\.action_mailer/, content)
    end
    assert_file "config/environments/test.rb" do |content|
      assert_no_match(/config\.action_mailer/, content)
    end
    assert_file "config/environments/production.rb" do |content|
      assert_no_match(/config\.action_mailer/, content)
    end
383
    assert_no_directory "app/mailers"
384
    assert_no_directory "test/mailers"
385 386
  end

387 388 389
  def test_generator_has_assets_gems
    run_generator

390 391
    assert_gem "sass-rails"
    assert_gem "uglifier"
392 393
  end

394
  def test_generator_if_skip_sprockets_is_given
395
    run_generator [destination_root, "--skip-sprockets"]
396
    assert_no_file "config/initializers/assets.rb"
397
    assert_file "config/application.rb" do |content|
398
      assert_match(/#\s+require\s+["']sprockets\/railtie["']/, content)
399
    end
400 401 402
    assert_file "Gemfile" do |content|
      assert_no_match(/sass-rails/, content)
      assert_no_match(/uglifier/, content)
403
      assert_no_match(/coffee-rails/, content)
404
    end
405 406 407 408 409
    assert_file "config/environments/development.rb" do |content|
      assert_no_match(/config\.assets\.debug = true/, content)
    end
    assert_file "config/environments/production.rb" do |content|
      assert_no_match(/config\.assets\.digest = true/, content)
J
Joshua Peek 已提交
410 411
      assert_no_match(/config\.assets\.js_compressor = :uglifier/, content)
      assert_no_match(/config\.assets\.css_compressor = :sass/, content)
412
    end
413
  end
J
José Valim 已提交
414

415 416 417
  def test_generator_if_skip_yarn_is_given
    run_generator [destination_root, "--skip-yarn"]

418
    assert_no_file "package.json"
419 420 421
    assert_no_file "bin/yarn"
  end

422 423 424
  def test_generator_if_skip_action_cable_is_given
    run_generator [destination_root, "--skip-action-cable"]
    assert_file "config/application.rb", /#\s+require\s+["']action_cable\/engine["']/
425
    assert_no_file "config/cable.yml"
426
    assert_no_file "app/assets/javascripts/cable.js"
427
    assert_no_file "app/channels"
428 429 430 431 432 433 434
    assert_file "Gemfile" do |content|
      assert_no_match(/redis/, content)
    end
  end

  def test_action_cable_redis_gems
    run_generator
435
    assert_file "Gemfile", /^# gem 'redis'/
436 437
  end

438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
  def test_generator_if_skip_test_is_given
    run_generator [destination_root, "--skip-test"]
    assert_file "Gemfile" do |content|
      assert_no_match(/capybara/, content)
      assert_no_match(/selenium-webdriver/, content)
    end
  end

  def test_generator_if_skip_system_test_is_given
    run_generator [destination_root, "--skip_system_test"]
    assert_file "Gemfile" do |content|
      assert_no_match(/capybara/, content)
      assert_no_match(/selenium-webdriver/, content)
    end
  end

454 455 456 457 458 459 460 461 462 463 464
  def test_does_not_generate_system_test_files_if_skip_system_test_is_given
    run_generator [destination_root, "--skip_system_test"]

    Dir.chdir(destination_root) do
      quietly { `./bin/rails g scaffold User` }

      assert_no_file("test/application_system_test_case.rb")
      assert_no_file("test/system/users_test.rb")
    end
  end

465 466 467 468 469 470 471 472
  def test_generator_if_api_is_given
    run_generator [destination_root, "--api"]
    assert_file "Gemfile" do |content|
      assert_no_match(/capybara/, content)
      assert_no_match(/selenium-webdriver/, content)
    end
  end

473
  def test_inclusion_of_javascript_runtime
474
    run_generator
475
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
476
      assert_gem "therubyrhino"
477
    else
478
      assert_file "Gemfile", /# gem 'therubyracer', platforms: :ruby/
479 480 481
    end
  end

482
  def test_rails_ujs_is_the_default_ujs_library
483 484
    run_generator
    assert_file "app/assets/javascripts/application.js" do |contents|
485
      assert_match %r{^//= require rails-ujs}, contents
486 487 488
    end
  end

489 490
  def test_javascript_is_skipped_if_required
    run_generator [destination_root, "--skip-javascript"]
491 492 493

    assert_no_file "app/assets/javascripts"

494
    assert_file "app/views/layouts/application.html.erb" do |contents|
495 496
      assert_match(/stylesheet_link_tag\s+'application', media: 'all' %>/, contents)
      assert_no_match(/javascript_include_tag\s+'application' \%>/, contents)
497
    end
498

499
    assert_file "Gemfile" do |content|
500
      assert_no_match(/coffee-rails/, content)
501 502 503 504 505
      assert_no_match(/uglifier/, content)
    end

    assert_file "config/environments/production.rb" do |content|
      assert_no_match(/config\.assets\.js_compressor = :uglifier/, content)
506
    end
507
  end
508

S
Sean Griffin 已提交
509 510 511 512 513 514 515 516 517
  def test_coffeescript_is_skipped_if_required
    run_generator [destination_root, "--skip-coffee"]

    assert_file "Gemfile" do |content|
      assert_no_match(/coffee-rails/, content)
      assert_match(/uglifier/, content)
    end
  end

518 519
  def test_generator_for_yarn
    run_generator([destination_root])
520
    assert_file "package.json", /dependencies/
521
    assert_file "config/initializers/assets.rb", /node_modules/
522 523
  end

524
  def test_generator_for_yarn_skipped
Y
Yuji Yaginuma 已提交
525
    run_generator([destination_root, "--skip-yarn"])
526
    assert_no_file "package.json"
527

Y
Yuji Yaginuma 已提交
528
    assert_file "config/initializers/assets.rb" do |content|
529 530
      assert_no_match(/node_modules/, content)
    end
Y
yuuji.yaginuma 已提交
531 532

    assert_file ".gitignore" do |content|
533 534
      assert_no_match(/node_modules/, content)
      assert_no_match(/yarn-error\.log/, content)
Y
yuuji.yaginuma 已提交
535
    end
536 537
  end

A
Arun Agrawal 已提交
538 539
  def test_inclusion_of_jbuilder
    run_generator
540
    assert_gem "jbuilder"
A
Arun Agrawal 已提交
541 542
  end

543
  def test_inclusion_of_a_debugger
544
    run_generator
545
    if defined?(JRUBY_VERSION) || RUBY_ENGINE == "rbx"
A
Arun Agrawal 已提交
546
      assert_file "Gemfile" do |content|
547
        assert_no_match(/byebug/, content)
A
Arun Agrawal 已提交
548
      end
549
    else
550
      assert_gem "byebug"
A
Arun Agrawal 已提交
551
    end
552 553
  end

554
  def test_inclusion_of_listen_related_configuration_by_default
555
    run_generator
556
    if RbConfig::CONFIG["host_os"] =~ /darwin|linux/
557
      assert_listen_related_configuration
558
    else
559
      assert_no_listen_related_configuration
560 561 562
    end
  end

563
  def test_non_inclusion_of_listen_related_configuration_if_skip_listen
564
    run_generator [destination_root, "--skip-listen"]
565 566 567
    assert_no_listen_related_configuration
  end

568 569
  def test_evented_file_update_checker_config
    run_generator
570 571
    assert_file "config/environments/development.rb" do |content|
      if RbConfig::CONFIG["host_os"] =~ /darwin|linux/
572 573 574 575 576 577 578
        assert_match(/^\s*config.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
      else
        assert_match(/^\s*# config.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
      end
    end
  end

579
  def test_template_from_dir_pwd
580
    FileUtils.cd(Rails.root)
581
    assert_match(/It works from file!/, run_generator([destination_root, "-m", "lib/template.rb"]))
582 583
  end

J
José Valim 已提交
584
  def test_usage_read_from_file
585 586 587
    assert_called(File, :read, returns: "USAGE FROM FILE") do
      assert_equal "USAGE FROM FILE", Rails::Generators::AppGenerator.desc
    end
J
José Valim 已提交
588 589 590
  end

  def test_default_usage
591 592 593
    assert_called(Rails::Generators::AppGenerator, :usage_path, returns: nil) do
      assert_match(/Create rails files for app generator/, Rails::Generators::AppGenerator.desc)
    end
J
José Valim 已提交
594 595 596
  end

  def test_default_namespace
597
    assert_match "rails:app", Rails::Generators::AppGenerator.namespace
J
José Valim 已提交
598 599
  end

600
  def test_file_is_added_for_backwards_compatibility
601 602
    action :file, "lib/test_file.rb", "heres test data"
    assert_file "lib/test_file.rb", "heres test data"
603 604
  end

605 606
  def test_tests_are_removed_from_frameworks_if_skip_test_is_given
    run_generator [destination_root, "--skip-test"]
607 608 609
    assert_file "config/application.rb", /#\s+require\s+["']rails\/test_unit\/railtie["']/
  end

610 611
  def test_no_active_record_or_tests_if_skips_given
    run_generator [destination_root, "--skip-test", "--skip-active-record"]
612 613
    assert_file "config/application.rb", /#\s+require\s+["']rails\/test_unit\/railtie["']/
    assert_file "config/application.rb", /#\s+require\s+["']active_record\/railtie["']/
614
    assert_file "config/application.rb", /\s+require\s+["']active_job\/railtie["']/
615 616
  end

617 618 619
  def test_pretend_option
    output = run_generator [File.join(destination_root, "myapp"), "--pretend"]
    assert_no_match(/run  bundle install/, output)
620
    assert_no_match(/run  git init/, output)
621 622
  end

623
  def test_application_name_with_spaces
624
    path = File.join(destination_root, "foo bar")
625 626

    # This also applies to MySQL apps but not with SQLite
627
    run_generator [path, "-d", "postgresql"]
628 629 630 631

    assert_file "foo bar/config/database.yml", /database: foo_bar_development/
  end

632 633
  def test_web_console
    run_generator
634
    assert_gem "web-console"
635 636
  end

637 638 639 640
  def test_web_console_with_dev_option
    run_generator [destination_root, "--dev"]

    assert_file "Gemfile" do |content|
M
Mehmet Emin İNAÇ 已提交
641
      assert_match(/gem 'web-console',\s+github: 'rails\/web-console'/, content)
642
      assert_no_match(/\Agem 'web-console', '>= 3.3.0'\z/, content)
643 644 645 646 647 648 649
    end
  end

  def test_web_console_with_edge_option
    run_generator [destination_root, "--edge"]

    assert_file "Gemfile" do |content|
M
Mehmet Emin İNAÇ 已提交
650
      assert_match(/gem 'web-console',\s+github: 'rails\/web-console'/, content)
651
      assert_no_match(/\Agem 'web-console', '>= 3.3.0'\z/, content)
652 653 654
    end
  end

655 656 657 658 659 660
  def test_generation_runs_bundle_install
    assert_generates_with_bundler
  end

  def test_dev_option
    assert_generates_with_bundler dev: true
661 662
    rails_path = File.expand_path("../../..", Rails.root)
    assert_file "Gemfile", /^gem\s+["']rails["'],\s+path:\s+["']#{Regexp.escape(rails_path)}["']$/
663 664 665 666
  end

  def test_edge_option
    assert_generates_with_bundler edge: true
667
    assert_file "Gemfile", %r{^gem\s+["']rails["'],\s+github:\s+["']#{Regexp.escape("rails/rails")}["']$}
668 669
  end

670 671
  def test_spring
    run_generator
672
    assert_gem "spring"
673 674 675
  end

  def test_spring_binstubs
676
    jruby_skip "spring doesn't run on JRuby"
677 678 679 680
    command_check = -> command do
      @binstub_called ||= 0

      case command
681
      when "install"
682
        # Called when running bundle, we just want to stub it so nothing to do here.
683
      when "exec spring binstub --all"
684 685 686 687 688 689 690 691
        @binstub_called += 1
        assert_equal 1, @binstub_called, "exec spring binstub --all expected to be called once, but was called #{@install_called} times."
      end
    end

    generator.stub :bundle_command, command_check do
      quietly { generator.invoke_all }
    end
692 693 694
  end

  def test_spring_no_fork
695
    jruby_skip "spring doesn't run on JRuby"
R
Rafael Mendonça França 已提交
696
    assert_called_with(Process, :respond_to?, [[:fork], [:fork]], returns: false) do
697
      run_generator
698

699 700 701
      assert_file "Gemfile" do |content|
        assert_no_match(/spring/, content)
      end
702 703 704 705 706 707
    end
  end

  def test_skip_spring
    run_generator [destination_root, "--skip-spring"]

708
    assert_no_file "config/spring.rb"
709 710 711 712 713
    assert_file "Gemfile" do |content|
      assert_no_match(/spring/, content)
    end
  end

714 715 716 717 718 719 720 721
  def test_spring_with_dev_option
    run_generator [destination_root, "--dev"]

    assert_file "Gemfile" do |content|
      assert_no_match(/spring/, content)
    end
  end

722 723
  def test_generator_if_skip_turbolinks_is_given
    run_generator [destination_root, "--skip-turbolinks"]
724 725 726 727 728 729 730 731 732 733 734 735

    assert_file "Gemfile" do |content|
      assert_no_match(/turbolinks/, content)
    end
    assert_file "app/views/layouts/application.html.erb" do |content|
      assert_no_match(/data-turbolinks-track/, content)
    end
    assert_file "app/assets/javascripts/application.js" do |content|
      assert_no_match(/turbolinks/, content)
    end
  end

736 737 738
  def test_gitignore_when_sqlite3
    run_generator

739
    assert_file ".gitignore" do |content|
740 741 742 743 744
      assert_match(/sqlite3/, content)
    end
  end

  def test_gitignore_when_no_active_record
745
    run_generator [destination_root, "--skip-active-record"]
746

747
    assert_file ".gitignore" do |content|
748
      assert_no_match(/sqlite/i, content)
749 750 751 752 753 754
    end
  end

  def test_gitignore_when_non_sqlite3_db
    run_generator([destination_root, "-d", "mysql"])

755
    assert_file ".gitignore" do |content|
756
      assert_no_match(/sqlite/i, content)
757 758 759
    end
  end

760 761 762 763 764
  def test_version_control_initializes_git_repo
    run_generator [destination_root]
    assert_directory ".git"
  end

765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
  def test_create_keeps
    run_generator
    folders_with_keep = %w(
      app/assets/images
      app/controllers/concerns
      app/models/concerns
      lib/tasks
      lib/assets
      log
      test/fixtures
      test/fixtures/files
      test/controllers
      test/mailers
      test/models
      test/helpers
      test/integration
      tmp
    )
    folders_with_keep.each do |folder|
      assert_file("#{folder}/.keep")
    end
  end

788 789
  def test_psych_gem
    run_generator
790
    gem_regex = /gem 'psych',\s+'~> 2.0',\s+platforms: :rbx/
791 792 793 794 795 796 797 798 799 800

    assert_file "Gemfile" do |content|
      if defined?(Rubinius)
        assert_match(gem_regex, content)
      else
        assert_no_match(gem_regex, content)
      end
    end
  end

801
  def test_after_bundle_callback
802
    path = "http://example.org/rails_template"
803 804 805
    template = %{ after_bundle { run 'echo ran after_bundle' } }
    template.instance_eval "def read; self; end" # Make the string respond to read

806
    check_open = -> *args do
807
      assert_equal [ path, "Accept" => "application/x-thor-template" ], args
808 809
      template
    end
810

811
    sequence = ["git init", "install", "exec spring binstub --all", "echo ran after_bundle"]
812
    @sequence_step ||= 0
813
    ensure_bundler_first = -> command do
814 815 816 817 818 819 820 821 822 823 824
      assert_equal sequence[@sequence_step], command, "commands should be called in sequence #{sequence}"
      @sequence_step += 1
    end

    generator([destination_root], template: path).stub(:open, check_open, template) do
      generator.stub(:bundle_command, ensure_bundler_first) do
        generator.stub(:run, ensure_bundler_first) do
          quietly { generator.invoke_all }
        end
      end
    end
825

826
    assert_equal 4, @sequence_step
827 828
  end

E
eileencodes 已提交
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
  def test_system_tests_directory_generated
    run_generator

    assert_file("test/system/.keep")
    assert_directory("test/system")
  end

  def test_system_tests_are_not_generated_on_system_test_skip
    run_generator [destination_root, "--skip-system-test"]

    assert_no_directory("test/system")
  end

  def test_system_tests_are_not_generated_on_test_skip
    run_generator [destination_root, "--skip-test"]
J
José Valim 已提交
844

E
eileencodes 已提交
845 846 847 848
    assert_no_directory("test/system")
  end

  private
849 850 851 852 853
    def stub_rails_application(root)
      Rails.application.config.root = root
      Rails.application.class.stub(:name, "Myapp") do
        yield
      end
854 855
    end

856 857 858
    def action(*args, &block)
      capture(:stdout) { generator.send(*args, &block) }
    end
O
Oscar Del Ben 已提交
859

860 861 862 863 864 865
    def assert_gem(gem, constraint = nil)
      if constraint
        assert_file "Gemfile", /^\s*gem\s+["']#{gem}["'], #{constraint}$*/
      else
        assert_file "Gemfile", /^\s*gem\s+["']#{gem}["']$*/
      end
866
    end
867

868
    def assert_listen_related_configuration
869 870
      assert_gem "listen"
      assert_gem "spring-watcher-listen"
871

872
      assert_file "config/environments/development.rb" do |content|
873 874
        assert_match(/^\s*config.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
      end
875 876
    end

877
    def assert_no_listen_related_configuration
878
      assert_file "Gemfile" do |content|
879 880 881
        assert_no_match(/listen/, content)
      end

882
      assert_file "config/environments/development.rb" do |content|
883 884
        assert_match(/^\s*# config.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
      end
885 886
    end

887 888 889 890 891 892 893
    def assert_generates_with_bundler(options = {})
      generator([destination_root], options)

      command_check = -> command do
        @install_called ||= 0

        case command
894
        when "install"
895 896
          @install_called += 1
          assert_equal 1, @install_called, "install expected to be called once, but was called #{@install_called} times"
897
        when "exec spring binstub --all"
898 899 900 901 902 903 904
          # Called when running tests with spring, let through unscathed.
        end
      end

      generator.stub :bundle_command, command_check do
        quietly { generator.invoke_all }
      end
905
    end
906
end