aboutsummaryrefslogblamecommitdiffstats
path: root/railties/test/application/rake/dev_test.rb
blob: b25593ee1ca169e335b7db9b9c8f2c436e2bce76 (plain) (tree)
1
2
3

                             
                                 













                                               
                                                          
                              
                                    
                                                   



                                                                      
                                                          


                                                           
                                                       


                                                                            
 
                                                 
                              
                           






                                                    

           


       
# frozen_string_literal: true

require "isolation/abstract_unit"

module ApplicationTests
  module RakeTests
    class RakeDevTest < ActiveSupport::TestCase
      include ActiveSupport::Testing::Isolation

      def setup
        build_app
      end

      def teardown
        teardown_app
      end

      test "dev:cache creates file and outputs message" do
        Dir.chdir(app_path) do
          output = `rails dev:cache`
          assert File.exist?("tmp/caching-dev.txt")
          assert_match(/Development mode is now being cached/, output)
        end
      end

      test "dev:cache deletes file and outputs message" do
        Dir.chdir(app_path) do
          `rails dev:cache` # Create caching file.
          output = `rails dev:cache` # Delete caching file.
          assert_not File.exist?("tmp/caching-dev.txt")
          assert_match(/Development mode is no longer being cached/, output)
        end
      end

      test "dev:cache touches tmp/restart.txt" do
        Dir.chdir(app_path) do
          `rails dev:cache`
          assert File.exist?("tmp/restart.txt")

          prev_mtime = File.mtime("tmp/restart.txt")
          sleep(1)
          `rails dev:cache`
          curr_mtime = File.mtime("tmp/restart.txt")
          assert_not_equal prev_mtime, curr_mtime
        end
      end
    end
  end
end