app_generator_test.rb 27.4 KB
Newer Older
J
José Valim 已提交
1
require 'generators/generators_test_helper'
2
require 'rails/generators/rails/app/app_generator'
3
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 45
  test/integration
  vendor
J
José Valim 已提交
46
  vendor/assets
A
Arun Agrawal 已提交
47 48
  vendor/assets/stylesheets
  vendor/assets/javascripts
49
  tmp
50
  tmp/cache
J
José Valim 已提交
51
  tmp/cache/assets
52 53
)

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

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

61 62
  def default_files
    ::DEFAULT_APP_FILES
63 64
  end

65
  def test_assets
66
    run_generator
67

68 69
    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'/)
70
    assert_file("app/assets/stylesheets/application.css")
A
Arun Agrawal 已提交
71
    assert_file("app/assets/javascripts/application.js")
72 73
  end

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

79
  def test_invalid_application_name_raises_an_error
80
    content = capture(:stderr){ run_generator [File.join(destination_root, "43-things")] }
81 82 83 84
    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
85
    run_generator [File.join(destination_root, "things-43")]
86
    assert_file "things-43/config/environment.rb", /Rails\.application\.initialize!/
87
    assert_file "things-43/config/application.rb", /^module Things43$/
88 89
  end

90
  def test_application_new_exits_with_non_zero_code_on_invalid_application_name
A
Akira Matsuda 已提交
91
    quietly { system 'rails new test --no-rc' }
92
    assert_equal false, $?.success?
93 94 95 96 97 98 99 100 101 102 103
  end

  def test_application_new_exits_with_message_and_non_zero_code_when_generating_inside_existing_rails_directory
    app_root = File.join(destination_root, 'myfirstapp')
    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?
104 105
  end

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

116 117 118 119 120 121
  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]

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

126 127
        # make sure we are in correct dir
        FileUtils.cd(app_moved_root)
128

129
        generator = Rails::Generators::AppGenerator.new ["rails"], [],
130 131 132 133 134 135 136
                                                                   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!/
        assert_file "myapp_moved/config/initializers/session_store.rb", /_myapp_session/
      end
    end
137
  end
138

139 140 141
  def test_rails_update_generates_correct_session_key
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]
142

143
    stub_rails_application(app_root) do
144
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
145 146 147 148
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file "myapp/config/initializers/session_store.rb", /_myapp_session/
    end
149
  end
150

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

157 158 159 160 161 162
  def test_new_application_not_include_api_initializers
    run_generator

    assert_no_file 'config/initializers/cors.rb'
  end

163 164 165 166
  def test_rails_update_keep_the_cookie_serializer_if_it_is_already_configured
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

167
    stub_rails_application(app_root) do
168
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
169 170 171 172
      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
173 174
  end

175 176 177 178 179 180
  def test_rails_update_does_not_create_callback_terminator_initializer
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

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

181
    stub_rails_application(app_root) do
182
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
183 184 185 186
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_no_file "#{app_root}/config/initializers/callback_terminator.rb"
    end
187 188 189 190 191 192 193 194
  end

  def test_rails_update_does_not_remove_callback_terminator_initializer_if_already_present
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

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

195
    stub_rails_application(app_root) do
196
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
197 198 199 200
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file "#{app_root}/config/initializers/callback_terminator.rb"
    end
201 202
  end

203
  def test_rails_update_set_the_cookie_serializer_to_marshal_if_it_is_not_already_configured
204 205 206 207 208
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

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

209
    stub_rails_application(app_root) do
210
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
211 212
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
213 214
      assert_file("#{app_root}/config/initializers/cookies_serializer.rb",
                  /Valid options are :json, :marshal, and :hybrid\.\nRails\.application\.config\.action_dispatch\.cookies_serializer = :marshal/)
215
    end
216 217
  end

218 219 220 221 222 223 224 225 226 227 228 229 230 231
  def test_rails_update_dont_set_file_watcher
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

    stub_rails_application(app_root) do
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file "#{app_root}/config/environments/development.rb" do |content|
        assert_match(/# config.file_watcher/, content)
      end
    end
  end

232 233 234 235 236 237
  def test_rails_update_does_not_create_active_record_belongs_to_required_by_default
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

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

238
    stub_rails_application(app_root) do
239
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
240 241 242 243
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_no_file "#{app_root}/config/initializers/active_record_belongs_to_required_by_default.rb"
    end
244 245 246 247 248 249 250 251
  end

  def test_rails_update_does_not_remove_active_record_belongs_to_required_by_default_if_already_present
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

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

252
    stub_rails_application(app_root) do
253
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
254 255 256 257
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file "#{app_root}/config/initializers/active_record_belongs_to_required_by_default.rb"
    end
258 259
  end

260 261 262 263 264 265 266
  def test_rails_update_does_not_create_ssl_options_by_default
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

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

    stub_rails_application(app_root) do
267
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
268 269 270 271 272 273 274 275 276 277 278 279 280
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_no_file "#{app_root}/config/initializers/ssl_options.rb"
    end
  end

  def test_rails_update_does_not_remove_ssl_options_if_already_present
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

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

    stub_rails_application(app_root) do
281
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
282 283 284 285 286 287
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file "#{app_root}/config/initializers/ssl_options.rb"
    end
  end

288 289 290 291 292
  def test_rails_update_does_not_create_rack_cors
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

    stub_rails_application(app_root) do
293
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
294 295 296 297 298 299 300 301 302 303 304 305 306
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_no_file "#{app_root}/config/initializers/cors.rb"
    end
  end

  def test_rails_update_does_not_remove_rack_cors_if_already_present
    app_root = File.join(destination_root, 'myapp')
    run_generator [app_root]

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

    stub_rails_application(app_root) do
307
      generator = Rails::Generators::AppGenerator.new ["rails"], [], destination_root: app_root, shell: @shell
308 309 310 311 312 313
      generator.send(:app_const)
      quietly { generator.send(:update_config_files) }
      assert_file "#{app_root}/config/initializers/cors.rb"
    end
  end

314 315
  def test_application_names_are_not_singularized
    run_generator [File.join(destination_root, "hats")]
316
    assert_file "hats/config/environment.rb", /Rails\.application\.initialize!/
317 318
  end

319 320 321 322 323
  def test_gemfile_has_no_whitespace_errors
    run_generator
    absolute = File.expand_path("Gemfile", destination_root)
    File.open(absolute, 'r') do |f|
      f.each_line do |line|
A
Arun Agrawal 已提交
324
        assert_no_match %r{/^[ \t]+$/}, line
325 326 327 328
      end
    end
  end

J
José Valim 已提交
329 330 331
  def test_config_database_is_added_by_default
    run_generator
    assert_file "config/database.yml", /sqlite3/
332
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
333
      assert_gem "activerecord-jdbcsqlite3-adapter"
334 335
    else
      assert_gem "sqlite3"
336
    end
337 338 339 340 341
  end

  def test_config_another_database
    run_generator([destination_root, "-d", "mysql"])
    assert_file "config/database.yml", /mysql/
342
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
343
      assert_gem "activerecord-jdbcmysql-adapter"
344
    else
345
      assert_gem "mysql2", "'>= 0.3.18', '< 0.5'"
346
    end
J
José Valim 已提交
347 348
  end

349 350 351 352 353
  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

354 355 356
  def test_config_postgresql_database
    run_generator([destination_root, "-d", "postgresql"])
    assert_file "config/database.yml", /postgresql/
357
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
358
      assert_gem "activerecord-jdbcpostgresql-adapter"
359
    else
360
      assert_gem "pg", "'~> 0.18'"
361 362 363
    end
  end

364 365
  def test_config_jdbcmysql_database
    run_generator([destination_root, "-d", "jdbcmysql"])
366
    assert_file "config/database.yml", /mysql/
O
Oscar Del Ben 已提交
367
    assert_gem "activerecord-jdbcmysql-adapter"
368 369
  end

370 371
  def test_config_jdbcsqlite3_database
    run_generator([destination_root, "-d", "jdbcsqlite3"])
372
    assert_file "config/database.yml", /sqlite3/
O
Oscar Del Ben 已提交
373
    assert_gem "activerecord-jdbcsqlite3-adapter"
374 375
  end

376 377
  def test_config_jdbcpostgresql_database
    run_generator([destination_root, "-d", "jdbcpostgresql"])
378
    assert_file "config/database.yml", /postgresql/
O
Oscar Del Ben 已提交
379
    assert_gem "activerecord-jdbcpostgresql-adapter"
380 381
  end

A
Arun Agrawal 已提交
382 383 384
  def test_config_jdbc_database
    run_generator([destination_root, "-d", "jdbc"])
    assert_file "config/database.yml", /jdbc/
385
    assert_file "config/database.yml", /mssql/
O
Oscar Del Ben 已提交
386
    assert_gem "activerecord-jdbc-adapter"
A
Arun Agrawal 已提交
387 388
  end

389 390
  if defined?(JRUBY_VERSION)
    def test_config_jdbc_database_when_no_option_given
391
      run_generator
392
      assert_file "config/database.yml", /sqlite3/
O
Oscar Del Ben 已提交
393
      assert_gem "activerecord-jdbcsqlite3-adapter"
394 395 396
    end
  end

397 398 399 400 401 402 403 404 405 406 407 408 409 410
  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)
    end
  end

S
schneems 已提交
411 412 413 414 415
  def test_generator_defaults_to_puma_version
    run_generator [destination_root]
    assert_gem "puma", "'~> 3.0'"
  end

S
schneems 已提交
416 417 418 419 420 421 422 423
  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

424
  def test_generator_if_skip_active_record_is_given
425
    run_generator [destination_root, "--skip-active-record"]
J
José Valim 已提交
426
    assert_no_file "config/database.yml"
427
    assert_no_file "config/initializers/active_record_belongs_to_required_by_default.rb"
428
    assert_no_file "app/models/application_record.rb"
429
    assert_file "config/application.rb", /#\s+require\s+["']active_record\/railtie["']/
430
    assert_file "test/test_helper.rb" do |helper_content|
431
      assert_no_match(/fixtures :all/, helper_content)
432
    end
J
José Valim 已提交
433 434
  end

435 436 437 438 439 440 441 442 443 444 445 446 447 448
  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
  end

449 450 451 452 453 454 455
  def test_generator_has_assets_gems
    run_generator

    assert_gem 'sass-rails'
    assert_gem 'uglifier'
  end

456
  def test_generator_if_skip_sprockets_is_given
457
    run_generator [destination_root, "--skip-sprockets"]
458
    assert_no_file "config/initializers/assets.rb"
459
    assert_file "config/application.rb" do |content|
460
      assert_match(/#\s+require\s+["']sprockets\/railtie["']/, content)
461
    end
462
    assert_file "Gemfile" do |content|
463
      assert_no_match(/jquery-rails/, content)
464 465
      assert_no_match(/sass-rails/, content)
      assert_no_match(/uglifier/, content)
466
      assert_no_match(/coffee-rails/, content)
467
    end
468 469 470 471 472
    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 已提交
473 474
      assert_no_match(/config\.assets\.js_compressor = :uglifier/, content)
      assert_no_match(/config\.assets\.css_compressor = :sass/, content)
475
    end
476
  end
J
José Valim 已提交
477

478 479 480
  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["']/
481
    assert_no_file "config/cable.yml"
482
    assert_no_file "app/assets/javascripts/cable.js"
483
    assert_no_file "app/channels"
484 485 486 487 488 489 490
    assert_file "Gemfile" do |content|
      assert_no_match(/redis/, content)
    end
  end

  def test_action_cable_redis_gems
    run_generator
491
    assert_file "Gemfile", /^# gem 'redis'/
492 493
  end

494
  def test_inclusion_of_javascript_runtime
495
    run_generator
496
    if defined?(JRUBY_VERSION)
O
Oscar Del Ben 已提交
497
      assert_gem "therubyrhino"
498
    else
499
      assert_file "Gemfile", /# gem 'therubyracer', platforms: :ruby/
500 501 502
    end
  end

503 504 505 506 507 508
  def test_jquery_is_the_default_javascript_library
    run_generator
    assert_file "app/assets/javascripts/application.js" do |contents|
      assert_match %r{^//= require jquery}, contents
      assert_match %r{^//= require jquery_ujs}, contents
    end
A
Arun Agrawal 已提交
509
    assert_gem "jquery-rails"
510 511 512 513 514 515 516 517
  end

  def test_other_javascript_libraries
    run_generator [destination_root, '-j', 'prototype']
    assert_file "app/assets/javascripts/application.js" do |contents|
      assert_match %r{^//= require prototype}, contents
      assert_match %r{^//= require prototype_ujs}, contents
    end
O
Oscar Del Ben 已提交
518
    assert_gem "prototype-rails"
J
José Valim 已提交
519
  end
520

521 522
  def test_javascript_is_skipped_if_required
    run_generator [destination_root, "--skip-javascript"]
523 524 525 526

    assert_no_file "app/assets/javascripts"
    assert_no_file "vendor/assets/javascripts"

527
    assert_file "app/views/layouts/application.html.erb" do |contents|
528 529
      assert_match(/stylesheet_link_tag\s+'application', media: 'all' %>/, contents)
      assert_no_match(/javascript_include_tag\s+'application' \%>/, contents)
530
    end
531

532
    assert_file "Gemfile" do |content|
533
      assert_no_match(/coffee-rails/, content)
A
Arun Agrawal 已提交
534
      assert_no_match(/jquery-rails/, content)
535
    end
536
  end
537

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 556
    run_generator
    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 564 565 566 567
  def test_non_inclusion_of_listen_related_configuration_if_skip_listen
    run_generator [destination_root, '--skip-listen']
    assert_no_listen_related_configuration
  end

568 569 570 571 572 573 574 575 576 577 578
  def test_evented_file_update_checker_config
    run_generator
    assert_file 'config/environments/development.rb' do |content|
      if RbConfig::CONFIG['host_os'] =~ /darwin|linux/
        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 601 602 603 604
  def test_file_is_added_for_backwards_compatibility
    action :file, 'lib/test_file.rb', 'heres test data'
    assert_file 'lib/test_file.rb', 'heres test data'
  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
  def test_new_hash_style
618
    run_generator
619
    assert_file "config/initializers/session_store.rb" do |file|
620
      assert_match(/config.session_store :cookie_store, key: '_.+_session'/, file)
621 622 623
    end
  end

624 625 626 627 628
  def test_pretend_option
    output = run_generator [File.join(destination_root, "myapp"), "--pretend"]
    assert_no_match(/run  bundle install/, output)
  end

629
  def test_application_name_with_spaces
630
    path = File.join(destination_root, "foo bar")
631 632 633 634 635 636 637 638

    # This also applies to MySQL apps but not with SQLite
    run_generator [path, "-d", 'postgresql']

    assert_file "foo bar/config/database.yml", /database: foo_bar_development/
    assert_file "foo bar/config/initializers/session_store.rb", /key: '_foo_bar/
  end

639 640 641 642 643
  def test_web_console
    run_generator
    assert_gem 'web-console'
  end

644 645 646 647
  def test_web_console_with_dev_option
    run_generator [destination_root, "--dev"]

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

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

    assert_file "Gemfile" do |content|
M
Mehmet Emin İNAÇ 已提交
657
      assert_match(/gem 'web-console',\s+github: 'rails\/web-console'/, content)
G
Genadi Samokovarov 已提交
658
      assert_no_match(/\Agem 'web-console'\z/, content)
659 660 661
    end
  end

662 663
  def test_spring
    run_generator
664
    assert_gem 'spring'
665 666 667
  end

  def test_spring_binstubs
668
    jruby_skip "spring doesn't run on JRuby"
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
    command_check = -> command do
      @binstub_called ||= 0

      case command
      when 'install'
        # Called when running bundle, we just want to stub it so nothing to do here.
      when 'exec spring binstub --all'
        @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
684 685 686
  end

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

691 692 693
      assert_file "Gemfile" do |content|
        assert_no_match(/spring/, content)
      end
694 695 696 697 698 699
    end
  end

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

700
    assert_no_file 'config/spring.rb'
701 702 703 704 705
    assert_file "Gemfile" do |content|
      assert_no_match(/spring/, content)
    end
  end

706 707 708 709 710 711 712 713
  def test_spring_with_dev_option
    run_generator [destination_root, "--dev"]

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

714 715
  def test_generator_if_skip_turbolinks_is_given
    run_generator [destination_root, "--skip-turbolinks"]
716 717 718 719 720 721 722 723 724 725 726 727

    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

728 729 730 731 732 733 734 735 736 737 738 739
  def test_gitignore_when_sqlite3
    run_generator

    assert_file '.gitignore' do |content|
      assert_match(/sqlite3/, content)
    end
  end

  def test_gitignore_when_no_active_record
    run_generator [destination_root, '--skip-active-record']

    assert_file '.gitignore' do |content|
740
      assert_no_match(/sqlite/i, content)
741 742 743 744 745 746 747
    end
  end

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

    assert_file '.gitignore' do |content|
748
      assert_no_match(/sqlite/i, content)
749 750 751
    end
  end

752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
  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
      vendor/assets/stylesheets
    )
    folders_with_keep.each do |folder|
      assert_file("#{folder}/.keep")
    end
  end

776 777
  def test_psych_gem
    run_generator
778
    gem_regex = /gem 'psych',\s+'~> 2.0',\s+platforms: :rbx/
779 780 781 782 783 784 785 786 787 788

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

789 790 791 792 793
  def test_after_bundle_callback
    path = 'http://example.org/rails_template'
    template = %{ after_bundle { run 'echo ran after_bundle' } }
    template.instance_eval "def read; self; end" # Make the string respond to read

794 795 796 797
    check_open = -> *args do
      assert_equal [ path, 'Accept' => 'application/x-thor-template' ], args
      template
    end
798

799 800
    sequence = ['install', 'exec spring binstub --all', 'echo ran after_bundle']
      @sequence_step ||= 0
801
    ensure_bundler_first = -> command do
802 803 804 805 806 807 808 809 810 811 812
      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
813 814

    assert_equal 3, @sequence_step
815 816
  end

817
  protected
J
José Valim 已提交
818

819 820 821 822 823 824 825
  def stub_rails_application(root)
    Rails.application.config.root = root
    Rails.application.class.stub(:name, "Myapp") do
      yield
    end
  end

826
  def action(*args, &block)
827
    capture(:stdout) { generator.send(*args, &block) }
828
  end
O
Oscar Del Ben 已提交
829

830 831 832 833 834 835
  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
O
Oscar Del Ben 已提交
836
  end
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855

  def assert_listen_related_configuration
    assert_gem 'listen'
    assert_gem 'spring-watcher-listen'

    assert_file 'config/environments/development.rb' do |content|
      assert_match(/^\s*config.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
    end
  end

  def assert_no_listen_related_configuration
    assert_file 'Gemfile' do |content|
      assert_no_match(/listen/, content)
    end

    assert_file 'config/environments/development.rb' do |content|
      assert_match(/^\s*# config.file_watcher = ActiveSupport::EventedFileUpdateChecker/, content)
    end
  end
856
end