app_generator_test.rb 29.3 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
11 12
  app/assets/config/manifest.js
  app/assets/images
J
José Valim 已提交
13
  app/assets/javascripts
14 15 16
  app/assets/javascripts/application.js
  app/assets/javascripts/cable.js
  app/assets/javascripts/channels
J
José Valim 已提交
17
  app/assets/stylesheets
18 19 20
  app/assets/stylesheets/application.css
  app/channels/application_cable/channel.rb
  app/channels/application_cable/connection.rb
21
  app/controllers
22
  app/controllers/application_controller.rb
F
Francesco Rodriguez 已提交
23
  app/controllers/concerns
24
  app/helpers
25
  app/helpers/application_helper.rb
26
  app/mailers
27
  app/mailers/application_mailer.rb
28
  app/models
29
  app/models/application_record.rb
F
Francesco Rodriguez 已提交
30
  app/models/concerns
31
  app/jobs
32
  app/jobs/application_job.rb
33
  app/views/layouts
34 35 36
  app/views/layouts/application.html.erb
  app/views/layouts/mailer.html.erb
  app/views/layouts/mailer.text.erb
37 38 39
  bin/bundle
  bin/rails
  bin/rake
40
  bin/setup
41 42 43 44 45 46
  bin/update
  bin/yarn
  config/application.rb
  config/boot.rb
  config/cable.yml
  config/environment.rb
47
  config/environments
48 49 50
  config/environments/development.rb
  config/environments/production.rb
  config/environments/test.rb
51
  config/initializers
52 53 54 55 56 57 58 59
  config/initializers/application_controller_renderer.rb
  config/initializers/assets.rb
  config/initializers/backtrace_silencers.rb
  config/initializers/cookies_serializer.rb
  config/initializers/filter_parameter_logging.rb
  config/initializers/inflections.rb
  config/initializers/mime_types.rb
  config/initializers/wrap_parameters.rb
60
  config/locales
61
  config/locales/en.yml
S
schneems 已提交
62
  config/puma.rb
63 64
  config/routes.rb
  config/secrets.yml
65
  config/spring.rb
66
  db
67
  db/seeds.rb
68 69
  lib
  lib/tasks
70
  lib/assets
71
  log
72 73 74
  package.json
  public
  test/application_system_test_case.rb
A
Arun Agrawal 已提交
75
  test/test_helper.rb
76
  test/fixtures
77
  test/fixtures/files
M
Mike Moore 已提交
78 79 80 81
  test/controllers
  test/models
  test/helpers
  test/mailers
82
  test/integration
E
eileencodes 已提交
83
  test/system
84
  vendor
85
  tmp
86
  tmp/cache
J
José Valim 已提交
87
  tmp/cache/assets
88 89
)

90 91
class AppGeneratorTest < Rails::Generators::TestCase
  include GeneratorsTestHelper
92
  arguments [destination_root]
93 94

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

97 98
  def default_files
    ::DEFAULT_APP_FILES
99 100
  end

101
  def test_assets
102
    run_generator
103

J
Jeroen Visser 已提交
104 105
    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'/)
106
    assert_file("app/assets/stylesheets/application.css")
A
Arun Agrawal 已提交
107
    assert_file("app/assets/javascripts/application.js")
108 109
  end

110 111 112 113 114
  def test_application_job_file_present
    run_generator
    assert_file("app/jobs/application_job.rb")
  end

115
  def test_invalid_application_name_raises_an_error
116
    content = capture(:stderr) { run_generator [File.join(destination_root, "43-things")] }
117 118 119 120
    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
121
    run_generator [File.join(destination_root, "things-43")]
122
    assert_file "things-43/config/environment.rb", /Rails\.application\.initialize!/
123
    assert_file "things-43/config/application.rb", /^module Things43$/
124 125
  end

126
  def test_application_new_exits_with_non_zero_code_on_invalid_application_name
127
    quietly { system "rails new test --no-rc" }
128
    assert_equal false, $?.success?
129 130 131
  end

  def test_application_new_exits_with_message_and_non_zero_code_when_generating_inside_existing_rails_directory
132
    app_root = File.join(destination_root, "myfirstapp")
133 134 135 136 137 138 139
    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?
140 141
  end

142
  def test_application_new_show_help_message_inside_existing_rails_directory
143
    app_root = File.join(destination_root, "myfirstapp")
144 145 146 147
    run_generator [app_root]
    output = Dir.chdir(app_root) do
      `rails new --help`
    end
148
    assert_match(/rails new APP_PATH \[options\]/, output)
149 150 151
    assert_equal true, $?.success?
  end

152 153 154 155 156 157
  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]

158 159 160
    stub_rails_application(app_moved_root) do
      Rails.application.stub(:is_a?, -> *args { Rails::Application }) do
        FileUtils.mv(app_root, app_moved_root)
161

162 163
        # make sure we are in correct dir
        FileUtils.cd(app_moved_root)
164

165
        generator = Rails::Generators::AppGenerator.new ["rails"], [],
166 167 168 169 170 171
                                                                   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
172
  end
173

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

178
    stub_rails_application(app_root) do
179
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
180 181 182
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
    end
183
  end
184

185 186 187 188 189 190
  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

191 192 193
  def test_new_application_not_include_api_initializers
    run_generator

194
    assert_no_file "config/initializers/cors.rb"
195 196
  end

197
  def test_new_application_doesnt_need_defaults
198
    assert_no_file "config/initializers/new_framework_defaults_5_2.rb"
199 200
  end

201 202 203 204 205 206 207 208 209 210 211 212
  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

213
  def test_app_update_keep_the_cookie_serializer_if_it_is_already_configured
214
    app_root = File.join(destination_root, "myapp")
215 216
    run_generator [app_root]

217
    stub_rails_application(app_root) do
218
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
219 220 221 222
      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
223 224
  end

225
  def test_app_update_set_the_cookie_serializer_to_marshal_if_it_is_not_already_configured
226
    app_root = File.join(destination_root, "myapp")
227 228 229 230
    run_generator [app_root]

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

231
    stub_rails_application(app_root) do
232
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
233 234
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
235 236
      assert_file("#{app_root}/config/initializers/cookies_serializer.rb",
                  /Valid options are :json, :marshal, and :hybrid\.\nRails\.application\.config\.action_dispatch\.cookies_serializer = :marshal/)
237
    end
238 239
  end

240
  def test_app_update_create_new_framework_defaults
241
    app_root = File.join(destination_root, "myapp")
242 243
    run_generator [app_root]

244
    assert_no_file "#{app_root}/config/initializers/new_framework_defaults_5_2.rb"
245 246

    stub_rails_application(app_root) do
247 248 249
      generator = Rails::Generators::AppGenerator.new ["rails"], { update: true }, destination_root: app_root, shell: @shell
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
250

251
      assert_file "#{app_root}/config/initializers/new_framework_defaults_5_2.rb"
252 253 254
    end
  end

255
  def test_app_update_does_not_create_rack_cors
256
    app_root = File.join(destination_root, "myapp")
257 258 259
    run_generator [app_root]

    stub_rails_application(app_root) do
260
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
261 262 263 264 265 266
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_no_file "#{app_root}/config/initializers/cors.rb"
    end
  end

267
  def test_app_update_does_not_remove_rack_cors_if_already_present
268
    app_root = File.join(destination_root, "myapp")
269 270 271 272 273
    run_generator [app_root]

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

    stub_rails_application(app_root) do
274
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
275 276 277 278 279 280
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file "#{app_root}/config/initializers/cors.rb"
    end
  end

281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
  def test_app_update_does_not_generate_action_cable_contents_when_skip_action_cable_is_given
    app_root = File.join(destination_root, "myapp")
    run_generator [app_root, "--skip-action-cable"]

    FileUtils.cd(app_root) do
      # For avoid conflict file
      FileUtils.rm("#{app_root}/config/secrets.yml")
      quietly { system("bin/rails app:update") }
    end

    assert_no_file "#{app_root}/config/cable.yml"
    assert_file "#{app_root}/config/environments/production.rb" do |content|
      assert_no_match(/config\.action_cable/, content)
    end
  end

297 298
  def test_application_names_are_not_singularized
    run_generator [File.join(destination_root, "hats")]
299
    assert_file "hats/config/environment.rb", /Rails\.application\.initialize!/
300 301
  end

302 303 304
  def test_gemfile_has_no_whitespace_errors
    run_generator
    absolute = File.expand_path("Gemfile", destination_root)
305
    File.open(absolute, "r") do |f|
306
      f.each_line do |line|
A
Arun Agrawal 已提交
307
        assert_no_match %r{/^[ \t]+$/}, line
308 309 310 311
      end
    end
  end

J
José Valim 已提交
312 313 314
  def test_config_database_is_added_by_default
    run_generator
    assert_file "config/database.yml", /sqlite3/
315
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
316
      assert_gem "activerecord-jdbcsqlite3-adapter"
317 318
    else
      assert_gem "sqlite3"
319
    end
320 321 322 323 324
  end

  def test_config_another_database
    run_generator([destination_root, "-d", "mysql"])
    assert_file "config/database.yml", /mysql/
325
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
326
      assert_gem "activerecord-jdbcmysql-adapter"
327
    else
328
      assert_gem "mysql2", "'>= 0.3.18', '< 0.5'"
329
    end
J
José Valim 已提交
330 331
  end

332 333 334 335 336
  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

337 338 339
  def test_config_postgresql_database
    run_generator([destination_root, "-d", "postgresql"])
    assert_file "config/database.yml", /postgresql/
340
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
341
      assert_gem "activerecord-jdbcpostgresql-adapter"
342
    else
343
      assert_gem "pg", "'~> 0.18'"
344 345 346
    end
  end

347 348
  def test_config_jdbcmysql_database
    run_generator([destination_root, "-d", "jdbcmysql"])
349
    assert_file "config/database.yml", /mysql/
O
Oscar Del Ben 已提交
350
    assert_gem "activerecord-jdbcmysql-adapter"
351 352
  end

353 354
  def test_config_jdbcsqlite3_database
    run_generator([destination_root, "-d", "jdbcsqlite3"])
355
    assert_file "config/database.yml", /sqlite3/
O
Oscar Del Ben 已提交
356
    assert_gem "activerecord-jdbcsqlite3-adapter"
357 358
  end

359 360
  def test_config_jdbcpostgresql_database
    run_generator([destination_root, "-d", "jdbcpostgresql"])
361
    assert_file "config/database.yml", /postgresql/
O
Oscar Del Ben 已提交
362
    assert_gem "activerecord-jdbcpostgresql-adapter"
363 364
  end

A
Arun Agrawal 已提交
365 366 367
  def test_config_jdbc_database
    run_generator([destination_root, "-d", "jdbc"])
    assert_file "config/database.yml", /jdbc/
368
    assert_file "config/database.yml", /mssql/
O
Oscar Del Ben 已提交
369
    assert_gem "activerecord-jdbc-adapter"
A
Arun Agrawal 已提交
370 371
  end

372 373
  if defined?(JRUBY_VERSION)
    def test_config_jdbc_database_when_no_option_given
374
      run_generator
375
      assert_file "config/database.yml", /sqlite3/
O
Oscar Del Ben 已提交
376
      assert_gem "activerecord-jdbcsqlite3-adapter"
377 378 379
    end
  end

380 381 382 383 384 385 386 387 388 389 390
  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)
391
      assert_match(/^  config\.read_encrypted_secrets = true/, content)
392 393 394
    end
  end

S
schneems 已提交
395 396
  def test_generator_defaults_to_puma_version
    run_generator [destination_root]
R
Roberto Miranda 已提交
397
    assert_gem "puma", "'~> 3.7'"
S
schneems 已提交
398 399
  end

S
schneems 已提交
400 401 402 403 404 405 406 407
  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

408
  def test_generator_if_skip_active_record_is_given
409
    run_generator [destination_root, "--skip-active-record"]
410
    assert_no_directory "db/"
J
José Valim 已提交
411
    assert_no_file "config/database.yml"
412
    assert_no_file "app/models/application_record.rb"
413
    assert_file "config/application.rb", /#\s+require\s+["']active_record\/railtie["']/
414
    assert_file "test/test_helper.rb" do |helper_content|
415
      assert_no_match(/fixtures :all/, helper_content)
416
    end
417 418 419 420 421 422
    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 已提交
423 424
  end

425 426 427 428 429 430 431 432 433 434 435 436
  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
437
    assert_no_directory "app/mailers"
438
    assert_no_directory "test/mailers"
439 440
  end

441 442 443
  def test_generator_has_assets_gems
    run_generator

444 445
    assert_gem "sass-rails"
    assert_gem "uglifier"
446 447
  end

448
  def test_generator_if_skip_sprockets_is_given
449
    run_generator [destination_root, "--skip-sprockets"]
450
    assert_no_file "config/initializers/assets.rb"
451
    assert_file "config/application.rb" do |content|
452
      assert_match(/#\s+require\s+["']sprockets\/railtie["']/, content)
453
    end
454 455 456
    assert_file "Gemfile" do |content|
      assert_no_match(/sass-rails/, content)
      assert_no_match(/uglifier/, content)
457
      assert_no_match(/coffee-rails/, content)
458
    end
459 460 461 462 463
    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 已提交
464 465
      assert_no_match(/config\.assets\.js_compressor = :uglifier/, content)
      assert_no_match(/config\.assets\.css_compressor = :sass/, content)
466
    end
467
  end
J
José Valim 已提交
468

469 470 471
  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["']/
472
    assert_no_file "config/cable.yml"
473
    assert_no_file "app/assets/javascripts/cable.js"
474
    assert_no_file "app/channels"
475 476 477 478 479 480 481
    assert_file "Gemfile" do |content|
      assert_no_match(/redis/, content)
    end
  end

  def test_action_cable_redis_gems
    run_generator
482
    assert_file "Gemfile", /^# gem 'redis'/
483 484
  end

485 486 487 488 489 490 491 492 493
  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
494
    run_generator [destination_root, "--skip-system-test"]
495 496 497 498 499 500
    assert_file "Gemfile" do |content|
      assert_no_match(/capybara/, content)
      assert_no_match(/selenium-webdriver/, content)
    end
  end

501
  def test_does_not_generate_system_test_files_if_skip_system_test_is_given
502
    run_generator [destination_root, "--skip-system-test"]
503 504 505 506 507 508 509 510 511

    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

512 513 514 515 516 517 518 519
  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

520
  def test_inclusion_of_javascript_runtime
521
    run_generator
522
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
523
      assert_gem "therubyrhino"
524
    else
S
Sam 已提交
525
      assert_file "Gemfile", /# gem 'mini_racer', platforms: :ruby/
526 527 528
    end
  end

529
  def test_rails_ujs_is_the_default_ujs_library
530 531
    run_generator
    assert_file "app/assets/javascripts/application.js" do |contents|
532
      assert_match %r{^//= require rails-ujs}, contents
533 534 535
    end
  end

536 537
  def test_javascript_is_skipped_if_required
    run_generator [destination_root, "--skip-javascript"]
538 539 540

    assert_no_file "app/assets/javascripts"

541
    assert_file "app/views/layouts/application.html.erb" do |contents|
542 543
      assert_match(/stylesheet_link_tag\s+'application', media: 'all' %>/, contents)
      assert_no_match(/javascript_include_tag\s+'application' \%>/, contents)
544
    end
545

546
    assert_file "Gemfile" do |content|
547
      assert_no_match(/coffee-rails/, content)
548 549 550 551 552
      assert_no_match(/uglifier/, content)
    end

    assert_file "config/environments/production.rb" do |content|
      assert_no_match(/config\.assets\.js_compressor = :uglifier/, content)
553
    end
554
  end
555

S
Sean Griffin 已提交
556 557 558 559 560 561 562 563 564
  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

565 566
  def test_generator_for_yarn
    run_generator([destination_root])
567
    assert_file "package.json", /dependencies/
568
    assert_file "config/initializers/assets.rb", /node_modules/
569 570
  end

571
  def test_generator_for_yarn_skipped
Y
Yuji Yaginuma 已提交
572
    run_generator([destination_root, "--skip-yarn"])
573
    assert_no_file "package.json"
A
Andy Atkinson 已提交
574
    assert_no_file "bin/yarn"
575

Y
Yuji Yaginuma 已提交
576
    assert_file "config/initializers/assets.rb" do |content|
577 578
      assert_no_match(/node_modules/, content)
    end
Y
yuuji.yaginuma 已提交
579 580

    assert_file ".gitignore" do |content|
581 582
      assert_no_match(/node_modules/, content)
      assert_no_match(/yarn-error\.log/, content)
Y
yuuji.yaginuma 已提交
583
    end
584 585
  end

A
Arun Agrawal 已提交
586 587
  def test_inclusion_of_jbuilder
    run_generator
588
    assert_gem "jbuilder"
A
Arun Agrawal 已提交
589 590
  end

591
  def test_inclusion_of_a_debugger
592
    run_generator
593
    if defined?(JRUBY_VERSION) || RUBY_ENGINE == "rbx"
A
Arun Agrawal 已提交
594
      assert_file "Gemfile" do |content|
595
        assert_no_match(/byebug/, content)
A
Arun Agrawal 已提交
596
      end
597
    else
598
      assert_gem "byebug"
A
Arun Agrawal 已提交
599
    end
600 601
  end

602
  def test_inclusion_of_listen_related_configuration_by_default
603
    run_generator
604
    if RbConfig::CONFIG["host_os"] =~ /darwin|linux/
605
      assert_listen_related_configuration
606
    else
607
      assert_no_listen_related_configuration
608 609 610
    end
  end

611
  def test_non_inclusion_of_listen_related_configuration_if_skip_listen
612
    run_generator [destination_root, "--skip-listen"]
613 614 615
    assert_no_listen_related_configuration
  end

616 617
  def test_evented_file_update_checker_config
    run_generator
618 619
    assert_file "config/environments/development.rb" do |content|
      if RbConfig::CONFIG["host_os"] =~ /darwin|linux/
620
        assert_match(/^\s*config\.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
621
      else
622
        assert_match(/^\s*# config\.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
623 624 625 626
      end
    end
  end

627
  def test_template_from_dir_pwd
628
    FileUtils.cd(Rails.root)
629
    assert_match(/It works from file!/, run_generator([destination_root, "-m", "lib/template.rb"]))
630 631
  end

J
José Valim 已提交
632
  def test_usage_read_from_file
633 634 635
    assert_called(File, :read, returns: "USAGE FROM FILE") do
      assert_equal "USAGE FROM FILE", Rails::Generators::AppGenerator.desc
    end
J
José Valim 已提交
636 637 638
  end

  def test_default_usage
639 640 641
    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 已提交
642 643 644
  end

  def test_default_namespace
645
    assert_match "rails:app", Rails::Generators::AppGenerator.namespace
J
José Valim 已提交
646 647
  end

648
  def test_file_is_added_for_backwards_compatibility
649 650
    action :file, "lib/test_file.rb", "heres test data"
    assert_file "lib/test_file.rb", "heres test data"
651 652
  end

653 654
  def test_tests_are_removed_from_frameworks_if_skip_test_is_given
    run_generator [destination_root, "--skip-test"]
655 656 657
    assert_file "config/application.rb", /#\s+require\s+["']rails\/test_unit\/railtie["']/
  end

658 659
  def test_no_active_record_or_tests_if_skips_given
    run_generator [destination_root, "--skip-test", "--skip-active-record"]
660 661
    assert_file "config/application.rb", /#\s+require\s+["']rails\/test_unit\/railtie["']/
    assert_file "config/application.rb", /#\s+require\s+["']active_record\/railtie["']/
662
    assert_file "config/application.rb", /\s+require\s+["']active_job\/railtie["']/
663 664
  end

665 666 667
  def test_pretend_option
    output = run_generator [File.join(destination_root, "myapp"), "--pretend"]
    assert_no_match(/run  bundle install/, output)
668
    assert_no_match(/run  git init/, output)
669 670
  end

671
  def test_application_name_with_spaces
672
    path = File.join(destination_root, "foo bar")
673 674

    # This also applies to MySQL apps but not with SQLite
675
    run_generator [path, "-d", "postgresql"]
676 677 678 679

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

680 681
  def test_web_console
    run_generator
682
    assert_gem "web-console"
683 684
  end

685 686 687 688
  def test_web_console_with_dev_option
    run_generator [destination_root, "--dev"]

    assert_file "Gemfile" do |content|
M
Mehmet Emin İNAÇ 已提交
689
      assert_match(/gem 'web-console',\s+github: 'rails\/web-console'/, content)
690
      assert_no_match(/\Agem 'web-console', '>= 3\.3\.0'\z/, content)
691 692 693 694 695 696 697
    end
  end

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

    assert_file "Gemfile" do |content|
M
Mehmet Emin İNAÇ 已提交
698
      assert_match(/gem 'web-console',\s+github: 'rails\/web-console'/, content)
699
      assert_no_match(/\Agem 'web-console', '>= 3\.3\.0'\z/, content)
700 701 702
    end
  end

703 704 705 706 707 708
  def test_generation_runs_bundle_install
    assert_generates_with_bundler
  end

  def test_dev_option
    assert_generates_with_bundler dev: true
709 710
    rails_path = File.expand_path("../../..", Rails.root)
    assert_file "Gemfile", /^gem\s+["']rails["'],\s+path:\s+["']#{Regexp.escape(rails_path)}["']$/
711 712 713 714
  end

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

718 719
  def test_spring
    run_generator
720
    assert_gem "spring"
721 722 723
  end

  def test_spring_binstubs
724
    jruby_skip "spring doesn't run on JRuby"
725 726 727 728
    command_check = -> command do
      @binstub_called ||= 0

      case command
729
      when "install"
730
        # Called when running bundle, we just want to stub it so nothing to do here.
731
      when "exec spring binstub --all"
732 733 734 735 736 737 738 739
        @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
740 741 742
  end

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

747 748 749
      assert_file "Gemfile" do |content|
        assert_no_match(/spring/, content)
      end
750 751 752 753 754 755
    end
  end

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

756
    assert_no_file "config/spring.rb"
757 758 759 760 761
    assert_file "Gemfile" do |content|
      assert_no_match(/spring/, content)
    end
  end

762 763 764 765 766 767 768 769
  def test_spring_with_dev_option
    run_generator [destination_root, "--dev"]

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

770 771
  def test_generator_if_skip_turbolinks_is_given
    run_generator [destination_root, "--skip-turbolinks"]
772 773 774 775 776 777 778 779 780 781 782 783

    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

784 785 786
  def test_gitignore_when_sqlite3
    run_generator

787
    assert_file ".gitignore" do |content|
788 789 790 791 792
      assert_match(/sqlite3/, content)
    end
  end

  def test_gitignore_when_no_active_record
793
    run_generator [destination_root, "--skip-active-record"]
794

795
    assert_file ".gitignore" do |content|
796
      assert_no_match(/sqlite/i, content)
797 798 799 800 801 802
    end
  end

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

803
    assert_file ".gitignore" do |content|
804
      assert_no_match(/sqlite/i, content)
805 806 807
    end
  end

808 809 810 811 812
  def test_version_control_initializes_git_repo
    run_generator [destination_root]
    assert_directory ".git"
  end

813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
  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

836 837
  def test_psych_gem
    run_generator
838
    gem_regex = /gem 'psych',\s+'~> 2\.0',\s+platforms: :rbx/
839 840 841 842 843 844 845 846 847 848

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

849
  def test_after_bundle_callback
850
    path = "http://example.org/rails_template"
851 852 853
    template = %{ after_bundle { run 'echo ran after_bundle' } }
    template.instance_eval "def read; self; end" # Make the string respond to read

854
    check_open = -> *args do
855
      assert_equal [ path, "Accept" => "application/x-thor-template" ], args
856 857
      template
    end
858

859
    sequence = ["git init", "install", "exec spring binstub --all", "echo ran after_bundle"]
860
    @sequence_step ||= 0
861
    ensure_bundler_first = -> command do
862 863 864 865 866 867 868 869 870 871 872
      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
873

874
    assert_equal 4, @sequence_step
875 876
  end

E
eileencodes 已提交
877 878 879 880 881 882 883 884 885 886 887 888 889 890 891
  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 已提交
892

E
eileencodes 已提交
893 894 895 896
    assert_no_directory("test/system")
  end

  private
897 898 899 900 901
    def stub_rails_application(root)
      Rails.application.config.root = root
      Rails.application.class.stub(:name, "Myapp") do
        yield
      end
902 903
    end

904 905 906
    def action(*args, &block)
      capture(:stdout) { generator.send(*args, &block) }
    end
O
Oscar Del Ben 已提交
907

908 909 910 911 912 913
    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
914
    end
915

916
    def assert_listen_related_configuration
917 918
      assert_gem "listen"
      assert_gem "spring-watcher-listen"
919

920
      assert_file "config/environments/development.rb" do |content|
921
        assert_match(/^\s*config\.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
922
      end
923 924
    end

925
    def assert_no_listen_related_configuration
926
      assert_file "Gemfile" do |content|
927 928 929
        assert_no_match(/listen/, content)
      end

930
      assert_file "config/environments/development.rb" do |content|
931
        assert_match(/^\s*# config\.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
932
      end
933 934
    end

935 936 937 938 939 940 941
    def assert_generates_with_bundler(options = {})
      generator([destination_root], options)

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

        case command
942
        when "install"
943 944
          @install_called += 1
          assert_equal 1, @install_called, "install expected to be called once, but was called #{@install_called} times"
945
        when "exec spring binstub --all"
946 947 948 949 950 951 952
          # Called when running tests with spring, let through unscathed.
        end
      end

      generator.stub :bundle_command, command_check do
        quietly { generator.invoke_all }
      end
953
    end
954
end